Salome HOME
Merge remote-tracking branch 'origin/BR_REENTRANCE_OPERATION' into origin_Dev_1.5.0
[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 class QButtonGroup;
17
18 /**
19 * \ingroup GUI
20 * Implementation of model widget for choice widget definition (combo box)
21 * It can be defined as following:
22 * \code
23 *   <choice id="bool_type" 
24 *     label="Type" 
25 *     tooltip="Type of boolean operation"
26 *     string_list="Cut Fuse Common"
27 *   />
28 * \endcode
29 * Aditionally can be used: 
30 * A key "widget_type". It can have values "combobox" or "radiobuttons".
31 * By default it uses "combobox".
32 * A key "buttons_dir" which is applicable only for "radiobuttons" mode.
33 * It defines direction of radiobuttons layout. it can be "vertical" or "horizontal"
34 * Default value is "vertical"
35 */
36 class MODULEBASE_EXPORT ModuleBase_WidgetChoice : public ModuleBase_ModelWidget
37 {
38 Q_OBJECT
39  public:
40   /// Constructor
41   /// \param theParent the parent object
42   /// \param theData the widget configuation. The attribute of the model widget is obtained from
43   /// \param theParentId is Id of a parent of the current attribute
44   ModuleBase_WidgetChoice(QWidget* theParent, const Config_WidgetAPI* theData, 
45                           const std::string& theParentId);
46
47   virtual ~ModuleBase_WidgetChoice();
48   
49   virtual bool focusTo();
50
51   /// Returns list of widget controls
52   /// \return a controls list
53   virtual QList<QWidget*> getControls() const;
54
55 protected:
56   /// Saves the internal parameters to the given feature
57   /// \return True in success
58   virtual bool storeValueCustom() const;
59
60   virtual bool restoreValueCustom();
61
62 private slots:
63   /// Slot called on combo box index change
64   void onCurrentIndexChanged(int theIndex);
65
66 private:
67   /// The label
68   QLabel* myLabel;
69
70   /// The control
71   QComboBox* myCombo;
72   QButtonGroup* myButtons;
73 };
74
75 #endif