Salome HOME
Fix for the issue #2753 : error when dump/load script
[modules/shaper.git] / src / ModuleBase / ModuleBase_WidgetRadiobox.h
1 // Copyright (C) 2014-2017  CEA/DEN, EDF R&D
2 //
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.
7 //
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.
12 //
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
16 //
17 // See http://www.salome-platform.org/ or
18 // email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
19 //
20
21 #ifndef MODULEBASE_WIDGETRADIOBOX_H_
22 #define MODULEBASE_WIDGETRADIOBOX_H_
23
24 #include <ModuleBase.h>
25 #include <ModuleBase_PagedContainer.h>
26
27 class QFormLayout;
28 class QButtonGroup;
29 class QRadioButton;
30
31 class MODULEBASE_EXPORT ModuleBase_WidgetRadiobox : public ModuleBase_PagedContainer
32 {
33   Q_OBJECT
34 public:
35   /// Constructor
36   /// \param theParent the parent object
37   /// \param theData the widget configuration. The attribute of the model widget is obtained from
38   ModuleBase_WidgetRadiobox(QWidget* theParent, const Config_WidgetAPI* theData);
39   virtual ~ModuleBase_WidgetRadiobox();
40
41
42   /// Add a page to the widget
43   /// \param theWidget a page widget
44   /// \param theName a name of page
45   /// \param theCaseId an Id of the page
46   /// \param theIcon an icon of the page
47   virtual int addPage(ModuleBase_PageBase* theWidget,
48     const QString& theName,
49     const QString& theCaseId,
50     const QPixmap& theIcon,
51     const QString& theTooltip);
52
53 protected:
54   /// Implements ModuleBase_PagedContainer
55   virtual int currentPageIndex() const;
56
57   /// Implements ModuleBase_PagedContainer
58   virtual void setCurrentPageIndex(int);
59
60 private:
61   QFormLayout* myLayout;
62   QButtonGroup* myGroup;
63 };
64
65 #endif