File: qtcompat.h

package info (click to toggle)
deepin-log-viewer 6.5.8%2Bds1-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 14,752 kB
  • sloc: cpp: 61,723; ansic: 1,732; xml: 81; sh: 59; makefile: 12
file content (41 lines) | stat: -rw-r--r-- 1,092 bytes parent folder | download | duplicates (2)
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
// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.
//
// SPDX-License-Identifier: GPL-3.0-or-later

#ifndef QTCOMPAT_H
#define QTCOMPAT_H

#include <QtGlobal>

#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
#include <QRegularExpression>
class QEnterEvent;

#define SKIP_EMPTY_PARTS    Qt::SkipEmptyParts
#define SPLIT_BH            Qt::SplitBehavior
#define ENDL                Qt::endl
#define REG_EXP             QRegularExpression
#define REG_EXPV            QRegularExpressionValidator
#define DATE_FOTIME         QDateTime::fromSecsSinceEpoch
#define DATE_TOTIME         QDateTime::toSecsSinceEpoch

using EnterEvent = QEnterEvent;

#else // QT_VERSION < 6.0.0

#include <QRegExp>
class QEvent;

#define SKIP_EMPTY_PARTS    QString::SkipEmptyParts
#define SPLIT_BH            QString::SplitBehavior
#define ENDL                endl
#define REG_EXP             QRegExp
#define REG_EXPV            QRegExpValidator
#define DATE_FOTIME         QDateTime::fromTime_t
#define DATE_TOTIME         QDateTime::toTime_t

using EnterEvent = QEvent;

#endif

#endif // QTCOMPAT_H