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 _THEME_H
|
|
|
|
#define _THEME_H
|
|
|
|
|
2012-02-20 19:45:27 +04:00
|
|
|
#include "mirall/syncresult.h"
|
|
|
|
|
2012-02-23 14:44:44 +04:00
|
|
|
|
2012-02-20 19:45:27 +04:00
|
|
|
class QIcon;
|
|
|
|
class QString;
|
|
|
|
class QObject;
|
2012-02-23 14:44:44 +04:00
|
|
|
class QPixmap;
|
2013-05-17 20:05:22 +04:00
|
|
|
class QColor;
|
2012-02-20 19:45:27 +04:00
|
|
|
|
2012-02-16 13:42:44 +04:00
|
|
|
namespace Mirall {
|
|
|
|
|
2012-02-20 19:45:27 +04:00
|
|
|
class SyncResult;
|
|
|
|
|
2013-07-04 21:59:40 +04:00
|
|
|
class Theme : public QObject
|
2012-02-16 13:42:44 +04:00
|
|
|
{
|
2013-07-04 21:59:40 +04:00
|
|
|
Q_OBJECT
|
2012-02-16 13:42:44 +04:00
|
|
|
public:
|
2013-01-09 19:29:50 +04:00
|
|
|
enum CustomMediaType {
|
|
|
|
oCSetupTop, // ownCloud connect page
|
|
|
|
oCSetupSide,
|
|
|
|
oCSetupBottom,
|
|
|
|
oCSetupResultTop // ownCloud connect result page
|
|
|
|
};
|
|
|
|
|
2013-02-21 15:21:42 +04:00
|
|
|
/* returns a singleton instance. */
|
2012-09-24 19:55:10 +04:00
|
|
|
static Theme* instance();
|
2012-02-16 13:42:44 +04:00
|
|
|
|
2013-02-21 15:21:42 +04:00
|
|
|
/**
|
|
|
|
* @brief appNameGUI - Human readable application name.
|
|
|
|
*
|
|
|
|
* Use and redefine this if the human readable name contains spaces,
|
|
|
|
* special chars and such.
|
|
|
|
*
|
|
|
|
* By default, appName() is returned.
|
|
|
|
*
|
|
|
|
* @return QString with human readable app name.
|
|
|
|
*/
|
|
|
|
virtual QString appNameGUI() const;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief appName - Application name (short)
|
|
|
|
*
|
|
|
|
* Use and redefine this as an application name. Keep it straight as
|
|
|
|
* it is used for config files etc. If you need a more sophisticated
|
|
|
|
* name in the GUI, redefine appNameGUI.
|
|
|
|
*
|
|
|
|
* @return QString with app name.
|
|
|
|
*/
|
2012-02-16 13:42:44 +04:00
|
|
|
virtual QString appName() const = 0;
|
|
|
|
|
2013-02-21 15:21:42 +04:00
|
|
|
/**
|
|
|
|
* @brief configFileName
|
|
|
|
* @return the name of the config file.
|
|
|
|
*/
|
2012-02-17 14:11:18 +04:00
|
|
|
virtual QString configFileName() const = 0;
|
2012-02-16 13:42:44 +04:00
|
|
|
|
2012-05-02 17:50:01 +04:00
|
|
|
/**
|
|
|
|
* the icon that is shown in the tray context menu left of the folder name
|
|
|
|
*/
|
|
|
|
virtual QIcon trayFolderIcon( const QString& ) const;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* get an sync state icon
|
|
|
|
*/
|
2013-05-17 22:56:17 +04:00
|
|
|
virtual QIcon syncStateIcon( SyncResult::Status, bool sysTray = false ) const;
|
2012-05-02 17:50:01 +04:00
|
|
|
|
2012-07-18 19:29:06 +04:00
|
|
|
virtual QIcon folderDisabledIcon() const = 0;
|
2012-05-02 17:50:01 +04:00
|
|
|
virtual QIcon applicationIcon() const = 0;
|
|
|
|
|
|
|
|
virtual QString statusHeaderText( SyncResult::Status ) const;
|
2012-02-21 13:48:18 +04:00
|
|
|
virtual QString version() const;
|
2012-05-02 17:50:01 +04:00
|
|
|
|
2012-09-19 13:58:02 +04:00
|
|
|
/**
|
|
|
|
* Characteristics: bool if more than one sync folder is allowed
|
|
|
|
*/
|
|
|
|
virtual bool singleSyncFolder() const;
|
|
|
|
|
2013-07-04 21:59:40 +04:00
|
|
|
/**
|
|
|
|
* URL to help file
|
|
|
|
*/
|
|
|
|
virtual QString helpUrl() const { return QString::null; }
|
|
|
|
|
2013-01-09 19:29:50 +04:00
|
|
|
/**
|
|
|
|
* Setting a value here will pre-define the server url.
|
|
|
|
*
|
|
|
|
* The respective UI controls will be disabled
|
|
|
|
*/
|
|
|
|
virtual QString overrideServerUrl() const;
|
|
|
|
|
2012-09-28 15:42:22 +04:00
|
|
|
/**
|
|
|
|
* The default folder name without path on the server at setup time.
|
|
|
|
*/
|
|
|
|
virtual QString defaultServerFolder() const;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The default folder name without path on the client side at setup time.
|
|
|
|
*/
|
|
|
|
virtual QString defaultClientFolder() const;
|
|
|
|
|
2012-11-16 14:49:55 +04:00
|
|
|
/**
|
|
|
|
* Override to encforce a particular locale, i.e. "de" or "pt_BR"
|
|
|
|
*/
|
|
|
|
virtual QString enforcedLocale() const { return QString::null; }
|
|
|
|
|
2013-01-09 19:29:50 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Override to use a string or a custom image name.
|
|
|
|
* The default implementation will try to look up
|
|
|
|
* :/mirall/theme/<type>.png
|
|
|
|
*/
|
|
|
|
virtual QVariant customMedia( CustomMediaType type );
|
|
|
|
|
2013-05-17 20:05:22 +04:00
|
|
|
/** @return color for the setup wizard */
|
|
|
|
virtual QColor wizardHeaderTitleColor() const;
|
|
|
|
|
|
|
|
/** @return color for the setup wizard. */
|
|
|
|
virtual QColor wizardHeaderBackgroundColor() const;
|
|
|
|
|
|
|
|
/** @return logo for the setup wizard. */
|
|
|
|
virtual QPixmap wizardHeaderLogo() const;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The default implementation creates a
|
|
|
|
* background based on
|
|
|
|
* \ref wizardHeaderTitleColor().
|
|
|
|
*
|
|
|
|
* @return banner for the setup wizard.
|
|
|
|
*/
|
|
|
|
virtual QPixmap wizardHeaderBanner() const;
|
|
|
|
|
2013-01-23 16:45:31 +04:00
|
|
|
/**
|
|
|
|
* About dialog contents
|
|
|
|
*/
|
|
|
|
virtual QString about() const;
|
|
|
|
|
2012-12-20 19:31:24 +04:00
|
|
|
/**
|
|
|
|
* Define if the systray icons should be using mono design
|
|
|
|
*/
|
|
|
|
void setSystrayUseMonoIcons(bool mono);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Retrieve wether to use mono icons for systray
|
|
|
|
*/
|
|
|
|
bool systrayUseMonoIcons() const;
|
2012-11-16 14:49:55 +04:00
|
|
|
|
2012-05-02 17:50:01 +04:00
|
|
|
protected:
|
2012-12-20 19:31:24 +04:00
|
|
|
QIcon themeIcon(const QString& name, bool sysTray = false) const;
|
2012-09-24 19:55:10 +04:00
|
|
|
Theme() {}
|
2012-05-02 17:50:01 +04:00
|
|
|
|
2013-07-04 21:59:40 +04:00
|
|
|
signals:
|
|
|
|
void systrayUseMonoIconsChanged(bool);
|
|
|
|
|
2012-02-16 13:42:44 +04:00
|
|
|
private:
|
2012-10-26 00:40:20 +04:00
|
|
|
Theme(Theme const&);
|
|
|
|
Theme& operator=(Theme const&);
|
2012-09-24 19:55:10 +04:00
|
|
|
|
|
|
|
static Theme* _instance;
|
2012-12-20 19:31:24 +04:00
|
|
|
bool _mono;
|
2012-02-16 13:42:44 +04:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
#endif // _THEME_H
|