Salome HOME
Add copyright header according to request of CEA from 06.06.2017
[modules/shaper.git] / src / XGUI / XGUI_HistoryMenu.h
1 // Copyright (C) 2014-2017  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<mailto:webmaster.salome@opencascade.com>
18 //
19
20 /*
21  * XGUI_HistoryMenu.h
22  *
23  *  Created on: Feb 2, 2015
24  *      Author: sbh
25  */
26
27 #ifndef XGUI_HISTORYMENU_H_
28 #define XGUI_HISTORYMENU_H_
29
30 #include <XGUI.h>
31 #include <QMenu>
32
33 #include <ModuleBase_ActionInfo.h>
34
35 class QListWidget;
36 class QToolButton;
37 class QListWidgetItem;
38
39 /**
40  * \class XGUI_HistoryMenu
41  * \ingroup GUI
42  * \brief Extends regular QToolButton of QAction with HistoryMenu (stack of actions)
43  */
44 class XGUI_EXPORT XGUI_HistoryMenu : public QMenu
45 {
46   Q_OBJECT
47  public:
48   /// Creates history menu for button
49   explicit XGUI_HistoryMenu(QToolButton* theParent);
50   /// Creates history menu for action
51   explicit XGUI_HistoryMenu(QAction* theParent);
52   virtual ~XGUI_HistoryMenu();
53
54  signals:
55   /// Signal. Emited then n-th action is selected in stack
56   void actionSelected(int);
57
58  public slots:
59   /// Set list of actions
60   void setHistory(const QList<ActionInfo>&);
61
62  protected:
63   /// Unselects all items when cursor leaves the list
64   virtual void leaveEvent(QEvent *);
65
66  protected slots:
67   /// Selects all items in stack to the given item including it
68   void setStackSelectedTo(QListWidgetItem *);
69   /// Emits actionSelected() signal.
70   void onItemPressed(QListWidgetItem *);
71   /// Initializes internal controls of the Menu
72   void initMenu();
73
74  private:
75   QListWidget* myHistoryList; ///< List to contain actions
76 };
77
78 #endif /* XGUI_OPERATIONSSTACKPOPUP_H_ */