1/*
2 This file is part of the KDE project.
3
4 Copyright (c) 2011 Lionel Chauvin <megabigbug@yahoo.fr>
5 Copyright (c) 2011,2012 Cédric Bellegarde <gnumdk@gmail.com>
6
7 Permission is hereby granted, free of charge, to any person obtaining a
8 copy of this software and associated documentation files (the "Software"),
9 to deal in the Software without restriction, including without limitation
10 the rights to use, copy, modify, merge, publish, distribute, sublicense,
11 and/or sell copies of the Software, and to permit persons to whom the
12 Software is furnished to do so, subject to the following conditions:
13
14 The above copyright notice and this permission notice shall be included in
15 all copies or substantial portions of the Software.
16
17 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
22 FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
23 DEALINGS IN THE SOFTWARE.
24*/
25
26#ifndef VERTICALMENU_H
27#define VERTICALMENU_H
28
29#include <QMenu>
30
31class VerticalMenu : public QMenu
32{
33Q_OBJECT
34public:
35 VerticalMenu(QWidget * parent = 0);
36 ~VerticalMenu();
37
38 /**
39 * Set menu parent window id
40 */
41 void setParentWid(WId id) { m_wid = id; }
42 /**
43 * Get menu parent window id
44 */
45 WId parentWid() { return m_wid; }
46protected:
47 void keyPressEvent(QKeyEvent*);
48 void keyReleaseEvent(QKeyEvent*);
49 void paintEvent(QPaintEvent*);
50private:
51 QMenu *leafMenu();
52private:
53 WId m_wid;
54};
55
56#endif //VERTICALMENU_H
57