~ubuntu-branches/ubuntu/oneiric/appmenu-qt/oneiric-proposed

« back to all changes in this revision

Viewing changes to src/private/qabstractplatformmenubar_p.h

  • Committer: Package Import Robot
  • Author(s): Didier Roche
  • Date: 2011-09-02 13:32:01 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: package-import@ubuntu.com-20110902133201-o88yxapf6ajfl7yk
Tags: 0.2.2-0ubuntu1
* New upstream release
  - Update "Status" dbusmenu property, making it possible to show menubar
    in Unity panel by pressing Alt (LP: #737419).
  - Improve robustness: menubar gets correctly exposed and unexposed when
    menubar renderer is started or stopped (LP: #838115, #602913).
  - Change licence to LGPLv3.
* debian/copyright:
  - update for new licence
* debian/control:
  - dep on libdbusmenu-qt-dev 0.9.0
  - bump Standards-Version to latest

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/****************************************************************************
 
2
**
 
3
** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
 
4
** All rights reserved.
 
5
** Contact: Nokia Corporation (qt-info@nokia.com)
 
6
**
 
7
** This file is part of the QtGui module of the Qt Toolkit.
 
8
**
 
9
** $QT_BEGIN_LICENSE:LGPL$
 
10
** No Commercial Usage
 
11
** This file contains pre-release code and may not be distributed.
 
12
** You may use this file in accordance with the terms and conditions
 
13
** contained in the Technology Preview License Agreement accompanying
 
14
** this package.
 
15
**
 
16
** GNU Lesser General Public License Usage
 
17
** Alternatively, this file may be used under the terms of the GNU Lesser
 
18
** General Public License version 2.1 as published by the Free Software
 
19
** Foundation and appearing in the file LICENSE.LGPL included in the
 
20
** packaging of this file.  Please review the following information to
 
21
** ensure the GNU Lesser General Public License version 2.1 requirements
 
22
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
 
23
**
 
24
** In addition, as a special exception, Nokia gives you certain additional
 
25
** rights.  These rights are described in the Nokia Qt LGPL Exception
 
26
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
 
27
**
 
28
** If you have questions regarding the use of this file, please contact
 
29
** Nokia at qt-info@nokia.com.
 
30
**
 
31
**
 
32
**
 
33
**
 
34
**
 
35
**
 
36
**
 
37
**
 
38
** $QT_END_LICENSE$
 
39
**
 
40
****************************************************************************/
 
41
#ifndef QABSTRACTPLATFORMMENUBAR_P_H
 
42
#define QABSTRACTPLATFORMMENUBAR_P_H
 
43
 
 
44
#include <qfactoryinterface.h>
 
45
#include <qglobal.h>
 
46
#include <qplugin.h>
 
47
 
 
48
#ifndef QT_NO_MENUBAR
 
49
 
 
50
QT_BEGIN_NAMESPACE
 
51
 
 
52
class QAction;
 
53
class QActionEvent;
 
54
class QEvent;
 
55
class QMenuBar;
 
56
class QObject;
 
57
class QWidget;
 
58
 
 
59
class QAbstractPlatformMenuBar;
 
60
 
 
61
struct QPlatformMenuBarFactoryInterface : public QFactoryInterface
 
62
{
 
63
    virtual QAbstractPlatformMenuBar *create() = 0;
 
64
};
 
65
 
 
66
#define QPlatformMenuBarFactoryInterface_iid "com.nokia.qt.QPlatformMenuBarFactoryInterface"
 
67
Q_DECLARE_INTERFACE(QPlatformMenuBarFactoryInterface, QPlatformMenuBarFactoryInterface_iid)
 
68
 
 
69
/*!
 
70
    The platform-specific implementation of a menubar
 
71
*/
 
72
class QAbstractPlatformMenuBar
 
73
{
 
74
public:
 
75
    virtual ~QAbstractPlatformMenuBar() {}
 
76
 
 
77
    virtual void init(QMenuBar *) = 0;
 
78
 
 
79
    virtual void setVisible(bool visible) = 0;
 
80
 
 
81
    virtual void actionEvent(QActionEvent *) = 0;
 
82
 
 
83
    virtual void handleReparent(QWidget *oldParent, QWidget *newParent, QWidget *oldWindow, QWidget *newWindow) = 0;
 
84
 
 
85
    virtual bool allowCornerWidgets() const = 0;
 
86
 
 
87
    virtual void popupAction(QAction *) = 0;
 
88
 
 
89
    virtual void setNativeMenuBar(bool) = 0;
 
90
 
 
91
    virtual bool isNativeMenuBar() const = 0;
 
92
 
 
93
    /*!
 
94
        Return true if the native menubar is capable of listening to the
 
95
        shortcut keys. If false is returned, QMenuBar will trigger actions on
 
96
        shortcut itself.
 
97
    */
 
98
    virtual bool shortcutsHandledByNativeMenuBar() const = 0;
 
99
 
 
100
    virtual bool menuBarEventFilter(QObject *, QEvent *event) = 0;
 
101
};
 
102
 
 
103
QT_END_NAMESPACE
 
104
 
 
105
#endif // QT_NO_MENUBAR
 
106
 
 
107
#endif // QABSTRACTPLATFORMMENUBAR_P_H