X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FXGUI%2FXGUI_Workshop.h;h=b492fa1134d3bf225c9ef7dd0b4a19d7feb88f15;hb=6a7b7e89852489a242ed25f5808d9306b00cc7d9;hp=c35db675bea7811d3e401c589b12d92e52e2b25c;hpb=3d7368386762b057fff327d24d0079b4a73c3004;p=modules%2Fshaper.git diff --git a/src/XGUI/XGUI_Workshop.h b/src/XGUI/XGUI_Workshop.h index c35db675b..b492fa113 100644 --- a/src/XGUI/XGUI_Workshop.h +++ b/src/XGUI/XGUI_Workshop.h @@ -10,6 +10,8 @@ #include #include +#include + #include #include #include @@ -41,6 +43,7 @@ class Config_PointerMessage; class QWidget; class QDockWidget; +class QMainWindow; class ModelAPI_ObjectUpdatedMessage; class ModelAPI_ObjectDeletedMessage; @@ -55,7 +58,9 @@ class XGUI_EXPORT XGUI_Workshop : public QObject, public Events_Listener { Q_OBJECT public: - + /// Constructor + /// \param theConnector a Salome connector object. + /// Used only if the workshop is launched in Salome environment XGUI_Workshop(XGUI_SalomeConnector* theConnector = 0); virtual ~XGUI_Workshop(); @@ -131,8 +136,10 @@ Q_OBJECT return myObjectBrowser; } + /// This method is called by Salome module when selection is changed void salomeViewerSelectionChanged(); + /// Returns viewer which unifies access as to Salome viewer as to standalone viewer XGUI_ViewerProxy* viewer() const { return myViewerProxy; @@ -145,6 +152,10 @@ Q_OBJECT return myModuleConnector; } + /// Returns a desktop + /// \return a desktop instance + QMainWindow* desktop() const; + //! Returns icon name according to feature static QIcon featureIcon(const FeaturePtr& theFeature); @@ -161,8 +172,12 @@ Q_OBJECT //! Show the given features in 3d Viewer void showOnlyObjects(const QObjectPtrList& theList); + /// Set display mode for the given onjects + /// \param theList a list of displayed objects + /// \param theMode a mode to set (see \ref XGUI_Displayer) void setDisplayMode(const QObjectPtrList& theList, int theMode); + /// Returns current module ModuleBase_IModule* module() const { return myModule; @@ -181,7 +196,7 @@ Q_OBJECT */ void saveDocument(const QString& theName, std::list& theFileNames); - /* + /** * If there is an active (uncommited) operation shows a prompt to abort it * and performs abortion if user agreed. Returns true if * - operation aborted successfully @@ -190,57 +205,121 @@ Q_OBJECT bool isActiveOperationAborted(); signals: + /// Emitted when selection happens in Salome viewer void salomeViewerSelection(); + + /// Emitted when error in applivation happens void errorOccurred(const QString&); + //! the signal about the workshop actions states are updated. + void commandStatusUpdated(); + + //! the application is started + void applicationStarted(); + + void updateUndoHistory(const QList&); + void updateRedoHistory(const QList&); + public slots: + /// Update of commands status void updateCommandStatus(); + /// update history list (undo/redo commands) + void updateHistory(); + + /// Create a new dokument void onNew(); + + /// Open document from file void onOpen(); + + /// Save current document bool onSave(); + + /// Save current document to a file selected by user bool onSaveAs(); + + /// Exit application void onExit(); - void onUndo(); - void onRedo(); + + /// Undo last command + void onUndo(int times = 1); + + /// Redo previous command + void onRedo(int times = 1); + + /// Rebuild data tree void onRebuild(); + + /// Open preferences dialog box void onPreferences(); + /// Show property panel void showPropertyPanel(); + + /// Hide property panel void hidePropertyPanel(); + + /// Show object Browser void showObjectBrowser(); + + /// Hide object Browser void hideObjectBrowser(); + /// Reaction on command call void onFeatureTriggered(); + + /// Change active document + /// \param theObj a part object. If it is NULL then active document is a main document void changeCurrentDocument(ObjectPtr theObj); - void activateLastPart(); + //void activateLastPart(); + /// Close document void closeDocument(); protected: - // Find the nested features and set them into the operation - // \param theOperation an operation + /// Find the nested features and set them into the operation + /// \param theOperation an operation void setNestedFeatures(ModuleBase_Operation* theOperation); - // Update the property panel content by the XML description of the operation and set the panel - // into the operation - // \param theOperation an operation + + /// Update the property panel content by the XML description of the operation and set the panel + /// into the operation + /// \param theOperation an operation void setPropertyPanel(ModuleBase_Operation* theOperation); + /// Procedure to process postponed events bool event(QEvent * theEvent); + //Event-loop processing methods: + + /// Process event "Add a feature" void addFeature(const std::shared_ptr&); + + /// Connect to operation signals + /// \param theOperation an operation void connectWithOperation(ModuleBase_Operation* theOperation); - void onFeatureUpdatedMsg(const std::shared_ptr& theMsg); - void onFeatureCreatedMsg(const std::shared_ptr& theMsg); - void onFeatureRedisplayMsg(const std::shared_ptr& theMsg); - void onObjectDeletedMsg(const std::shared_ptr& theMsg); + /// Process feature update message + void onFeatureUpdatedMsg(const std::shared_ptr& ); + + ///Process feature created message + void onFeatureCreatedMsg(const std::shared_ptr& ); - void validateOperation(const QString& theOperationId); + /// Process feature redisplay message + void onFeatureRedisplayMsg(const std::shared_ptr& ); + /// Process feature delete message + void onObjectDeletedMsg(const std::shared_ptr& ); + + /// Display all results void displayAllResults(); + + /// Displau results from document + /// \param theDoc a document void displayDocumentResults(DocumentPtr theDoc); + + /// Display results from a group void displayGroupResults(DocumentPtr theDoc, std::string theGroup); private slots: @@ -267,26 +346,50 @@ signals: /// \param theOpertion an aborted operation void onOperationAborted(ModuleBase_Operation* theOperation); + /// Slot, which reacts to the context popup menu call + /// \param theId the data value of the clicked action + /// \param isChecked a state of toggle if the action is checkable void onContextMenuCommand(const QString& theId, bool isChecked); - void onWidgetValuesChanged(); - + /// Set waiting cursor void onStartWaiting(); private: + /// Init menu void initMenu(); + /// Register validators void registerValidators() const; + /// Load module from external library + /// \param theModule name of the module ModuleBase_IModule* loadModule(const QString& theModule); + + /// Activate module bool activateModule(); + /// Create object browser widget + /// \param theParent a parent of widget QDockWidget* createObjectBrowser(QWidget* theParent); + + /// Create property panel widget + /// \param theParent a parent of widget QDockWidget* createPropertyPanel(QWidget* theParent); // Creates Dock widgets: Object browser and Property panel void createDockWidgets(); + /// Displaus object and fit all viewer if the object is first (update viewer will not be called) + void displayObject(ObjectPtr theObj); + + //! Extends undo/redo toolbutton's with history menu + //! \param theObject - in the OpenParts it is a QToolButton by itself, + //! in salome mode - QAction that creates a button. + //! \param theSignal - void "updateUndoHistory" or "updateRedoHistory" SIGNAL; + //! \param theSlot - onUndo(int) or onRedo(int) SLOT + void addHistoryMenu(QObject* theObject, const char* theSignal, const char* theSlot); + +private: AppElements_MainWindow* myMainWindow; ModuleBase_IModule* myModule; XGUI_ObjectsBrowser* myObjectBrowser;