nextcloud-desktop/src/mirall/owncloudtheme.cpp

128 lines
3.4 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;
devString = trUtf8("<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-17 19:38:33 +04:00
"ownCloud and the ownCloud Logo are registered trademarks of ownCloud, "
"Inc. in the United States, other countries, or both</p>"
)
.arg(MIRALL_VERSION_STRING)
.arg("http://" MIRALL_STRINGIFY(APPLICATION_DOMAIN))
.arg(MIRALL_STRINGIFY(APPLICATION_DOMAIN));
devString += gitSHA1();
return 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!");
return QVariant();
} 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
QString ownCloudTheme::appName() const
{
return QLatin1String("owncloud");
}
QString ownCloudTheme::appNameGUI() const
{
return QLatin1String("ownCloud");
}
}