X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2FPartSet%2FPartSet_Module.h;h=eb8fb58217b6c900be22d30e7a413247540a44ba;hb=2d8812a37a69beb9508879849782de6ed3f14e5e;hp=49fb587da76e1767f5a4384bbb2e8641983ea819;hpb=8887fbea231db0c1fd9089dd237b90595f6d78a4;p=modules%2Fshaper.git diff --git a/src/PartSet/PartSet_Module.h b/src/PartSet/PartSet_Module.h index 49fb587da..eb8fb5821 100644 --- a/src/PartSet/PartSet_Module.h +++ b/src/PartSet/PartSet_Module.h @@ -3,142 +3,113 @@ #include "PartSet.h" -#include +#include +#include +#include #include +#include +#include +#include + +#include +#include #include #include #include -#include +#include -class QMouseEvent; -class QKeyEvent; -class PartSet_Listener; -class ModelAPI_Feature; -class XGUI_ViewerPrs; +class ModuleBase_Operation; +class ModuleBase_IViewWindow; -class PARTSET_EXPORT PartSet_Module: public QObject, public XGUI_Module +class PARTSET_EXPORT PartSet_Module : public ModuleBase_IModule { Q_OBJECT -public: - PartSet_Module(XGUI_Workshop* theWshop); + public: + PartSet_Module(ModuleBase_IWorkshop* theWshop); virtual ~PartSet_Module(); - /// Returns the module workshop - /// \returns a workshop instance - XGUI_Workshop* workshop() const; - - virtual void createFeatures(); - virtual void featureCreated(QAction* theFeature); - virtual QStringList nestedFeatures(QString theFeature); - std::string featureFile(const std::string&); - - /// Creates an operation and send it to loop - /// \param theCmdId the operation name - virtual void launchOperation(const QString& theCmdId); - - /// Displays or erase the current operation preview, if it has it. - /// \param theFeature the feature instance to be displayed - /// \param isDisplay the state whether the presentation should be displayed or erased - /// \param isUpdateViewer the flag whether the viewer should be updated - void visualizePreview(FeaturePtr theFeature, bool isDisplay, - const bool isUpdateViewer = true); - - /// Activates the feature in the displayer - /// \param theFeature the feature instance to be displayed - /// \param isUpdateViewer the flag whether the viewer should be updated - void activateFeature(FeaturePtr theFeature, - const bool isUpdateViewer); - - /// Updates current operation preview, if it has it. - /// \param theCmdId the operation name - void updateCurrentPreview(const std::string& theCmdId); - -public slots: - void onFeatureTriggered(); - /// SLOT, that is called after the operation is started. Connect on the focus activated signal - void onOperationStarted(); - /// SLOT, that is called after the operation is stopped. Switched off the modfications performed - /// by the operation start - void onOperationStopped(ModuleBase_Operation* theOperation); - /// SLOT, that is called afetr the popup menu action clicked. - void onContextMenuCommand(const QString& theId, bool isChecked); + /// Creates custom widgets for property panel + virtual QWidget* createWidgetByType(const std::string& theType, QWidget* theParent, + Config_WidgetAPI* theWidgetApi, std::string theParentId, + QList& theModelWidgets); + + /// Call back forlast tuning of property panel before operation performance + virtual void propertyPanelDefined(ModuleBase_Operation* theOperation); + + QStringList sketchOperationIdList() const; + +protected slots: + /// Called when previous operation is finished + virtual void onOperationComitted(ModuleBase_Operation* theOperation); + + virtual void onOperationAborted(ModuleBase_Operation* theOperation); + + virtual void onOperationStarted(ModuleBase_Operation* theOperation); + + virtual void onOperationStopped(ModuleBase_Operation* theOperation); + + /// Called when previous operation is finished + virtual void onSelectionChanged(); + /// SLOT, that is called by mouse press in the viewer. /// The mouse released point is sent to the current operation to be processed. /// \param theEvent the mouse event - void onMousePressed(QMouseEvent* theEvent); + void onMousePressed(ModuleBase_IViewWindow* theWnd, QMouseEvent* theEvent); + /// SLOT, that is called by mouse release in the viewer. /// The mouse released point is sent to the current operation to be processed. /// \param theEvent the mouse event - void onMouseReleased(QMouseEvent* theEvent); + virtual void onMouseReleased(ModuleBase_IViewWindow* theWnd, QMouseEvent* theEvent); + /// SLOT, that is called by mouse move in the viewer. /// The mouse moved point is sent to the current operation to be processed. /// \param theEvent the mouse event - void onMouseMoved(QMouseEvent* theEvent); + virtual void onMouseMoved(ModuleBase_IViewWindow* theWnd, QMouseEvent* theEvent); - /// SLOT, that is called by the key in the viewer is clicked. - /// \param theEvent the mouse event - void onKeyRelease(QKeyEvent* theEvent); + /// Launches the operation from current highlighting + void launchEditing(); - /// SLOT, that is called by the mouse double click in the viewer. - /// \param theEvent the mouse event - void onMouseDoubleClick(QMouseEvent* theEvent); - - /// SLOT, to apply to the current viewer the operation - /// \param theX the X projection value - /// \param theY the Y projection value - /// \param theZ the Z projection value - void onPlaneSelected(double theX, double theY, double theZ); - - /// SLOT, to fit all current viewer - void onFitAllView(); - - void onLaunchOperation(std::string theName, FeaturePtr theFeature); - - /// SLOT, to switch on/off the multi selection in the viewer - /// \param theEnabled the enabled state - void onMultiSelectionEnabled(bool theEnabled); - - /// SLOT, to stop or start selection mode for the features - /// \param theFeatures a list of features to be disabled - /// \param theToStop the boolean state whether it it stopped or non stopped - void onStopSelection(const std::list& theFeatures, const bool isStop); - - /// SLOT, to set selection - /// \param theFeatures a list of features to be selected - void onSetSelection(const std::list& theFeatures); - - /// SLOT, to close the viewer local context - void onCloseLocalContext(); - - /// SLOT, to visualize the feature in another local context mode - /// \param theFeature the feature to be put in another local context mode - /// \param theMode the mode appeared on the feature - void onFeatureConstructed(FeaturePtr theFeature, - int theMode); -protected: - /// Creates a new operation - /// \param theCmdId the operation name - /// \param theFeatureKind a kind of feature to get the feature xml description - ModuleBase_Operation* createOperation(const std::string& theCmdId, - const std::string& theFeatureKind = ""); - - /// Sends the operation - /// \param theOperation the operation - void sendOperation(ModuleBase_Operation* theOperation); - -protected: - //! Edits the feature - void editFeature(FeaturePtr theFeature); - -private: - XGUI_Workshop* myWorkshop; - PartSet_Listener* myListener; - - std::map myFeaturesInFiles; + protected: + /// Returns new instance of operation object (used in createOperation for customization) + virtual ModuleBase_Operation* getNewOperation(const std::string& theFeatureId); + + /// Register validators for this module + virtual void registerValidators(); + + private slots: + void onVertexSelected(ObjectPtr theObject, const TopoDS_Shape& theShape); + + void onPlaneSelected(const std::shared_ptr& thePln); + + private: + /// Converts mouse position to 2d coordinates. + /// Member myCurrentSketch has to be correctly defined + void get2dPoint(ModuleBase_IViewWindow* theWnd, QMouseEvent* theEvent, + double& theX, double& theY); + + /// Breaks sequense of automatically resterted operations + void breakOperationSequence(); + + private: + QString myLastOperationId; + FeaturePtr myLastFeature; + + bool myIsDragging; + bool myDragDone; + + // Automatical restarting mode flag + bool myRestartingMode; + + double myCurX, myCurY; + CompositeFeaturePtr myCurrentSketch; + QList myEditingFeatures; + QList myEditingAttr; + + Handle(ModuleBase_ShapeInPlaneFilter) myPlaneFilter; }; #endif