Qt
Internal/Contributor docs for the Qt SDK. <b>Note:</b> These are NOT official API docs; those are found <a href='https://doc.qt.io/'>here</a>.
Loading...
Searching...
No Matches
qeffects_p.h
Go to the documentation of this file.
1// Copyright (C) 2016 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
3
4#ifndef QEFFECTS_P_H
5#define QEFFECTS_P_H
6
7//
8// W A R N I N G
9// -------------
10//
11// This file is not part of the Qt API. It exists for the convenience
12// of qeffects.cpp, qcombobox.cpp, qpopupmenu.cpp and qtooltip.cpp.
13// This header file may change from version to version without notice,
14// or even be removed.
15//
16// We mean it.
17//
18
19#include "QtCore/qnamespace.h"
20#include <QtWidgets/private/qtwidgetsglobal_p.h>
21
23
25
26class QWidget;
27
29{
30 enum Direction {
31 LeftScroll = 0x0001,
32 RightScroll = 0x0002,
33 UpScroll = 0x0004,
34 DownScroll = 0x0008
35 };
36
37 typedef uint DirFlags;
38};
39
40extern void Q_WIDGETS_EXPORT qScrollEffect(QWidget*, QEffects::DirFlags dir = QEffects::DownScroll, int time = -1);
41extern void Q_WIDGETS_EXPORT qFadeEffect(QWidget*, int time = -1);
42
44
45#endif // QEFFECTS_P_H
The QWidget class is the base class of all user interface objects.
Definition qwidget.h:99
Combined button and popup list for selecting options.
void Q_WIDGETS_EXPORT qScrollEffect(QWidget *, QEffects::DirFlags dir=QEffects::DownScroll, int time=-1)
Definition qeffects.cpp:525
void Q_WIDGETS_EXPORT qFadeEffect(QWidget *, int time=-1)
Definition qeffects.cpp:547
#define QT_REQUIRE_CONFIG(feature)
unsigned int uint
Definition qtypes.h:34
QString dir
[11]
@ RightScroll
Definition qeffects_p.h:32
uint DirFlags
Definition qeffects_p.h:37