2012-02-16 13:42:44 +04:00
|
|
|
/*
|
|
|
|
* 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 OWNCLOUD_THEME_H
|
|
|
|
#define OWNCLOUD_THEME_H
|
|
|
|
|
|
|
|
#include "theme.h"
|
|
|
|
|
|
|
|
namespace Mirall {
|
|
|
|
|
|
|
|
class ownCloudTheme : public Theme
|
|
|
|
{
|
2013-07-07 00:39:06 +04:00
|
|
|
Q_OBJECT
|
2012-02-16 13:42:44 +04:00
|
|
|
public:
|
|
|
|
ownCloudTheme();
|
|
|
|
|
2012-02-17 14:11:18 +04:00
|
|
|
QString configFileName() const;
|
2013-01-23 16:45:31 +04:00
|
|
|
QString about() const;
|
2012-05-02 17:50:01 +04:00
|
|
|
QPixmap splashScreen() const;
|
|
|
|
|
|
|
|
QIcon folderIcon( const QString& ) const;
|
|
|
|
QIcon trayFolderIcon( const QString& ) const;
|
2012-07-18 19:29:06 +04:00
|
|
|
QIcon folderDisabledIcon() const;
|
2012-05-02 17:50:01 +04:00
|
|
|
QIcon applicationIcon() const;
|
|
|
|
|
2013-06-13 14:56:20 +04:00
|
|
|
QVariant customMedia(CustomMediaType type);
|
2013-07-04 21:59:40 +04:00
|
|
|
QString helpUrl() const;
|
2013-06-13 14:56:20 +04:00
|
|
|
|
2013-05-17 20:05:22 +04:00
|
|
|
QColor wizardHeaderBackgroundColor() const;
|
|
|
|
QColor wizardHeaderTitleColor() const;
|
2013-06-25 16:51:39 +04:00
|
|
|
QPixmap wizardHeaderLogo() const;
|
2012-02-16 13:42:44 +04:00
|
|
|
private:
|
|
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
#endif // OWNCLOUD_MIRALL_THEME_H
|