4 * Created on: Apr 29, 2014
8 #ifndef XGUI_PROPERTYPANEL_H_
9 #define XGUI_PROPERTYPANEL_H_
13 #include <ModuleBase_ModelWidget.h>
14 #include <ModuleBase_IPropertyPanel.h>
21 class XGUI_EXPORT XGUI_PropertyPanel : public ModuleBase_IPropertyPanel
25 XGUI_PropertyPanel(QWidget* theParent);
26 virtual ~XGUI_PropertyPanel();
28 /// Returns main widget of the property panel, which children will be created
29 /// by WidgetFactory using the XML definition
30 QWidget* contentWidget();
32 /// Brings back all widget created by widget factory for signal/slot
33 /// connections and further processing
34 void setModelWidgets(const QList<ModuleBase_ModelWidget*>& theWidgets);
36 /// Returns all property panel's widget created by WidgetFactory
37 virtual const QList<ModuleBase_ModelWidget*>& modelWidgets() const;
39 /// Removes all widgets in the widget area of the property panel
42 /// Returns currently active widget
43 virtual ModuleBase_ModelWidget* activeWidget() const { return myActiveWidget; }
45 /// Activate the next widget in the property panel
46 /// \param theWidget a widget. The next widget should be activated
47 virtual void activateNextWidget(ModuleBase_ModelWidget* theWidget);
49 /// Activate the next from current widget in the property panel
50 virtual void activateNextWidget();
53 void updateContentWidget(FeaturePtr theFeature);
54 // Enables / disables "ok" ("accept") button
55 void setAcceptEnabled(bool);
58 // Makes the given widget active, highlights it and removes
59 // highlighting from the previous active widget
60 // emits widgetActivated(theWidget) signal
61 void activateWidget(ModuleBase_ModelWidget* theWidget);
64 /// Signal about the point 2d set to the feature
65 /// \param the feature
66 /// \param the attribute of the feature
67 void storedPoint2D(ObjectPtr theFeature, const std::string& theAttribute);
71 QWidget* myCustomWidget;
72 QList<ModuleBase_ModelWidget*> myWidgets;
73 QVBoxLayout* myMainLayout;
74 ModuleBase_ModelWidget* myActiveWidget;
77 #endif /* XGUI_PROPERTYPANEL_H_ */