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.
|
|
|
|
*/
|
|
|
|
|
2012-05-21 18:48:49 +04:00
|
|
|
#include "owncloudtheme.h"
|
|
|
|
|
2012-02-16 13:42:44 +04:00
|
|
|
#include <QString>
|
2013-06-13 18:31:38 +04:00
|
|
|
#include <QVariant>
|
2012-02-23 14:44:44 +04:00
|
|
|
#include <QPixmap>
|
2012-05-02 17:50:01 +04:00
|
|
|
#include <QIcon>
|
2012-12-20 19:31:24 +04:00
|
|
|
#include <QStyle>
|
2012-08-02 13:09:37 +04:00
|
|
|
#include <QApplication>
|
2012-02-16 13:42:44 +04:00
|
|
|
|
2013-06-13 18:31:38 +04:00
|
|
|
#include <QDebug>
|
|
|
|
|
2013-01-23 16:45:31 +04:00
|
|
|
#include "mirall/version.h"
|
|
|
|
#include "config.h"
|
|
|
|
|
2012-02-16 13:42:44 +04:00
|
|
|
namespace Mirall {
|
|
|
|
|
|
|
|
ownCloudTheme::ownCloudTheme()
|
|
|
|
{
|
2012-02-28 18:13:59 +04:00
|
|
|
// qDebug() << " ** running ownCloud theme!";
|
2012-02-16 13:42:44 +04:00
|
|
|
}
|
|
|
|
|
2012-02-17 14:11:18 +04:00
|
|
|
QString ownCloudTheme::configFileName() const
|
|
|
|
{
|
2012-08-02 13:17:24 +04:00
|
|
|
return QLatin1String("owncloud.cfg");
|
2012-02-17 14:11:18 +04:00
|
|
|
}
|
2012-02-23 14:44:44 +04:00
|
|
|
|
2013-01-23 16:45:31 +04:00
|
|
|
QString ownCloudTheme::about() const
|
|
|
|
{
|
|
|
|
QString devString;
|
|
|
|
#ifdef GIT_SHA1
|
|
|
|
const QString githubPrefix(QLatin1String(
|
2013-07-04 21:59:40 +04:00
|
|
|
"https://github.com/owncloud/mirall/commit/"));
|
2013-01-23 16:45:31 +04:00
|
|
|
const QString gitSha1(QLatin1String(GIT_SHA1));
|
|
|
|
devString = QCoreApplication::translate("ownCloudTheme::about()",
|
|
|
|
"<p><small>Built from Git revision <a href=\"%1\">%2</a>"
|
2013-07-04 21:59:40 +04:00
|
|
|
" on %3, %4 using OCsync %5 and Qt %6.</small><p>")
|
2013-01-23 16:45:31 +04:00
|
|
|
.arg(githubPrefix+gitSha1).arg(gitSha1.left(6))
|
|
|
|
.arg(__DATE__).arg(__TIME__)
|
|
|
|
.arg(MIRALL_STRINGIFY(LIBCSYNC_VERSION))
|
|
|
|
.arg(QT_VERSION_STR);
|
|
|
|
#endif
|
|
|
|
return QCoreApplication::translate("ownCloudTheme::about()",
|
2013-07-04 21:59:40 +04:00
|
|
|
"<p>Version %2. "
|
|
|
|
"For more information visit <a href=\"%3\">%4</a></p>"
|
2013-08-08 19:51:44 +04:00
|
|
|
"<p><small>By Klaas Freitag, Daniel Molkentin, Jan-Christoph Borchardt, ownCloud Inc.<br>"
|
2013-08-08 17:51:36 +04:00
|
|
|
"Based on Mirall by Duncan Mac-Vicar P.</small></p>"
|
2013-01-23 16:45:31 +04:00
|
|
|
"%7"
|
|
|
|
)
|
|
|
|
.arg(MIRALL_STRINGIFY(MIRALL_VERSION))
|
|
|
|
.arg("http://" MIRALL_STRINGIFY(APPLICATION_DOMAIN))
|
|
|
|
.arg(MIRALL_STRINGIFY(APPLICATION_DOMAIN))
|
|
|
|
.arg(devString);
|
2013-07-04 21:59:40 +04:00
|
|
|
|
2013-01-23 16:45:31 +04:00
|
|
|
}
|
|
|
|
|
2012-05-02 17:50:01 +04:00
|
|
|
QIcon ownCloudTheme::trayFolderIcon( const QString& ) const
|
|
|
|
{
|
2012-12-20 19:31:24 +04:00
|
|
|
QPixmap fallback = qApp->style()->standardPixmap(QStyle::SP_FileDialogNewFolder);
|
|
|
|
return QIcon::fromTheme("folder", fallback);
|
2012-05-02 17:50:01 +04:00
|
|
|
}
|
|
|
|
|
2012-07-18 19:29:06 +04:00
|
|
|
QIcon ownCloudTheme::folderDisabledIcon( ) const
|
2012-05-02 17:50:01 +04:00
|
|
|
{
|
|
|
|
// Fixme: Do we really want the dialog-canel from theme here?
|
2013-01-16 17:40:06 +04:00
|
|
|
return themeIcon( QLatin1String("state-pause") );
|
2012-05-02 17:50:01 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
QIcon ownCloudTheme::applicationIcon( ) const
|
|
|
|
{
|
2013-05-28 16:42:41 +04:00
|
|
|
return themeIcon( QLatin1String("owncloud-icon") );
|
2012-05-02 17:50:01 +04:00
|
|
|
}
|
|
|
|
|
2013-06-13 14:56:20 +04:00
|
|
|
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();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-04 21:59:40 +04:00
|
|
|
QString ownCloudTheme::helpUrl() const
|
|
|
|
{
|
|
|
|
return QString::fromLatin1("http://doc.owncloud.org/desktop/%1.%2/").arg(MIRALL_VERSION_MAJOR).arg(MIRALL_VERSION_MINOR);
|
|
|
|
}
|
|
|
|
|
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");
|
|
|
|
}
|
|
|
|
|
2013-07-04 21:59:40 +04:00
|
|
|
|
|
|
|
|
2012-02-16 13:42:44 +04:00
|
|
|
}
|
|
|
|
|