// So, displayer will be created on demand.
mySelector = new XGUI_SelectionMgr(this);
+ connect(mySelector, SIGNAL(selectionChanged()), this, SLOT(changeCurrentDocument()));
myOperationMgr = new XGUI_OperationMgr(this);
myActionsMgr = new XGUI_ActionsMgr(this);
+ myErrorDlg = new XGUI_ErrorDialog(myMainWindow);
+
connect(myOperationMgr, SIGNAL(operationStarted()), this, SLOT(onOperationStarted()));
connect(myOperationMgr, SIGNAL(operationStopped(ModuleBase_Operation*)),
this, SLOT(onOperationStopped(ModuleBase_Operation*)));
void hideObjectBrowser();
void onFeatureTriggered();
-
+ void changeCurrentDocument();
+signals:
+ void errorOccurred(const QString&);
+
protected:
//Event-loop processing methods:
void addFeature(const Config_FeatureMessage*);