Version: 9.16.0
QtxDockAction.h
Go to the documentation of this file.
1// Copyright (C) 2007-2026 CEA, EDF, OPEN CASCADE
2//
3// Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5//
6// This library is free software; you can redistribute it and/or
7// modify it under the terms of the GNU Lesser General Public
8// License as published by the Free Software Foundation; either
9// version 2.1 of the License, or (at your option) any later version.
10//
11// This library is distributed in the hope that it will be useful,
12// but WITHOUT ANY WARRANTY; without even the implied warranty of
13// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14// Lesser General Public License for more details.
15//
16// You should have received a copy of the GNU Lesser General Public
17// License along with this library; if not, write to the Free Software
18// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19//
20// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21//
22
23// File: QtxDockAction.h
24// Author: Sergey TELKOV
25//
26#ifndef QTXDOCKACTION_H
27#define QTXDOCKACTION_H
28
29#include "QtxAction.h"
30
31#include <QList>
32
33class QIcon;
34class QString;
35class QToolBar;
36class QDockWidget;
37class QMainWindow;
38
39#ifdef WIN32
40#pragma warning( disable:4251 )
41#endif
42
44{
45 Q_OBJECT
46
47public:
49 enum { ToolBar,
51 Both
52 } DockType;
53
54public:
56 QtxDockAction( const QString&, const QString&, QMainWindow* );
57 QtxDockAction( const QString&, const QIcon&, const QString&, QMainWindow* );
58 virtual ~QtxDockAction();
59
60 void update();
61
62 int dockType() const;
63 void setDockType( const int );
64
65 QMainWindow* mainWindow() const;
66
67private slots:
68 void onAboutToShow();
69
70protected:
71 virtual void addedTo( QWidget* );
72 virtual void removedFrom( QWidget* );
73
74private:
75 void initialize();
76 void updateMenu();
77
78 void toolBars( QList<QToolBar*>& ) const;
79 void dockWidgets( QList<QDockWidget*>& ) const;
80
81private:
82 int myType;
84};
85
86#ifdef WIN32
87#pragma warning( default:4251 )
88#endif
89
90#endif // QTXDOCKACTION_H
#define QTX_EXPORT
Definition: Qtx.h:36
Generic action class.
Definition: QtxAction.h:39
virtual void addedTo(QWidget *)
Called when the action is added to the widget.
Definition: QtxAction.cxx:286
virtual void removedFrom(QWidget *)
Called when the action is removed from the widget.
Definition: QtxAction.cxx:299
Dockable windows & toolbars list action.
Definition: QtxDockAction.h:44
@ ToolBar
list toolbars only
Definition: QtxDockAction.h:49
@ DockWidget
list dockable windows only
Definition: QtxDockAction.h:50
QMainWindow * myMain
parent main window
Definition: QtxDockAction.h:83
int myType
dock action type
Definition: QtxDockAction.h:82