X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FXGUI%2FXGUI_PropertyPanel.h;h=04c4d1ed3c5521bfe40ab28368bc5de21968f906;hb=b5ed624c7308fceecfb3237d1e099729a1cd3c76;hp=546ae19b780fe7e2c62d30b3d3f90bc6b5a9a3b0;hpb=ef523c1c20fecaf086c9f9fe712750ae8e180ec0;p=modules%2Fshaper.git diff --git a/src/XGUI/XGUI_PropertyPanel.h b/src/XGUI/XGUI_PropertyPanel.h index 546ae19b7..04c4d1ed3 100644 --- a/src/XGUI/XGUI_PropertyPanel.h +++ b/src/XGUI/XGUI_PropertyPanel.h @@ -11,27 +11,67 @@ #include "XGUI.h" #include +#include -#include #include -class XGUI_EXPORT XGUI_PropertyPanel: public QDockWidget +class QKeyEvent; +class QVBoxLayout; + +class XGUI_EXPORT XGUI_PropertyPanel : public ModuleBase_IPropertyPanel { - Q_OBJECT -public: +Q_OBJECT + public: XGUI_PropertyPanel(QWidget* theParent); virtual ~XGUI_PropertyPanel(); + /// Returns main widget of the property panel, which children will be created + /// by WidgetFactory using the XML definition QWidget* contentWidget(); + + /// Brings back all widget created by widget factory for signal/slot + /// connections and further processing void setModelWidgets(const QList& theWidgets); -public slots: - void updateContentWidget(boost::shared_ptr theFeature); + /// Returns all property panel's widget created by WidgetFactory + virtual const QList& modelWidgets() const; -private: - QWidget* myCustomWidget; + /// Removes all widgets in the widget area of the property panel + void cleanContent(); + + /// Returns currently active widget + virtual ModuleBase_ModelWidget* activeWidget() const { return myActiveWidget; } + + /// Activate the next widget in the property panel + /// \param theWidget a widget. The next widget should be activated + virtual void activateNextWidget(ModuleBase_ModelWidget* theWidget); + + /// Activate the next from current widget in the property panel + virtual void activateNextWidget(); + public slots: + void updateContentWidget(FeaturePtr theFeature); + // Enables / disables "ok" ("accept") button + void setAcceptEnabled(bool); + + protected slots: + // Makes the given widget active, highlights it and removes + // highlighting from the previous active widget + // emits widgetActivated(theWidget) signal + void activateWidget(ModuleBase_ModelWidget* theWidget); + + signals: + /// Signal about the point 2d set to the feature + /// \param the feature + /// \param the attribute of the feature + void storedPoint2D(ObjectPtr theFeature, const std::string& theAttribute); + + + private: + QWidget* myCustomWidget; QList myWidgets; + QVBoxLayout* myMainLayout; + ModuleBase_ModelWidget* myActiveWidget; }; #endif /* XGUI_PROPERTYPANEL_H_ */