X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FXGUI%2FXGUI_Workshop.h;h=871e2df122e9c1792de47a06f0aaf3b9beaa24f7;hb=08a596f683652d0694b58dbb14eadfe11163c803;hp=628e721ce5bcd756319cc8ce474801f882d82226;hpb=3b6472899555f2186d09f45f4f1fde38b3af969a;p=modules%2Fshaper.git diff --git a/src/XGUI/XGUI_Workshop.h b/src/XGUI/XGUI_Workshop.h old mode 100644 new mode 100755 index 628e721ce..871e2df12 --- a/src/XGUI/XGUI_Workshop.h +++ b/src/XGUI/XGUI_Workshop.h @@ -1,4 +1,22 @@ -// Copyright (C) 2014-20xx CEA/DEN, EDF R&D --> +// Copyright (C) 2014-2017 CEA/DEN, EDF R&D +// +// This library is free software; you can redistribute it and/or +// modify it under the terms of the GNU Lesser General Public +// License as published by the Free Software Foundation; either +// version 2.1 of the License, or (at your option) any later version. +// +// This library is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +// Lesser General Public License for more details. +// +// You should have received a copy of the GNU Lesser General Public +// License along with this library; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// +// See http://www.salome-platform.org/ or +// email : webmaster.salome@opencascade.com +// #ifndef XGUI_WORKSHOP_H #define XGUI_WORKSHOP_H @@ -16,15 +34,18 @@ #include #include +#ifndef HAVE_SALOME class AppElements_MainWindow; class AppElements_Command; class AppElements_Workbench; +#endif class XGUI_ActionsMgr; class XGUI_ContextMenuMgr; class XGUI_Displayer; class XGUI_ErrorDialog; class XGUI_ErrorMgr; +class XGUI_MenuMgr; class XGUI_ModuleConnector; class XGUI_ObjectsBrowser; class XGUI_OperationMgr; @@ -44,6 +65,7 @@ class QDockWidget; class QMainWindow; class QAction; +class Config_DataModelReader; /**\class XGUI_Workshop * \ingroup GUI @@ -54,7 +76,7 @@ class XGUI_EXPORT XGUI_Workshop : public QObject Q_OBJECT public: /// Constructor - /// \param theConnector a Salome connector object. + /// \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(); @@ -68,12 +90,17 @@ Q_OBJECT /// Deactivates the module controls. Should be called after module creation void deactivateModule(); +#ifndef HAVE_SALOME //! Returns main window (Desktop) of the application AppElements_MainWindow* mainWindow() const { return myMainWindow; } + //! Creates and adds a new workbench (menu group) with the given name and returns it + AppElements_Workbench* addWorkbench(const QString& theName); +#endif + //! Returns selection manager object XGUI_SelectionMgr* selector() const { @@ -104,6 +131,12 @@ Q_OBJECT return myActionsMgr; } + //! ! Returns an actions manager + XGUI_MenuMgr* menuMgr() const + { + return myMenuMgr; + } + //! Returns property panel widget XGUI_PropertyPanel* propertyPanel() const { @@ -116,9 +149,6 @@ Q_OBJECT return myContextMenuMgr; } - //! Creates and adds a new workbench (menu group) with the given name and returns it - AppElements_Workbench* addWorkbench(const QString& theName); - //! Returns an object which provides interface to Salome Module (LightApp_Module) XGUI_SalomeConnector* salomeConnector() const { @@ -163,6 +193,11 @@ Q_OBJECT //! Delete features void deleteObjects(); + //! Searches for selected features unused in other (not selected) features. If one or several + //! selected features are found, a warning message proposes to delete them. It contains + //! the list of features to be deleted. + void cleanHistory(); + //! Returns true if the selected feature can be moved to the position after the current feature //! \return boolean value bool canMoveFeature(); @@ -176,14 +211,25 @@ Q_OBJECT bool canBeShaded(const ObjectPtr& theObject) const; //! Returns true if there is at least one selected body/construction/group result + //! \param theActionName text of the checked action //! \return boolean value - bool canChangeColor() const; + bool canChangeProperty(const QString& theActionName) const; - //! Change color of the features if it is possible + //! Change color of the results 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); + //! Change deflection of the results if it is possible + //! The operation is available for construction, body and group results + //! theObjects a list of selected objects + void changeDeflection(const QObjectPtrList& theObjects); + + //! Change transparency of the results if it is possible + //! The operation is available for construction, body and group results + //! theObjects a list of selected objects + void changeTransparency(const QObjectPtrList& theObjects); + //! Show the given features in 3d Viewer void showObjects(const QObjectPtrList& theList, bool isVisible); @@ -195,6 +241,13 @@ Q_OBJECT /// \param theMode a mode to set (see \ref XGUI_Displayer) void setDisplayMode(const QObjectPtrList& theList, int theMode); + /// Set selection mode in viewer. If theMode=-1 then activate default mode + /// \param theMode the selection mode (according to TopAbs_ShapeEnum) + void setViewerSelectionMode(int theMode); + + /// Activates current selection mode for the given list of objects + void activateObjectsSelection(const QObjectPtrList& theList); + /// Returns current module ModuleBase_IModule* module() const { @@ -222,18 +275,16 @@ Q_OBJECT */ bool abortAllOperations(); - //! 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); + /// Updates workshop state according to the started operation, e.g. visualizes the property panel + /// and connect to it. + /// \param theOpertion a started operation + void operationStarted(ModuleBase_Operation* theOperation); + + + //! Delete features. Delete the referenced features. There can be a question with a list of + //! referenced objects. + //! \param theFeatures a list of objects to be deleted + bool deleteFeatures(const QObjectPtrList& theFeatures); /// 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) @@ -245,22 +296,58 @@ Q_OBJECT /// \param theFeature a feature bool isFeatureOfNested(const FeaturePtr& theFeature); + //! Shows the message in the status bar + //! \param theMessage a message + void setStatusBarMessage(const QString& theMessage); + /// Has to be called in order to display objects with visibility status = true void synchronizeViewer(); - /// Has to be called in order to display objects from a cpecifed group with visibility status = true + /// Has to be called in order to display objects from a specifed group + /// with visibility status = true /// \param theDoc the document for objects synchronisation /// \param theGroup the group name /// \param theUpdateViewer update viewer flag - void synchronizeGroupInViewer(const DocumentPtr& theDoc, const std::string& theGroup, bool theUpdateViewer); + void synchronizeGroupInViewer(const DocumentPtr& theDoc, + const std::string& theGroup, + bool theUpdateViewer); + + /// Update the property panel content by the XML description of the operation and set the panel + /// into the operation + /// \param theOperation an operation + void fillPropertyPanel(ModuleBase_Operation* theOperation); + + /// Connects or disconnects to the value changed signal of the property panel widgets + /// \param isToConnect a boolean value whether connect or disconnect + void connectToPropertyPanel(const bool isToConnect); + + /// Returns defailt selection mode in 3d viewer + QIntList viewerSelectionModes() const { return myViewerSelMode; } + + /// Highlights result objects in Object Browser according to + /// features found in the given list + void highlightResults(const QObjectPtrList& theObjects); + + /// Highlights feature objects in Object Browser according to + /// features found in the given list + void highlightFeature(const QObjectPtrList& theObjects); + + /// Returns Data Model XML reader which contains information about + /// Data structure configuration + const Config_DataModelReader* dataModelXMLReader() const { return myDataModelXMLReader; } + + /// A constant string used for "Move to end" command definition + /// It is used for specific processing of Undo/Redo for this command. + static QString MOVE_TO_END_COMMAND; + + //! Closes all in the current session and load the directory + //! \param theDirectory a path to directory + void openDirectory(const QString& theDirectory); signals: /// Emitted when selection happens in Salome viewer void salomeViewerSelection(); - /// Emitted when error in application happens - void errorOccurred(const QString&); - //! the signal about the workshop actions states are updated. void commandStatusUpdated(); @@ -280,32 +367,31 @@ signals: /// update history list (undo/redo commands) void updateHistory(); - /// Create a new document - 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(); - /// Undo last command void onUndo(int times = 1); /// Redo previous command void onRedo(int times = 1); - /// Rebuild data tree - void onRebuild(); + // Rebuild data tree + //void onRebuild(); - /// Open preferences dialog box - void onPreferences(); + /// Validates the operation to change the "Apply" button state. + /// \param thePreviousState the previous state of the widget + void onWidgetStateChanged(int thePreviousState); + + /// Calls activate of the current widget again. It is possible that selection filters are + /// differs in the new state of paged container + void onValuesChanged(); + + /// Listens the corresponded signal of model widget and updates Apply button state by feature + void onWidgetObjectUpdated(); /// Show property panel void showPropertyPanel(); @@ -322,17 +408,35 @@ signals: /// Close document void closeDocument(); + /// Open document from file + void onOpen(); + + /// Create a new document + void onNew(); + +#ifndef HAVE_SALOME + /// Exit application + void onExit(); + + /// Open preferences dialog box + void onPreferences(); +#endif + + /// Activates/deactivates the trihedron in the viewer AIS context + void onTrihedronVisibilityChanged(bool theState); + + /// Apply the current transparency value if preview in transparency dialog is switched on + void onTransparencyValueChanged(); + + /// Switch on/off preview of transparency change + void onPreviewStateChanged(); + protected: /// Sets the granted operations for the parameter operation. Firstly, it finds the nested features /// and set them into the operation. Secondly, it asks the module about ids of granted operations. /// \param theOperation an operation void setGrantedFeatures(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 - void setPropertyPanel(ModuleBase_Operation* theOperation); - private: /// Display all results //void displayAllResults(); @@ -348,7 +452,7 @@ private: /// SLOT, that is called after the operation is started. Update workshop state according to /// the started operation, e.g. visualizes the property panel and connect to it. /// \param theOpertion a started operation - void onOperationStarted(ModuleBase_Operation* theOperation); + // void onOperationStarted(ModuleBase_Operation* theOperation); /// SLOT, that is called after the operation is resumed. Update workshop state according to /// the started operation, e.g. visualizes the property panel and connect to it. @@ -380,14 +484,9 @@ private: /// the operation can be committed and do it if it returns true. void onAcceptActionClicked(); - /// Listens the corresponded signal from operation manager and send it with the Ok - /// action to operation manager. - /// \param theEnabled an enabled state for the action - //void onValidationStateChanged(bool theEnabled); - - //connect(myOperationMgr, SIGNAL(validationStateChanged(bool)), - // aOkAct, SLOT(setEnabled(bool))); - + /// Called by Preview button clicked in the property panel. Sends signal to model to + /// compute preview. + void onPreviewActionClicked(); private: /// Init menu @@ -425,7 +524,10 @@ private: QList processHistoryList(const std::list&) const; private: +#ifndef HAVE_SALOME AppElements_MainWindow* myMainWindow; +#endif + ModuleBase_IModule* myModule; XGUI_ErrorMgr* myErrorMgr; XGUI_ObjectsBrowser* myObjectBrowser; @@ -434,6 +536,7 @@ private: XGUI_Displayer* myDisplayer; XGUI_OperationMgr* myOperationMgr; ///< manager to manipulate through the operations XGUI_ActionsMgr* myActionsMgr; + XGUI_MenuMgr* myMenuMgr; ///< manager to build menu/tool bar using order defined in XML XGUI_SalomeConnector* mySalomeConnector; XGUI_ErrorDialog* myErrorDlg; XGUI_ViewerProxy* myViewerProxy; @@ -442,6 +545,10 @@ private: XGUI_WorkshopListener* myEventsListener; QString myCurrentDir; + + QIntList myViewerSelMode; + + Config_DataModelReader* myDataModelXMLReader; }; #endif