Salome HOME
Issue #390 Selection restore problems during edit operation
[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 the internal parent wiget control, that can be shown anywhere
47   /// \returns the widget
48   QWidget* getControl() const
49   {
50     return myContainer;
51   }
52
53   /// Returns list of widget controls
54   /// \return a controls list
55   virtual QList<QWidget*> getControls() const;
56
57 protected:
58   /// Saves the internal parameters to the given feature
59   /// \return True in success
60   virtual bool storeValueCustom() const;
61
62 private slots:
63   /// Slot called on combo box index change
64   void onCurrentIndexChanged(int theIndex);
65
66 private:
67   /// Container widget
68   QWidget* myContainer;
69
70   /// The label
71   QLabel* myLabel;
72
73   /// The control
74   QComboBox* myCombo;
75 };
76
77 #endif