Salome HOME
Merge from V6_main 01/04/2013
[modules/gui.git] / src / Qtx / QtxMultiAction.h
1 // Copyright (C) 2007-2013  CEA/DEN, EDF R&D, OPEN CASCADE
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.
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 email : webmaster.salome@opencascade.com
18 //
19
20 // File:      QtxMultiAction.h
21 // Author:    Sergey TELKOV
22 //
23 #ifndef QTXMULTIACTION_H
24 #define QTXMULTIACTION_H
25
26 #include "QtxActionSet.h"
27
28 class QToolButton;
29
30 class QTX_EXPORT QtxMultiAction : public QtxActionSet
31 {
32   Q_OBJECT
33
34   class Menu;
35   class Button;
36   class Filter;
37
38 public:
39   QtxMultiAction( QObject* parent = 0 );
40   QtxMultiAction( const QString&, QObject* parent = 0 );
41   QtxMultiAction( const QIcon&, const QString&, QObject* parent = 0 );
42   virtual ~QtxMultiAction();
43
44   void             setActiveAction( QAction* );
45   QAction*         activeAction() const;
46
47 private slots:
48   void             onClicked( bool );
49   void             onTriggered( QAction* );
50   void             onActionChanged();
51
52 protected:
53   virtual bool     isEmptyAction() const;
54   virtual QWidget* createWidget( QWidget* );
55
56   virtual void     updateAction();
57   virtual void     updateAction( QWidget* );
58
59   virtual void     actionAdded( QAction* );
60   virtual void     actionRemoved( QAction* );
61
62 private:
63   void             updateButton( QToolButton* );
64
65 private:
66   QAction*         myCurrent;
67 };
68
69 #endif // QTXMULTIACTION_H