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 #include <ModuleBase_WidgetRadiobox.h>
21 #include <ModuleBase_PageBase.h>
23 #include <QFormLayout>
24 #include <QRadioButton>
26 #include <QButtonGroup>
29 ModuleBase_WidgetRadiobox::ModuleBase_WidgetRadiobox(QWidget* theParent,
30 const Config_WidgetAPI* theData)
31 : ModuleBase_PagedContainer(theParent, theData)
33 myLayout = new QFormLayout(this);
34 ModuleBase_Tools::adjustMargins(myLayout);
35 myGroup = new QButtonGroup(this);
36 myGroup->setExclusive(true);
38 connect(myGroup, SIGNAL(buttonToggled(int, bool)), SLOT(onPageChanged()));
41 ModuleBase_WidgetRadiobox::~ModuleBase_WidgetRadiobox()
45 int ModuleBase_WidgetRadiobox::addPage(ModuleBase_PageBase* thePage,
46 const QString& theName,
47 const QString& theCaseId,
48 const QPixmap& theIcon,
49 const QString& theTooltip)
51 ModuleBase_PagedContainer::addPage(thePage, theName, theCaseId, theIcon, theTooltip);
52 QWidget* aWgt = new QWidget(this);
53 QVBoxLayout* aLay = new QVBoxLayout(aWgt);
54 aLay->setContentsMargins(0, 0, 0, 0);
56 QRadioButton* aButton;
57 if (theIcon.isNull()) {
58 aButton = new QRadioButton(theName, aWgt);
59 aButton->setToolTip(theTooltip);
62 aButton = new QRadioButton(aWgt);
63 aButton->setToolTip(theName);
66 aLay->addWidget(aButton);
69 //QFrame* aFrame = dynamic_cast<QFrame*>(thePage);
70 QWidget* aPage = thePage->pageWidget();
71 myLayout->addRow(aWgt, aPage);
72 myGroup->addButton(aButton, myGroup->buttons().count());
74 bool isDefault = theCaseId.toStdString() == getDefaultValue();
75 aButton->setChecked(isDefault);
76 aPage->setEnabled(isDefault);
77 connect(aButton, SIGNAL(toggled(bool)), aPage, SLOT(setEnabled(bool)));
79 return myGroup->buttons().count();
82 int ModuleBase_WidgetRadiobox::currentPageIndex() const
84 return myGroup->checkedId();
87 void ModuleBase_WidgetRadiobox::setCurrentPageIndex(int theIndex)
89 bool isSignalsBlocked = myGroup->blockSignals(true);
90 myGroup->button(theIndex)->setChecked(true);
91 myGroup->blockSignals(isSignalsBlocked);