// Copyright (C) 2020 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only #ifndef QGENERICUNIXTHEMES_H #define QGENERICUNIXTHEMES_H // // W A R N I N G // ------------- // // This file is not part of the Qt API. It exists purely as an // implementation detail. This header file may change from version to // version without notice, or even be removed. // // We mean it. // #include #include #include #include #include QT_BEGIN_NAMESPACE class ResourceHelper { public: ResourceHelper(); ~ResourceHelper() { clear(); } void clear(); QPalette *palettes[QPlatformTheme::NPalettes]; QFont *fonts[QPlatformTheme::NFonts]; }; class QGenericUnixThemePrivate; class Q_GUI_EXPORT QGenericUnixTheme : public QPlatformTheme { Q_DECLARE_PRIVATE(QGenericUnixTheme) public: QGenericUnixTheme(); static QPlatformTheme *createUnixTheme(const QString &name); static QStringList themeNames(); const QFont *font(Font type) const override; QVariant themeHint(ThemeHint hint) const override; static QStringList xdgIconThemePaths(); static QStringList iconFallbackPaths(); #ifndef QT_NO_DBUS QPlatformMenuBar *createPlatformMenuBar() const override; #endif #if !defined(QT_NO_DBUS) && !defined(QT_NO_SYSTEMTRAYICON) QPlatformSystemTrayIcon *createPlatformSystemTrayIcon() const override; #endif static const char *name; }; #if QT_CONFIG(settings) class QKdeThemePrivate; class QKdeTheme : public QPlatformTheme { Q_DECLARE_PRIVATE(QKdeTheme) public: QKdeTheme(const QStringList& kdeDirs, int kdeVersion); static QPlatformTheme *createKdeTheme(); QVariant themeHint(ThemeHint hint) const override; QIcon fileIcon(const QFileInfo &fileInfo, QPlatformTheme::IconOptions iconOptions = { }) const override; const QPalette *palette(Palette type = SystemPalette) const override; Qt::ColorScheme colorScheme() const override; const QFont *font(Font type) const override; #ifndef QT_NO_DBUS QPlatformMenuBar *createPlatformMenuBar() const override; #endif #if !defined(QT_NO_DBUS) && !defined(QT_NO_SYSTEMTRAYICON) QPlatformSystemTrayIcon *createPlatformSystemTrayIcon() const override; #endif static const char *name; }; #endif // settings class QGnomeThemePrivate; class Q_GUI_EXPORT QGnomeTheme : public QPlatformTheme { Q_DECLARE_PRIVATE(QGnomeTheme) public: QGnomeTheme(); QVariant themeHint(ThemeHint hint) const override; QIcon fileIcon(const QFileInfo &fileInfo, QPlatformTheme::IconOptions = { }) const override; const QFont *font(Font type) const override; QString standardButtonText(int button) const override; virtual QString gtkFontName() const; #ifndef QT_NO_DBUS QPlatformMenuBar *createPlatformMenuBar() const override; Qt::ColorScheme colorScheme() const override; #endif #if !defined(QT_NO_DBUS) && !defined(QT_NO_SYSTEMTRAYICON) QPlatformSystemTrayIcon *createPlatformSystemTrayIcon() const override; #endif static const char *name; }; QPlatformTheme *qt_createUnixTheme(); QT_END_NAMESPACE #endif // QGENERICUNIXTHEMES_H