nextcloud-desktop/src/mirall/owncloudtheme.cpp

128 lines
3.8 KiB
C++
Raw Normal View History

/*
* 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.
*/
2012-05-21 18:48:49 +04:00
#include "owncloudtheme.h"
#include <QString>
2013-06-13 18:31:38 +04:00
#include <QVariant>
2014-04-06 21:34:56 +04:00
#ifndef TOKEN_AUTH_ONLY
2012-02-23 14:44:44 +04:00
#include <QPixmap>
#include <QIcon>
#include <QStyle>
2012-08-02 13:09:37 +04:00
#include <QApplication>
2014-04-06 21:34:56 +04:00
#endif
#include <QCoreApplication>
2013-06-13 18:31:38 +04:00
#include <QDebug>
#include "mirall/version.h"
#include "config.h"
namespace Mirall {
ownCloudTheme::ownCloudTheme() :
Theme()
{
2012-02-28 18:13:59 +04:00
// qDebug() << " ** running ownCloud theme!";
}
QString ownCloudTheme::configFileName() const
{
2012-08-02 13:17:24 +04:00
return QLatin1String("owncloud.cfg");
}
2012-02-23 14:44:44 +04:00
QString ownCloudTheme::about() const
{
QString devString;
#ifdef GIT_SHA1
const QString githubPrefix(QLatin1String(
"https://github.com/owncloud/mirall/commit/"));
const QString gitSha1(QLatin1String(GIT_SHA1));
devString = QCoreApplication::translate("ownCloudTheme::about()",
"<p><small>Built from Git revision <a href=\"%1\">%2</a>"
2014-04-21 17:29:42 +04:00
" on %3, %4 using Qt %5.</small></p>")
.arg(githubPrefix+gitSha1).arg(gitSha1.left(6))
.arg(__DATE__).arg(__TIME__)
.arg(QT_VERSION_STR);
#endif
return QCoreApplication::translate("ownCloudTheme::about()",
"<p>Version %2. "
"For more information visit <a href=\"%3\">%4</a></p>"
"<p><small>By Klaas Freitag, Daniel Molkentin, Jan-Christoph Borchardt, Olivier Goffart, Markus Götz and others.<br>"
2013-08-08 17:51:36 +04:00
"Based on Mirall by Duncan Mac-Vicar P.</small></p>"
"<p>Copyright ownCloud, Inc.</p>"
"<p>Licensed under the GNU Public License (GPL) Version 2.0<br/>"
2014-08-15 22:49:47 +04:00
"ownCloud and the ownCloud Logo are registered trademarks of ownCloud,"
"Inc. in the United States, other countries, or both</p>"
"%7"
)
.arg(MIRALL_VERSION_STRING)
.arg("http://" MIRALL_STRINGIFY(APPLICATION_DOMAIN))
.arg(MIRALL_STRINGIFY(APPLICATION_DOMAIN))
.arg(devString);
}
2014-04-06 21:34:56 +04:00
#ifndef TOKEN_AUTH_ONLY
QIcon ownCloudTheme::trayFolderIcon( const QString& ) const
{
QPixmap fallback = qApp->style()->standardPixmap(QStyle::SP_FileDialogNewFolder);
return QIcon::fromTheme("folder", fallback);
}
QIcon ownCloudTheme::applicationIcon( ) const
{
2013-05-28 16:42:41 +04:00
return themeIcon( QLatin1String("owncloud-icon") );
}
2014-04-06 21:34:56 +04:00
#endif
QVariant ownCloudTheme::customMedia(Theme::CustomMediaType type)
{
if (type == Theme::oCSetupTop) {
return QCoreApplication::translate("ownCloudTheme",
"If you don't have an ownCloud server yet, "
"see <a href=\"https://owncloud.com\">owncloud.com</a> for more info.",
"Top text in setup wizard. Keep short!");
} else {
return QVariant();
}
}
QString ownCloudTheme::helpUrl() const
{
return QString::fromLatin1("http://doc.owncloud.org/desktop/%1.%2/").arg(MIRALL_VERSION_MAJOR).arg(MIRALL_VERSION_MINOR);
}
2014-04-06 21:34:56 +04:00
#ifndef TOKEN_AUTH_ONLY
2013-05-17 20:05:22 +04:00
QColor ownCloudTheme::wizardHeaderBackgroundColor() const
{
return QColor("#1d2d42");
}
QColor ownCloudTheme::wizardHeaderTitleColor() const
{
return QColor("#ffffff");
}
2013-06-25 16:51:39 +04:00
QPixmap ownCloudTheme::wizardHeaderLogo() const
{
return QPixmap(":/mirall/theme/colored/wizard_logo.png");
}
2014-04-06 21:34:56 +04:00
#endif
}