X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FXGUI%2FXGUI_ModuleConnector.h;h=4b2ed19f4b8cd6bb2100a6628e2a4108ce1d904f;hb=1cef78af4c4328ecf99a3ced86bda38e6e82e15c;hp=4a2be1a4842773b22c4bc11dbd9861e9007833ab;hpb=39542b37664439ffc0bd754c74a72853997102f6;p=modules%2Fshaper.git diff --git a/src/XGUI/XGUI_ModuleConnector.h b/src/XGUI/XGUI_ModuleConnector.h index 4a2be1a48..4b2ed19f4 100644 --- a/src/XGUI/XGUI_ModuleConnector.h +++ b/src/XGUI/XGUI_ModuleConnector.h @@ -17,7 +17,7 @@ class XGUI_Displayer; /** * \ingroup GUI - * Implementation of IWorkshop interface which provides access to Workshop sevices at module level + * Implementation of IWorkshop interface which provides access to Workshop services at module level */ class XGUI_EXPORT XGUI_ModuleConnector : public ModuleBase_IWorkshop { @@ -63,15 +63,15 @@ Q_OBJECT virtual ModuleBase_Operation* findStartedOperation(const QString& theId); //! Returns true if the operation with id theId can be stopped. The operation manager is called. - //! \param theId a stopped operation + //! \param theOperation a stopped operation //! \return boolean result virtual bool canStopOperation(ModuleBase_Operation* theOperation); //! Aborts the operation. The operation manager is called. - //! \param theId an aborted operation + //! \param theOperation an aborted operation void abortOperation(ModuleBase_Operation* theOperation); - //! Returns AIS opbject by data object + //! Returns AIS object by data object virtual AISObjectPtr findPresentation(const ObjectPtr& theObject) const; //! Returns data object by AIS @@ -81,6 +81,9 @@ Q_OBJECT //! If the list is empty then selection will be cleared virtual void setSelected(const QList& theValues); + /// Update of commands status + virtual void updateCommandStatus(); + //! Returns workshop XGUI_Workshop* workshop() const { return myWorkshop; }