Salome HOME
095f6f537ca2ebdaeadf06d2946c845e201e1c73
[modules/shaper.git] / src / SHAPERGUI / SHAPERGUI_ToolbarsMgr.h
1 // Copyright (C) 2014-2023  CEA/DEN, EDF R&D
2 //
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.
7 //
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.
12 //
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
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 #ifndef SHAPERGUI_ToolbarsMgr_H
21 #define SHAPERGUI_ToolbarsMgr_H
22
23 #include "SHAPER_SHAPERGUI.h"
24
25 #include <Qtx.h>
26
27 #include <QDialog>
28 #include <QString>
29 #include <QStringList>
30 #include <QMap>
31
32 class QListWidget;
33 class SHAPERGUI;
34 class QLabel;
35
36 /**
37 * \ingroup Salome
38 * A dialog box for editing of toolbar items
39 */
40 class SHAPERGUI_ToolbarItemsDlg : public QDialog
41 {
42   Q_OBJECT
43 public:
44   /// Constructor
45   /// \param theParent a parent for the dialog
46   /// \param theModule a module with toolbars
47   /// \param theToolbar a name of the toolbar for editing
48   /// \param theFreeItems a list of commands out of toolbars
49   /// \param theItemsList a list of command in the toolbar
50   SHAPERGUI_ToolbarItemsDlg(QWidget* theParent,
51     SHAPERGUI* theModule,
52     const QString& theToolbar,
53     const QIntList& theFreeItems,
54     const QIntList& theItemsList);
55
56   /// Returns list of free commands
57   QIntList freeItems() const;
58
59   /// Returns list of commands in the toolbar
60   QIntList toolbarItems() const;
61
62 protected:
63   /// An redifinition of a virtual function
64   /// \param theObj an object
65   /// \param theEvent an event
66   virtual bool eventFilter(QObject* theObj, QEvent* theEvent);
67
68 private slots:
69   /// A slot for button to add an item to toolbar commands
70   void onAddItem();
71
72   /// A slot for button to remove an item from toolbar commands
73   void onDelItem();
74
75   /// A slot to move a current item up in list of toolbar command
76   void onUp();
77
78   /// A slot to move a current item down in list of toolbar command
79   void onDown();
80
81   /// A slot on help call
82   void onHelp();
83
84 private:
85   QIntList getItems(QListWidget* theWidget, int theStart) const;
86
87   SHAPERGUI* myModule;
88
89   QListWidget* myCommandsList;
90   QListWidget* myItemsList;
91 };
92
93
94 /**
95 * \ingroup Salome
96 * A dialog box for toolbars management
97 */
98 class SHAPERGUI_ToolbarsDlg : public QDialog
99 {
100   Q_OBJECT
101 public:
102   /// Constructor
103   /// \param theModule a SHAPER module
104   SHAPERGUI_ToolbarsDlg(SHAPERGUI* theModule);
105
106   /// Returns result of editing
107   QMap<QString, QIntList> result() const { return myResult; }
108
109   /// Returns a flag of resetted toolbars structure
110   bool isReset() const {
111     return myIsReset;
112   }
113
114 private slots:
115   /// A slot to add a new toolbar
116   void onAdd();
117
118   /// A slot to edit a current toolbar
119   void onEdit();
120
121   /// A slot to delete a current toolbar
122   void onDelete();
123
124   /// A slot to reset toolbars
125   void onReset();
126
127   /// A slot on help call
128   void onHelp();
129
130   /// A slot called on double click on item in list
131   void onDoubleClick(const QModelIndex& theIdx);
132
133 private:
134   /// Update content of toolbars list
135   void updateToolbarsList();
136
137   /// Update number of free items
138   void updateNumber();
139
140 private:
141   SHAPERGUI* myModule;
142   QMap<QString, QIntList> myResult;
143   QIntList myFreeCommands;
144
145   QLabel* myFreeNbLbl;
146   QListWidget* myToolbarsList;
147
148   bool myIsReset;
149 };
150
151
152 #endif