1 #ifndef RS_MAINWINDOWINTERFACE_H
2 #define RS_MAINWINDOWINTERFACE_H
8 * Interface for main application windows.
10 class RS_MainWindowInterface
13 RS_MainWindowInterface() {}
14 virtual ~RS_MainWindowInterface() {}
16 virtual RS_GraphicView * getGraphicView() = 0;
17 virtual RS_Document * getDocument() = 0;
19 virtual void createNewDocument(const QString & fileName = QString::null, RS_Document * doc = NULL) = 0;
20 virtual void showSimulationControls() = 0;