Salome HOME
11f4a0642c9680df17838ab145d15c31e18bc0a1
[modules/shaper.git] / src / ModuleBase / ModuleBase_WidgetRadiobox.cpp
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 #include <ModuleBase_WidgetRadiobox.h>
22 #include <ModuleBase_PageBase.h>
23
24 #include <QFormLayout>
25 #include <QRadioButton>
26 #include <QFrame>
27 #include <QButtonGroup>
28
29
30 ModuleBase_WidgetRadiobox::ModuleBase_WidgetRadiobox(QWidget* theParent,
31                                                      const Config_WidgetAPI* theData)
32   : ModuleBase_PagedContainer(theParent, theData)
33 {
34   myLayout = new QFormLayout(this);
35   ModuleBase_Tools::adjustMargins(myLayout);
36   myGroup = new QButtonGroup(this);
37   myGroup->setExclusive(true);
38
39   connect(myGroup, SIGNAL(buttonToggled(int, bool)), SLOT(onPageChanged()));
40 }
41
42 ModuleBase_WidgetRadiobox::~ModuleBase_WidgetRadiobox()
43 {
44 }
45
46 int ModuleBase_WidgetRadiobox::addPage(ModuleBase_PageBase* thePage,
47                                         const QString& theName,
48                                         const QString& theCaseId,
49                                         const QPixmap& theIcon)
50 {
51   ModuleBase_PagedContainer::addPage(thePage, theName, theCaseId, theIcon);
52   QWidget* aWgt = new QWidget(this);
53   QVBoxLayout* aLay = new QVBoxLayout(aWgt);
54   aLay->setContentsMargins(0, 0, 0, 0);
55
56   QRadioButton* aButton;
57   if (theIcon.isNull())
58     aButton = new QRadioButton(theName, aWgt);
59   else
60     aButton = new QRadioButton(aWgt);
61   aButton->setToolTip(theName);
62   aLay->addStretch();
63   aLay->addWidget(aButton);
64   aLay->addStretch();
65
66   //QFrame* aFrame = dynamic_cast<QFrame*>(thePage);
67   QWidget* aPage = thePage->pageWidget();
68   myLayout->addRow(aWgt, aPage);
69   myGroup->addButton(aButton, myGroup->buttons().count());
70
71   bool isDefault = theCaseId.toStdString() == getDefaultValue();
72   aButton->setChecked(isDefault);
73   aPage->setEnabled(isDefault);
74   connect(aButton, SIGNAL(toggled(bool)), aPage, SLOT(setEnabled(bool)));
75
76   return myGroup->buttons().count();
77 }
78
79 int ModuleBase_WidgetRadiobox::currentPageIndex() const
80 {
81   return myGroup->checkedId();
82 }
83
84 void ModuleBase_WidgetRadiobox::setCurrentPageIndex(int theIndex)
85 {
86   bool isSignalsBlocked = myGroup->blockSignals(true);
87   myGroup->button(theIndex)->setChecked(true);
88   myGroup->blockSignals(isSignalsBlocked);
89 }