Salome HOME
Issue #624: vertical buttons in switcher are implemented as a row of toolbuttons
[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();
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 QIcon& 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->setToolTip( theName );
51   myButtonsGroup->addButton( aButton, anOldCount );
52   myButtonsLayout->insertWidget( anOldCount, aButton );
53 }
54
55 int ModuleBase_ToolBox::count() const
56 {
57   return myStack->count();
58 }
59
60 int ModuleBase_ToolBox::currentIndex() const
61 {
62   return myStack->currentIndex();
63 }
64
65 void ModuleBase_ToolBox::setCurrentIndex( const int theIndex )
66 {
67   myStack->setCurrentIndex( theIndex );
68   myButtonsGroup->button( theIndex )->setChecked( true );
69 }
70
71 void ModuleBase_ToolBox::onButton( int theIndex )
72 {
73   myStack->setCurrentIndex( theIndex );
74 }
75