Salome HOME
Copyright update: 2016
[modules/gui.git] / src / Qtx / QtxActionToolMgr.h
1 // Copyright (C) 2007-2016  CEA/DEN, EDF R&D, 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:      QtxActionToolMgr.h
24 // Author:    Alexander SOLOVYOV, Sergey TELKOV
25 //
26 #ifndef QTXACTIONTOOLMGR_H
27 #define QTXACTIONTOOLMGR_H
28
29 #include "Qtx.h"
30 #include "QtxActionMgr.h"
31
32 #include <QMap>
33 #include <QList>
34
35 class QToolBar;
36 class QMainWindow;
37 class QAction;
38
39 #ifdef WIN32
40 #pragma warning( disable:4251 )
41 #endif
42
43 class QTX_EXPORT QtxActionToolMgr : public QtxActionMgr
44 {
45   Q_OBJECT
46
47   class ToolNode
48   {
49   public:
50     ToolNode() : id( -1 ), visible( true ) {};
51     ToolNode( const int _id ) : id( _id ), visible( true ) {};
52
53     int       id;          //!< tool node ID
54     bool      visible;     //!< visibility status
55   };
56
57   typedef QList<ToolNode> NodeList;    //!< toolbar nodes list
58
59 protected:
60   class ToolCreator;
61
62 public:
63   QtxActionToolMgr( QMainWindow* );
64   virtual ~QtxActionToolMgr();
65
66   QMainWindow*    mainWindow() const;
67
68   int             createToolBar( const QString&, int = -1, QMainWindow* = 0, bool = true );
69   int             createToolBar( const QString&, const QString&, int = -1, QMainWindow* = 0, bool = true );
70   int             createToolBar( const QString&, bool, Qt::ToolBarAreas = Qt::AllToolBarAreas, 
71                                  int = -1, QMainWindow* = 0, bool = true );
72   int             createToolBar( const QString&, const QString&, bool, Qt::ToolBarAreas = Qt::AllToolBarAreas, 
73                                  int = -1, QMainWindow* = 0, bool = true );
74   void            removeToolBar( const QString& );
75   void            removeToolBar( const int );
76
77   int             insert( const int, const int, const int = -1 );
78   int             insert( QAction*, const int, const int = -1 );
79   int             insert( const int, const QString&, const int = -1 );
80   int             insert( QAction*, const QString&, const int = -1 );
81
82   int             append( const int, const int );
83   int             append( QAction*, const int );
84   int             append( const int, const QString& );
85   int             append( QAction*, const QString& );
86
87   int             prepend( const int, const int );
88   int             prepend( QAction*, const int );
89   int             prepend( const int, const QString& );
90   int             prepend( QAction*, const QString& );
91
92   virtual bool    isVisible( const int, const int ) const;
93   virtual void    setVisible( const int, const int, const bool );
94
95   void            show( const int );
96   void            hide( const int );
97   bool            isShown( const int ) const;
98   void            setShown( const int, const bool );
99
100   void            remove( const int, const int );
101   void            remove( const int, const QString& );
102
103   QToolBar*       toolBar( const int ) const;
104   QToolBar*       toolBar( const QString& ) const;
105   QIntList        toolBarsIds() const;
106   
107   bool            hasToolBar( const int ) const;
108   bool            hasToolBar( const QString& ) const;
109
110   bool            containsAction( const int, const int = -1 ) const;
111   int             index( const int, const int ) const;
112
113   virtual bool    load( const QString&, QtxActionMgr::Reader& );
114
115   int             find( QToolBar* ) const;
116
117 protected slots:
118   void            onToolBarDestroyed();
119
120 protected:
121   int             find( const QString& ) const;
122   QToolBar*       find( const QString&, QMainWindow* ) const;
123
124   virtual void    internalUpdate();
125   void            updateToolBar( const int );
126
127   virtual void    updateContent();
128
129 private:
130   void            simplifySeparators( QToolBar* );
131   void            triggerUpdate( const int );
132
133 private:
134   typedef struct { NodeList nodes; QToolBar* toolBar; } ToolBarInfo;   //!< toolbar info
135   typedef QMap<int, ToolBarInfo>                        ToolBarMap;    //!< toolbars map
136
137 private:
138   ToolBarMap      myToolBars;      //!< toobars map
139   QMainWindow*    myMainWindow;    //!< parent main window
140   QMap<int,int>   myUpdateIds;     //!< list of actions ID being updated
141 };
142
143 class QtxActionToolMgr::ToolCreator : public QtxActionMgr::Creator
144 {
145 public:
146   ToolCreator( QtxActionMgr::Reader*, QtxActionToolMgr* );
147   virtual ~ToolCreator();
148
149   virtual int append( const QString&, const bool,
150                       const ItemAttributes&, const int );
151
152 private:
153   QtxActionToolMgr* myMgr;         //!< toolbar manager
154 };
155
156 #endif