mirror of
https://github.com/nextcloud/desktop.git
synced 2024-12-18 20:02:17 +03:00
180 lines
4.5 KiB
C++
180 lines
4.5 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 _THEME_H
|
|
#define _THEME_H
|
|
|
|
#include "mirall/syncresult.h"
|
|
|
|
|
|
class QIcon;
|
|
class QString;
|
|
class QObject;
|
|
class QPixmap;
|
|
class QColor;
|
|
|
|
namespace Mirall {
|
|
|
|
class SyncResult;
|
|
|
|
class Theme : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
enum CustomMediaType {
|
|
oCSetupTop, // ownCloud connect page
|
|
oCSetupSide,
|
|
oCSetupBottom,
|
|
oCSetupResultTop // ownCloud connect result page
|
|
};
|
|
|
|
/* returns a singleton instance. */
|
|
static Theme* instance();
|
|
|
|
/**
|
|
* @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.
|
|
*/
|
|
virtual QString appName() const = 0;
|
|
|
|
/**
|
|
* @brief configFileName
|
|
* @return the name of the config file.
|
|
*/
|
|
virtual QString configFileName() const = 0;
|
|
|
|
/**
|
|
* 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
|
|
*/
|
|
virtual QIcon syncStateIcon( SyncResult::Status, bool sysTray = false ) const;
|
|
|
|
virtual QIcon folderDisabledIcon() const = 0;
|
|
virtual QIcon applicationIcon() const = 0;
|
|
|
|
virtual QString statusHeaderText( SyncResult::Status ) const;
|
|
virtual QString version() const;
|
|
|
|
/**
|
|
* Characteristics: bool if more than one sync folder is allowed
|
|
*/
|
|
virtual bool singleSyncFolder() const;
|
|
|
|
/**
|
|
* URL to help file
|
|
*/
|
|
virtual QString helpUrl() const { return QString::null; }
|
|
|
|
/**
|
|
* Setting a value here will pre-define the server url.
|
|
*
|
|
* The respective UI controls will be disabled
|
|
*/
|
|
virtual QString overrideServerUrl() const;
|
|
|
|
/**
|
|
* 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;
|
|
|
|
/**
|
|
* Override to encforce a particular locale, i.e. "de" or "pt_BR"
|
|
*/
|
|
virtual QString enforcedLocale() const { return QString::null; }
|
|
|
|
|
|
/**
|
|
* 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 );
|
|
|
|
/** @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;
|
|
|
|
/**
|
|
* About dialog contents
|
|
*/
|
|
virtual QString about() const;
|
|
|
|
/**
|
|
* 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;
|
|
|
|
protected:
|
|
QIcon themeIcon(const QString& name, bool sysTray = false) const;
|
|
Theme() {}
|
|
|
|
signals:
|
|
void systrayUseMonoIconsChanged(bool);
|
|
|
|
private:
|
|
Theme(Theme const&);
|
|
Theme& operator=(Theme const&);
|
|
|
|
static Theme* _instance;
|
|
bool _mono;
|
|
|
|
};
|
|
|
|
}
|
|
#endif // _THEME_H
|