1 // Copyright (C) 2014-2019 CEA/DEN, EDF R&D
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.
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.
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
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
20 #ifndef MODULEBASE_ACTIONINFO_H_
21 #define MODULEBASE_ACTIONINFO_H_
23 #include <ModuleBase.h>
24 #include <Config_FeatureMessage.h>
28 #include <QKeySequence>
34 * Structure to pass info about QActions, AppElements_Commands, etc.
36 struct MODULEBASE_EXPORT ModuleBase_ActionInfo
38 QString id; //!< action's (command) id
39 bool checkable; //!< action's checkable state
40 bool checked; //!< action's checked state
41 bool enabled; //!< action's enabled state
42 bool visible; //!< action's visibility state
44 //! = true if the acton is a modal dialog box else property panel (==false by default)
46 QIcon icon; //!< action's icon
47 QString text; //!< action's text
48 QString iconText; //!< action's descriptive icon text
49 QString iconFile; //!< path to icon's file. Can not be initialized from QAction
50 QString toolTip; //!< action's tooltip
51 QString toolBar; //!< A name of toolbar. By default = group of features name
54 QKeySequence shortcut; //!< action's primary shortcut key
55 QFont font; //!< action's text font
58 //! Default constructor, \sa initDefault
59 ModuleBase_ActionInfo();
60 //! Initializes structure with default values, except text
61 ModuleBase_ActionInfo(const QString &text);
62 //! Initializes structure with default values, except icon and text
63 ModuleBase_ActionInfo(const QIcon &icon, const QString &text);
64 virtual ~ModuleBase_ActionInfo();
66 //! Fills itself with info from given \param theAction
67 void initFrom(QAction* theAction);
68 //! Fills itself with info from given \param theFeatureMessage
69 void initFrom(std::shared_ptr<Config_FeatureMessage> theFeatureMessage);
72 //! Initializes structure with default values, like QAction()
76 typedef ModuleBase_ActionInfo ActionInfo;
78 #endif /* XGUI_ACTIONINFO_H_ */