blob: 421d84df29f720bb0b4fd4b977ff5e5013acf7ac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
// Copyright (C) 2023 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#ifndef QQUICKNATIVEMENUITEM_P_H
#define QQUICKNATIVEMENUITEM_P_H
//
// W A R N I N G
// -------------
//
// This file is not part of the Qt API. It exists purely as an
// implementation detail. This header file may change from version to
// version without notice, or even be removed.
//
// We mean it.
//
#include <QtCore/qobject.h>
#include <QtQuickTemplates2/private/qtquicktemplates2global_p.h>
#include <QtQuickTemplates2/private/qquickicon_p.h>
QT_BEGIN_NAMESPACE
class QQuickAction;
class QQuickNativeIconLoader;
class QQuickMenu;
class QQuickMenuSeparator;
class QPlatformMenuItem;
class Q_QUICKTEMPLATES2_EXPORT QQuickNativeMenuItem : public QObject
{
Q_OBJECT
public:
static QQuickNativeMenuItem *createFromNonNativeItem(
QQuickMenu *parentMenu, QQuickItem *nonNativeItem);
~QQuickNativeMenuItem();
QQuickAction *action() const;
QQuickMenu *subMenu() const;
QQuickMenuSeparator *separator() const;
QPlatformMenuItem *handle() const;
void sync();
QQuickIcon effectiveIcon() const;
QQuickNativeIconLoader *iconLoader() const;
void reloadIcon();
QString debugText() const;
private Q_SLOTS:
void updateIcon();
private:
enum class Type {
Unknown,
// It's an Action or a MenuItem with an Action.
Action,
// It's a MenuItem without an Action.
MenuItem,
Separator,
SubMenu
};
explicit QQuickNativeMenuItem(QQuickMenu *parentMenu, QQuickItem *nonNativeItem, Type type);
void addShortcut();
void removeShortcut();
QQuickMenu *m_parentMenu = nullptr;
QQuickItem *m_nonNativeItem = nullptr;
Type m_type = Type::Unknown;
mutable QQuickNativeIconLoader *m_iconLoader = nullptr;
std::unique_ptr<QPlatformMenuItem> m_handle = nullptr;
int m_shortcutId = -1;
bool m_syncing = false;
};
QT_END_NAMESPACE
#endif // QQUICKNATIVEMENUITEM_P_H
|