Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
qhooks_p.h
Go to the documentation of this file.
1// Copyright (C) 2014 Klarälvdalens Datakonsult AB, a KDAB Group company, info@kdab.com, author Volker Krause <volker.krause@kdab.com>
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
3// Qt-Security score:significant reason:default
4
5
6#ifndef QHOOKS_H
7#define QHOOKS_H
8
9//
10// W A R N I N G
11// -------------
12//
13// This file is not part of the Qt API. It exists purely as an
14// implementation detail. This header file may change from version to
15// version without notice, or even be removed.
16//
17// We mean it.
18//
19
20#include <QtCore/private/qglobal_p.h>
21
22QT_BEGIN_NAMESPACE
23
24class QObject;
25
26namespace QHooks {
27
38
39typedef void(*AddQObjectCallback)(QObject*);
40typedef void(*RemoveQObjectCallback)(QObject*);
41typedef void(*StartupCallback)();
42
43}
44
45extern quintptr Q_CORE_EXPORT qtHookData[];
46
47QT_END_NAMESPACE
48
49#endif
void(* AddQObjectCallback)(QObject *)
Definition qhooks_p.h:39
void(* StartupCallback)()
Definition qhooks_p.h:41
void(* RemoveQObjectCallback)(QObject *)
Definition qhooks_p.h:40
HookIndex
Definition qhooks_p.h:28
@ Startup
Definition qhooks_p.h:34
@ TypeInformationVersion
Definition qhooks_p.h:35
@ LastHookIndex
Definition qhooks_p.h:36
@ AddQObject
Definition qhooks_p.h:32
@ QtVersion
Definition qhooks_p.h:31
@ HookDataSize
Definition qhooks_p.h:30
@ HookDataVersion
Definition qhooks_p.h:29
@ RemoveQObject
Definition qhooks_p.h:33
Combined button and popup list for selecting options.