aa31fc31b5e7f3547260d42351ab0f57b46b081a
[mdictionary] / src / mdictionary / gui / MenuWidget.h
1 /*******************************************************************************
2
3     This file is part of mDictionary.
4
5     mDictionary is free software: you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation, either version 3 of the License, or
8     (at your option) any later version.
9
10     mDictionary is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14
15     You should have received a copy of the GNU General Public License
16     along with mDictionary.  If not, see <http://www.gnu.org/licenses/>.
17
18     Copyright 2010 Comarch S.A.
19
20 *******************************************************************************/
21 //! \file MenuWidget.h
22 //! \author Mateusz Półrola <mateusz.polrola@comarch.pl>
23
24 #ifndef MENUWIDGET_H
25 #define MENUWIDGET_H
26
27 #include <QWidgetAction>
28 #include "MenuTabWidget.h"
29
30 /*! Displays custom menu with tab widget containing all submenus.
31   Each submenu is simply QWidget.
32 */
33 class MenuWidget : public QWidgetAction {
34     Q_OBJECT
35 public:
36     explicit MenuWidget(QWidget *parent = 0);
37     virtual ~MenuWidget();
38
39     /*!
40         Adds new submenu to menu. It is possible to have many submenus with the
41         same title.
42         \param title Name of new submenu which will be displayed in submenu tab.
43         \param widget Widget of the submenu.
44      */
45     void addSubMenu(QString title, QWidget* widget);
46
47     /*!
48         Removes submenu from menu. It will remove first menu with passed title.
49         /param title Name of submenu which will be removed.
50     */
51     void removeSubMenu(QString title);
52
53 Q_SIGNALS:
54     void setApplicationMenu(QWidget*);
55
56 public Q_SLOTS:
57     /*!
58       Hides menu
59       */
60     void hideMenu();
61
62     void showMenu();
63
64 protected:
65     QWidget* createWidget(QWidget *parent);
66
67 private:
68     MenuTabWidget* tabWidget;
69     QWidget* applicationMenu;
70 };
71
72 #endif // MENUWIDGET_H