Version: 9.12.0
QtxDockAction.h
Go to the documentation of this file.
1 // Copyright (C) 2007-2023 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 
33 class QIcon;
34 class QString;
35 class QToolBar;
36 class QDockWidget;
37 class QMainWindow;
38 
39 #ifdef WIN32
40 #pragma warning( disable:4251 )
41 #endif
42 
44 {
45  Q_OBJECT
46 
47 public:
49  enum { ToolBar,
51  Both
52  } DockType;
53 
54 public:
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 
67 private slots:
68  void onAboutToShow();
69 
70 protected:
71  virtual void addedTo( QWidget* );
72  virtual void removedFrom( QWidget* );
73 
74 private:
75  void initialize();
76  void updateMenu();
77 
78  void toolBars( QList<QToolBar*>& ) const;
79  void dockWidgets( QList<QDockWidget*>& ) const;
80 
81 private:
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:40
virtual void addedTo(QWidget *)
Called when the action is added to the widget.
Definition: QtxAction.cxx:250
virtual void removedFrom(QWidget *)
Called when the action is removed from the widget.
Definition: QtxAction.cxx:263
Dockable windows & toolbars list action.
Definition: QtxDockAction.h:44
QMainWindow * myMain
parent main window
Definition: QtxDockAction.h:83
@ ToolBar
list toolbars only
Definition: QtxDockAction.h:49
@ DockWidget
list dockable windows only
Definition: QtxDockAction.h:50
int myType
dock action type
Definition: QtxDockAction.h:82