/* * Copyright (c) 2010-2017 Isode Limited. * All rights reserved. * See the COPYING file for more information. */ #include #include #if defined (Q_OS_UNIX) && !defined(Q_OS_MAC) #include #include #include #endif #include #include #include #include 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; } }