1 // Copyright (C) 2007-2023 CEA, EDF, OPEN CASCADE
3 // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
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.
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.
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
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
23 // File: QtxActionMgr.h
24 // Author: Alexander SOLOVYOV, Sergey TELKOV
26 #ifndef QTXACTIONMGR_H
27 #define QTXACTIONMGR_H
40 #pragma warning( disable:4251 )
44 class QTX_EXPORT QtxActionMgr : public QObject
48 class SeparatorAction;
58 QtxActionMgr( QObject* parent );
59 virtual ~QtxActionMgr();
61 virtual int registerAction( QAction*, const int = -1 );
62 virtual void unRegisterAction( const int );
64 QAction* action( const int ) const;
65 int actionId( const QAction* ) const;
66 bool contains( const int ) const;
70 QIntList idList() const;
72 bool isUpdatesEnabled() const;
73 virtual void setUpdatesEnabled( const bool );
75 virtual bool isVisible( const int, const int ) const;
76 virtual void setVisible( const int, const int, const bool );
80 virtual bool isEnabled( const int ) const;
81 virtual void setEnabled( const int, const bool );
83 static QAction* separator( const bool = false );
86 virtual void internalUpdate();
87 int generateId() const;
90 virtual void updateContent();
91 virtual void actionChanged( int );
94 void onActionChanged();
95 void onUpdateContent();
98 typedef QPointer<QAction> ActionPtr; //!< Action guarded pointer
99 typedef QMap<int, ActionPtr> ActionMap; //!< Actions map
102 bool myUpdate; //!< update flag
103 ActionMap myActions; //!< actions map
104 QTimer* myUpdTimer; //!< update timer
108 QTX_EXPORT typedef QMap<QString, QString> ItemAttributes; //!< attributes map
110 class QTX_EXPORT QtxActionMgr::Creator
113 Creator( QtxActionMgr::Reader* );
116 Reader* reader() const;
118 virtual int append( const QString&, const bool,
119 const ItemAttributes&, const int ) = 0;
120 virtual void connect( QAction* ) const;
122 virtual bool loadPixmap( const QString&, QPixmap& ) const;
125 static int intValue( const ItemAttributes&, const QString&, const int );
126 static QString strValue( const ItemAttributes&, const QString&,
127 const QString& = QString() );
129 QtxActionMgr::Reader* myReader; //!< actions reader
132 class QTX_EXPORT QtxActionMgr::Reader
138 QStringList options() const;
139 QString option( const QString&, const QString& = QString() ) const;
140 void setOption( const QString&, const QString& );
142 virtual bool read( const QString&, Creator& ) const = 0;
145 QMap< QString, QString > myOptions; //!< options map
148 class QTX_EXPORT QtxActionMgr::XMLReader : public Reader
151 XMLReader( const QString&, const QString&, const QString& );
152 virtual ~XMLReader();
154 virtual bool read( const QString&, Creator& ) const;
157 virtual void read( const QDomNode&, const int, Creator& ) const;
158 virtual bool isNodeSimilar( const QDomNode&, const QString& ) const;