Version: 9.16.0
QtxMultiAction.h
Go to the documentation of this file.
1// Copyright (C) 2007-2026 CEA, EDF, 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, 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 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
28class QToolButton;
29
31{
32 Q_OBJECT
33
34 class Menu;
35 class Button;
36 class Filter;
37
38public:
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
47private slots:
48 void onClicked( bool );
49 void onTriggered( QAction* );
50 void onActionChanged();
51
52protected:
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
62private:
63 void updateButton( QToolButton* );
64
65private:
67};
68
69#endif // QTXMULTIACTION_H
#define QTX_EXPORT
Definition: Qtx.h:36
For more information see QT documentation.
An action class which is represented in the menu bar (or toolbar) as a group of items (which can be c...
Definition: QtxActionSet.h:35
virtual void updateAction()
Update action set.
Definition: QtxActionSet.cxx:348
virtual void actionAdded(QAction *)
Notify that action was added.
Definition: QtxActionSet.cxx:317
virtual bool isEmptyAction() const
Check if the action itself should be invisible (only child action are shown)
Definition: QtxActionSet.cxx:393
virtual void actionRemoved(QAction *)
Notify that action was removed.
Definition: QtxActionSet.cxx:324
Custom button to be used in the toolbar.
Definition: QtxMultiAction.cxx:118
Waches for the buttons in the popup menu to update the tool buttons state.
Definition: QtxMultiAction.cxx:42
Custom menu to be used with the toolbuttons as drop down list.
Definition: QtxMultiAction.cxx:67
The class QtxMultiAction implements modifiable action.
Definition: QtxMultiAction.h:31
QAction * myCurrent
Definition: QtxMultiAction.h:66