1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
3 // File: ModuleBase_WidgetChoice.h
4 // Created: 03 Sept 2014
5 // Author: Vitaly Smetannikov
7 #ifndef ModuleBase_WidgetChoice_H
8 #define ModuleBase_WidgetChoice_H
10 #include "ModuleBase.h"
11 #include "ModuleBase_ModelWidget.h"
20 * Implementation of model widget for choice widget definition (combo box)
21 * It can be defined as following:
23 * <choice id="bool_type"
25 * tooltip="Type of boolean operation"
26 * string_list="Cut Fuse Common Smash"
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"
36 class MODULEBASE_EXPORT ModuleBase_WidgetChoice : public ModuleBase_ModelWidget
41 /// \param theParent the parent object
42 /// \param theData the widget configuation. The attribute of the model widget is obtained from
43 ModuleBase_WidgetChoice(QWidget* theParent, const Config_WidgetAPI* theData);
45 virtual ~ModuleBase_WidgetChoice();
47 /// Defines if it is supported to set the value in this widget
48 /// It returns false because this is an info widget
49 virtual bool canAcceptFocus() const { return false; };
51 virtual bool focusTo();
53 /// Returns list of widget controls
54 /// \return a controls list
55 virtual QList<QWidget*> getControls() const;
57 /// Returns text value for the property panel title
58 /// \param theIndex a button index
59 /// \return the title value
60 QString getPropertyPanelTitle(int theIndex);
63 /// Segnal about selected item
64 /// \param theWidget selected widget
65 /// \param theIndex selected index
66 void itemSelected(ModuleBase_ModelWidget* theWidget, int theIndex);
69 /// Saves the internal parameters to the given feature
70 /// \return True in success
71 virtual bool storeValueCustom();
73 virtual bool restoreValueCustom();
76 /// Slot called on combo box index change
77 void onCurrentIndexChanged(int theIndex);
85 QButtonGroup* myButtons;
87 // XML definition of titles
88 QStringList myButtonTitles;