/* * Copyright (C) by Klaas Freitag * * 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 OWNCLOUD_THEME_H #define OWNCLOUD_THEME_H #include "theme.h" namespace OCC { /** * @brief The ownCloudTheme class * @ingroup libsync */ class ownCloudTheme : public Theme { Q_OBJECT public: ownCloudTheme(); #ifndef TOKEN_AUTH_ONLY QColor wizardHeaderBackgroundColor() const override; QColor wizardHeaderTitleColor() const override; QColor wizardHeaderSubTitleColor() const override; QIcon wizardHeaderLogo() const override; QIcon aboutIcon() const override; #endif // For owncloud-brandings *do* show the virtual files option. bool showVirtualFilesOption() const override { return true; } bool enableExperimentalFeatures() const override { return true; }; private: }; } #endif // OWNCLOUD_MIRALL_THEME_H