X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FXGUI%2FXGUI_Workshop.h;h=aa7dfaa767f57d920f379fc750e61220ea033661;hb=45fcac308a927f173b4cf7a5c705776be26c687f;hp=3f5d8f2c1f10fb7afe73e430aa7bca542bc4b590;hpb=f47443b7e0c6583cd401e00e3ec3f0990010c2fe;p=modules%2Fshaper.git diff --git a/src/XGUI/XGUI_Workshop.h b/src/XGUI/XGUI_Workshop.h index 3f5d8f2c1..aa7dfaa76 100644 --- a/src/XGUI/XGUI_Workshop.h +++ b/src/XGUI/XGUI_Workshop.h @@ -5,7 +5,6 @@ #include "XGUI.h" //#include "XGUI_Constants.h" -#include #include #include #include @@ -21,40 +20,36 @@ class AppElements_MainWindow; class AppElements_Command; class AppElements_Workbench; -class XGUI_SelectionMgr; +class XGUI_ActionsMgr; +class XGUI_ContextMenuMgr; class XGUI_Displayer; +class XGUI_ErrorDialog; +class XGUI_ErrorMgr; +class XGUI_ModuleConnector; +class XGUI_ObjectsBrowser; class XGUI_OperationMgr; +class XGUI_PropertyPanel; class XGUI_SalomeConnector; -class XGUI_ObjectsBrowser; -class XGUI_ActionsMgr; -class XGUI_ErrorDialog; class XGUI_SalomeViewer; +class XGUI_SelectionMgr; class XGUI_ViewerProxy; -class XGUI_PropertyPanel; -class XGUI_ContextMenuMgr; -class XGUI_ModuleConnector; +class XGUI_WorkshopListener; -class ModuleBase_Operation; class ModuleBase_IModule; class ModuleBase_IViewer; - -class Config_FeatureMessage; -class Config_PointerMessage; +class ModuleBase_Operation; class QWidget; class QDockWidget; class QMainWindow; -class ModelAPI_ObjectUpdatedMessage; -class ModelAPI_ObjectDeletedMessage; -class ModelAPI_ResultPart; class QAction; /**\class XGUI_Workshop * \ingroup GUI * \brief Class which defines a configuration of the application (Workshop) and launches it. */ -class XGUI_EXPORT XGUI_Workshop : public QObject, public Events_Listener +class XGUI_EXPORT XGUI_Workshop : public QObject { Q_OBJECT public: @@ -67,6 +62,12 @@ Q_OBJECT //! Starting of the application void startApplication(); + // Activates the module controls. Should be called after module creation + void activateModule(); + + // Deactivates the module controls. Should be called after module creation + void deactivateModule(); + //! Returns main window (Desktop) of the application AppElements_MainWindow* mainWindow() const { @@ -112,9 +113,6 @@ Q_OBJECT //! Creates and adds a new workbench (menu group) with the given name and returns it AppElements_Workbench* addWorkbench(const QString& theName); - //! Redefinition of Events_Listener method - virtual void processEvent(const std::shared_ptr& theMessage); - //! Returns an object which provides interface to Salome Module (LightApp_Module) XGUI_SalomeConnector* salomeConnector() const { @@ -156,15 +154,24 @@ Q_OBJECT /// \return a desktop instance QMainWindow* desktop() const; - //! Returns icon name according to feature - static QIcon featureIcon(const FeaturePtr& theFeature); + //! Delete features + void deleteObjects(); - //! Activates or deactivates a part - //! If PartPtr is Null pointer then PartSet will be activated - void activatePart(std::shared_ptr theFeature); + //! Returns true if the selected feature can be moved to the position after the current feature + //! \return boolean value + bool canMoveFeature(); - //! Delete features - void deleteObjects(const QObjectPtrList& theList); + //! Move selected features to be after the current feature + void moveObjects(); + + //! Returns true if there is at least one selected body/construction/group result + //! \return boolean value + bool canChangeColor() const; + + //! Change color of the features if it is possible + //! The operation is available for construction, body and group results + //! theObjects a list of selected objects + void changeColor(const QObjectPtrList& theObjects); //! Show the given features in 3d Viewer void showObjects(const QObjectPtrList& theList, bool isVisible); @@ -204,6 +211,25 @@ Q_OBJECT */ bool isActiveOperationAborted(); + //! Delete features. Delete the referenced features. There can be a question with a list of referenced + //! objects. + //! \param theList an objects to be deleted + //! \param theIgnoredFeatures a list of features to be ignored during delete + //! \param theParent a parent widget for the question message box + //! \param theAskAboutDeleteReferences if true, the message box with a list of references to the + //! objects features appear. If the user chose do not continue, the deletion is not performed + //! \return the success of the delete + bool deleteFeatures(const QObjectPtrList& theList, + const std::set& theIgnoredFeatures = std::set(), + QWidget* theParent = 0, + const bool theAskAboutDeleteReferences = false); + + /// Deactivates the object, if it is active and the module returns that the activation + /// of selection for the object is not possible currently(the current operation uses it) + /// \param theObject an object + /// \param theUpdateViewer a boolean flag to update viewer immediately + void deactivateActiveObject(const ObjectPtr& theObject, const bool theUpdateViewer); + signals: /// Emitted when selection happens in Salome viewer void salomeViewerSelection(); @@ -219,6 +245,7 @@ signals: //! Signal to update Undo history list void updateUndoHistory(const QList&); + //! Signal to update Redo history list void updateRedoHistory(const QList&); @@ -226,6 +253,10 @@ signals: /// Update of commands status void updateCommandStatus(); + // Update enable state of accept all button. It is enabled if the the parent operation is + // valid and there are modifications in sesstion(undo can be performed). + void updateCompositeActionState(); + /// update history list (undo/redo commands) void updateHistory(); @@ -269,13 +300,7 @@ signals: 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 onFeatureTriggered(); /// Close document void closeDocument(); @@ -290,32 +315,13 @@ signals: /// \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); - /// Process feature update message - void onFeatureUpdatedMsg(const std::shared_ptr& ); - - ///Process feature created message - void onFeatureCreatedMsg(const std::shared_ptr& ); - - /// Process feature redisplay message - void onFeatureRedisplayMsg(const std::shared_ptr& ); - - /// Process feature delete message - void onObjectDeletedMsg(const std::shared_ptr& ); - +private: /// Display all results - void displayAllResults(); + //void displayAllResults(); /// Displau results from document /// \param theDoc a document @@ -367,8 +373,8 @@ signals: /// \param theModule name of the module ModuleBase_IModule* loadModule(const QString& theModule); - /// Activate module - bool activateModule(); + /// Create module + bool createModule(); /// Create object browser widget /// \param theParent a parent of widget @@ -381,9 +387,6 @@ signals: // 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. @@ -397,6 +400,7 @@ signals: private: AppElements_MainWindow* myMainWindow; ModuleBase_IModule* myModule; + XGUI_ErrorMgr* myErrorMgr; XGUI_ObjectsBrowser* myObjectBrowser; XGUI_PropertyPanel* myPropertyPanel; XGUI_SelectionMgr* mySelector; @@ -408,14 +412,9 @@ private: XGUI_ViewerProxy* myViewerProxy; XGUI_ContextMenuMgr* myContextMenuMgr; XGUI_ModuleConnector* myModuleConnector; + XGUI_WorkshopListener* myEventsListener; QString myCurrentDir; - static QMap myIcons; - - bool myUpdatePrefs; - - // Flag to check that part document is in process of activating - bool myPartActivating; }; #endif