summaryrefslogtreecommitdiffstats
blob: 6eb0b046ecd7680fd39ffbc599a2ae9b57b2d73b (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
/*
 * Copyright (c) 2010-2017 Isode Limited.
 * All rights reserved.
 * See the COPYING file for more information.
 */

#include <Swift/QtUI/QtUtilities.h>

#include <QtGui>
#if defined (Q_OS_UNIX) && !defined(Q_OS_MAC)
#include <QX11Info>
#include <X11/Xlib.h>
#include <X11/Xutil.h>
#endif
#include <QTextDocument>
#include <QWidget>
#include <QDateTime>

#include <Swift/Controllers/ApplicationInfo.h>

namespace QtUtilities {


void setX11Resource(QWidget* widget, const QString& c) {
#if defined (Q_OS_UNIX) && !defined(Q_OS_MAC) && QT_VERSION < 0x050000
    char res_class[] = SWIFT_APPLICATION_NAME;
    XClassHint hint;
    QByteArray resName = (QString(SWIFT_APPLICATION_NAME) + "-" + c).toUtf8();
    hint.res_name = resName.data();
    hint.res_class = res_class;
    XSetClassHint(widget->x11Info().display(), widget->winId(), &hint);
#else
    (void) widget;
    (void) c;
#endif
}

QString htmlEscape(const QString& s) {
#if QT_VERSION >= 0x050000
    return s.toHtmlEscaped();
#else
    return Qt::escape(s);
#endif
}

long long secondsToNextMidnight(const QDateTime& currentTime) {
    auto secondsToMidnight = 0ll;
    auto nextMidnight = currentTime.addDays(1);
    nextMidnight.setTime(QTime(0,0));
    secondsToMidnight = currentTime.secsTo(nextMidnight);
    return secondsToMidnight;
}

}