1 // Copyright (C) 2014-2019 CEA/DEN, EDF R&D
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 // Lesser General Public License for more details.
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
20 #ifndef ModuleBase_WidgetChoice_H
21 #define ModuleBase_WidgetChoice_H
23 #include "ModuleBase.h"
24 #include "ModuleBase_ModelWidget.h"
27 class ModuleBase_ChoiceCtrl;
31 * Implementation of model widget for choice widget definition (combo box)
32 * It can be defined as following:
34 * <choice id="bool_type"
36 * tooltip="Type of boolean operation"
37 * string_list="Cut Fuse Common Smash"
40 * Aditionally can be used:
41 * A key "widget_type". It can have values "combobox" or "radiobuttons".
42 * By default it uses "combobox".
43 * A key "buttons_dir" which is applicable only for "radiobuttons" mode.
44 * It defines direction of radiobuttons layout. it can be "vertical" or "horizontal"
45 * Default value is "vertical"
47 class MODULEBASE_EXPORT ModuleBase_WidgetChoice : public ModuleBase_ModelWidget
52 /// \param theParent the parent object
53 /// \param theData the widget configuation. The attribute of the model widget is obtained from
54 ModuleBase_WidgetChoice(QWidget* theParent, const Config_WidgetAPI* theData);
56 virtual ~ModuleBase_WidgetChoice();
58 /// Defines if it is supported to set the value in this widget
59 /// It returns false because this is an info widget
60 virtual bool canAcceptFocus() const { return false; };
62 virtual bool focusTo();
64 /// Returns list of widget controls
65 /// \return a controls list
66 virtual QList<QWidget*> getControls() const;
68 /// Returns text value for the property panel title
69 /// \param theIndex a button index
70 /// \return the title value
71 QString getPropertyPanelTitle(int theIndex);
73 /// The slot is called when user press Ok or OkPlus buttons in the parent property panel
74 virtual void onFeatureAccepted();
77 /// Segnal about selected item
78 /// \param theWidget selected widget
79 /// \param theIndex selected index
80 void itemSelected(ModuleBase_ModelWidget* theWidget, int theIndex);
83 /// Saves the internal parameters to the given feature
84 /// \return True in success
85 virtual bool storeValueCustom();
87 virtual bool restoreValueCustom();
90 /// Slot called on combo box index change
91 void onCurrentIndexChanged(int theIndex);
94 ModuleBase_ChoiceCtrl* myChoiceCtrl;
96 // XML definition of titles
97 QStringList myButtonTitles;
98 std::string myStringListAttribute;