Salome HOME
Merge Dev_2.1.0 with PythonAPI branch
[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   /// Defines if it is supported to set the value in this widget
50   /// It returns false because this is an info widget
51   virtual bool canSetValue() const { return false; };
52
53   virtual bool focusTo();
54
55   /// Returns list of widget controls
56   /// \return a controls list
57   virtual QList<QWidget*> getControls() const;
58
59 signals:
60   void itemSelected(int);
61
62 protected:
63   /// Saves the internal parameters to the given feature
64   /// \return True in success
65   virtual bool storeValueCustom() const;
66
67   virtual bool restoreValueCustom();
68
69 private slots:
70   /// Slot called on combo box index change
71   void onCurrentIndexChanged(int theIndex);
72
73 private:
74   /// The label
75   QLabel* myLabel;
76
77   /// The control
78   QComboBox* myCombo;
79   QButtonGroup* myButtons;
80 };
81
82 #endif