Salome HOME
Property panel widgets redesign
[modules/shaper.git] / src / ModuleBase / ModuleBase_WidgetChoice.h
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 // File:        ModuleBase_WidgetChoice.h
4 // Created:     03 Sept 2014
5 // Author:      Vitaly Smetannikov
6
7 #ifndef ModuleBase_WidgetChoice_H
8 #define ModuleBase_WidgetChoice_H
9
10 #include "ModuleBase.h"
11 #include "ModuleBase_ModelWidget.h"
12
13 class QWidget;
14 class QLabel;
15 class QComboBox;
16
17 /**
18 * \ingroup GUI
19 * Implementation of model widget for choice widget definition (combo box)
20 * It can be defined as following:
21 * \code
22 *   <choice id="bool_type" 
23 *     label="Type" 
24 *     tooltip="Type of boolean operation"
25 *     string_list="Cut Fuse Common"
26 *   />
27 * \endcode
28 */
29 class MODULEBASE_EXPORT ModuleBase_WidgetChoice : public ModuleBase_ModelWidget
30 {
31 Q_OBJECT
32  public:
33   /// Constructor
34   /// \param theParent the parent object
35   /// \param theData the widget configuation. The attribute of the model widget is obtained from
36   /// \param theParentId is Id of a parent of the current attribute
37   ModuleBase_WidgetChoice(QWidget* theParent, const Config_WidgetAPI* theData, 
38                           const std::string& theParentId);
39
40   virtual ~ModuleBase_WidgetChoice();
41   
42   virtual bool restoreValue();
43
44   virtual bool focusTo();
45
46   /// Returns list of widget controls
47   /// \return a controls list
48   virtual QList<QWidget*> getControls() const;
49
50 protected:
51   /// Saves the internal parameters to the given feature
52   /// \return True in success
53   virtual bool storeValue() const;
54
55 private slots:
56   /// Slot called on combo box index change
57   void onCurrentIndexChanged(int theIndex);
58
59 private:
60   /// The label
61   QLabel* myLabel;
62
63   /// The control
64   QComboBox* myCombo;
65 };
66
67 #endif