Merge branch 'master' of ssh://drop.maemo.org/git/mdictionary
[mdictionary] / trunk / src / base / 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 //! \brief Implements custom menu
23 //! \author Mateusz Półrola <mateusz.polrola@comarch.pl>
24
25 #ifndef MENUWIDGET_H
26 #define MENUWIDGET_H
27
28 #include <QWidgetAction>
29 #include "MenuTabWidget.h"
30
31 /*! Displays custom menu with tab widget containing all submenus.
32   Each submenu is simply QWidget.
33 */
34 class MenuWidget : public QWidgetAction {
35     Q_OBJECT
36 public:
37     explicit MenuWidget(QWidget *parent = 0);
38     virtual ~MenuWidget();
39
40     /*!
41         Add new submenu to menu. It is possible to have many submenus with the
42         same title.
43         \param title Name of new submenu which will be displayed in submenu tab.
44         \param widget Widget of the submenu.
45      */
46     void addSubMenu(QString title, QWidget* widget);
47
48     /*!
49         Remove submenu from menu. It will remove first menu with passed title.
50         /param title Name of submeny which will be removed.
51     */
52     void removeSubMenu(QString title);
53
54 public Q_SLOTS:
55     /*!
56       Hides menu
57       */
58     void hideMenu();
59
60 protected:
61     MenuTabWidget* tabWidget;
62     QWidget* createWidget(QWidget *parent);
63 };
64
65 #endif // MENUWIDGET_H