blob: e7fc28f383cf2e26167b28980f6a8e1bab68eedb (
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
|
// Copyright (C) 2016 The Qt Company Ltd.
// Copyright (c) 2007-2008, Apple, Inc.
// SPDX-License-Identifier: BSD-3-Clause
// Qt-Security score:significant reason:default
//
// W A R N I N G
// -------------
//
// This file is not part of the Qt API. It exists for the convenience
// of qapplication_*.cpp, qwidget*.cpp, qcolor_x11.cpp, qfiledialog.cpp
// and many other. This header file may change from version to version
// without notice, or even be removed.
//
// We mean it.
//
#ifndef QCOCOAAPPLICATION_H
#define QCOCOAAPPLICATION_H
#include <qglobal.h>
#include <QtCore/private/qcore_mac_p.h>
QT_DECLARE_NAMESPACED_OBJC_INTERFACE(QNSApplication, NSApplication)
QT_BEGIN_NAMESPACE
void qt_redirectNSApplicationSendEvent();
void qt_resetNSApplicationSendEvent();
QT_END_NAMESPACE
#endif // QCOCOAAPPLICATION_H
|