Salome HOME
Correction tab logic.
[modules/shaper.git] / src / ModuleBase / ModuleBase_ToolBox.cpp
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 // File:        ModuleBase_ToolBox.cpp
4 // Created:     10 August 2015
5 // Author:      Alexandre SOLOVYOV
6
7 #include <ModuleBase_ToolBox.h>
8 #include <QButtonGroup>
9 #include <QStackedWidget>
10 #include <QHBoxLayout>
11 #include <QVBoxLayout>
12 #include <QToolButton>
13
14 ModuleBase_ToolBox::ModuleBase_ToolBox( QWidget* theParent )
15   : QFrame( theParent )
16 {
17   QVBoxLayout* aMainLayout = new QVBoxLayout( this );
18   aMainLayout->setMargin( 0 );
19   aMainLayout->setSpacing( 0 );
20
21   myButtonsFrame = new QFrame( this );
22   myStack = new QStackedWidget( this );
23   aMainLayout->addWidget( myButtonsFrame, 0 );
24   aMainLayout->addWidget( myStack, 1 );
25
26   myButtonsGroup = new QButtonGroup(this);
27   myButtonsGroup->setExclusive( true );
28   myButtonsLayout = new QHBoxLayout( myButtonsFrame );
29   myButtonsLayout->setMargin( 0 );
30   myButtonsLayout->setSpacing( 5 );
31   myButtonsLayout->addStretch( 1 );
32
33   connect( myStack, SIGNAL( currentChanged( int ) ), this, SIGNAL( currentChanged( int ) ) );
34   connect( myButtonsGroup, SIGNAL( buttonPressed( int ) ), this, SLOT( onButton( int ) ) );
35 }
36
37 ModuleBase_ToolBox::~ModuleBase_ToolBox()
38 {
39 }
40
41 void ModuleBase_ToolBox::addItem( QWidget* thePage, const QString& theName, const QPixmap& theIcon )
42 {
43   int anOldCount = myStack->count();
44
45   myStack->addWidget( thePage );
46
47   QToolButton* aButton = new QToolButton( myButtonsFrame );
48   aButton->setCheckable( true );
49   aButton->setIcon( theIcon );
50   aButton->setIconSize( theIcon.size() );
51   aButton->setToolTip( theName );
52   aButton->setObjectName( theName );
53   myButtonsGroup->addButton( aButton, anOldCount );
54   myButtonsLayout->insertWidget( anOldCount, aButton );
55 }
56
57 int ModuleBase_ToolBox::count() const
58 {
59   return myStack->count();
60 }
61
62 int ModuleBase_ToolBox::currentIndex() const
63 {
64   return myStack->currentIndex();
65 }
66
67 void ModuleBase_ToolBox::setCurrentIndex( const int theIndex )
68 {
69   myStack->setCurrentIndex( theIndex );
70   myButtonsGroup->button( theIndex )->setChecked( true );
71 }
72
73 void ModuleBase_ToolBox::onButton( int theIndex )
74 {
75   myStack->setCurrentIndex( theIndex );
76 }
77