mirror of
https://github.com/nextcloud/desktop.git
synced 2024-12-21 05:13:04 +03:00
9878559002
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
52 lines
1.4 KiB
C++
52 lines
1.4 KiB
C++
/*
|
|
* Copyright (C) by Klaas Freitag <freitag@owncloud.com>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful, but
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
* for more details.
|
|
*/
|
|
|
|
#ifndef NEXTCLOUD_THEME_H
|
|
#define NEXTCLOUD_THEME_H
|
|
|
|
#include "theme.h"
|
|
|
|
namespace OCC {
|
|
|
|
/**
|
|
* @brief The NextcloudTheme class
|
|
* @ingroup libsync
|
|
*/
|
|
class NextcloudTheme : public Theme
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
NextcloudTheme();
|
|
|
|
QString configFileName() const Q_DECL_OVERRIDE;
|
|
QString about() const Q_DECL_OVERRIDE;
|
|
|
|
#ifndef TOKEN_AUTH_ONLY
|
|
QIcon trayFolderIcon(const QString &) const Q_DECL_OVERRIDE;
|
|
QIcon applicationIcon() const Q_DECL_OVERRIDE;
|
|
#endif
|
|
|
|
QString helpUrl() const Q_DECL_OVERRIDE;
|
|
#ifndef TOKEN_AUTH_ONLY
|
|
QVariant customMedia(CustomMediaType type) Q_DECL_OVERRIDE;
|
|
|
|
QColor wizardHeaderBackgroundColor() const Q_DECL_OVERRIDE;
|
|
QColor wizardHeaderTitleColor() const Q_DECL_OVERRIDE;
|
|
QPixmap wizardHeaderLogo() const Q_DECL_OVERRIDE;
|
|
#endif
|
|
|
|
private:
|
|
};
|
|
}
|
|
#endif // NEXTCLOUD_THEME_H
|