X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FXGUI%2FXGUI_PropertyPanel.h;h=28c62461856c5a0c64fd5833c40127076133c334;hb=fc2acc7bd36f7bff6ec1f5095bf7c44be15e2574;hp=5cc9b5faf9b5882e17b71b9c5b7699765d9549e0;hpb=1054a9c79c51cf4fe54e86e3e712769060c3db9d;p=modules%2Fshaper.git diff --git a/src/XGUI/XGUI_PropertyPanel.h b/src/XGUI/XGUI_PropertyPanel.h index 5cc9b5faf..28c624618 100644 --- a/src/XGUI/XGUI_PropertyPanel.h +++ b/src/XGUI/XGUI_PropertyPanel.h @@ -11,46 +11,68 @@ #include "XGUI.h" #include +#include -#include #include class QKeyEvent; class QVBoxLayout; -class XGUI_EXPORT XGUI_PropertyPanel: public QDockWidget +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); + /// Returns all property panel's widget created by WidgetFactory + virtual const QList& modelWidgets() const; + + /// Removes all widgets in the widget area of the property panel void cleanContent(); -protected: - virtual bool eventFilter(QObject *theObject, QEvent *theEvent); + /// 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(); + + void setStretchEnabled(bool isEnabled); -public slots: + public slots: void updateContentWidget(FeaturePtr theFeature); - /// slot to set the focus to the widget visualized an attribute with the given name - /// \param theAttributteName - void onFocusActivated(const std::string& theAttributeName); + // Enables / disables "ok" ("accept") button + void setAcceptEnabled(bool); -signals: - /// The signal about key release on the control, that corresponds to the attribute - /// \param theAttributeName a name of the attribute - /// \param theEvent key release event - void keyReleased(const std::string& theAttributeName, QKeyEvent* theEvent); + // Makes the given widget active, highlights it and removes + // highlighting from the previous active widget + // emits widgetActivated(theWidget) signal + virtual void activateWidget(ModuleBase_ModelWidget* theWidget); -private: - QWidget* myCustomWidget; + 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); - QList myWidgets; + private: + QWidget* myCustomWidget; + QList myWidgets; QVBoxLayout* myMainLayout; + ModuleBase_ModelWidget* myActiveWidget; }; #endif /* XGUI_PROPERTYPANEL_H_ */