nextcloud-desktop/src/mirall/theme.cpp
Klaas Freitag 248a0cfed8 - removed the sitecopy files and last references
- Fix status dialog:
 * display local and remote folder names
 * fixed status icon
 * fixed sizing when font size changes
 * fixed enable/disable buttons
- moved second path to folder base class
- added remote folder role to status dellegate
2012-03-26 13:20:15 +02:00

100 lines
3 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.
*/
#include "theme.h"
#include "version.h"
#include <QtCore>
#include <QtGui>
namespace Mirall {
Theme::Theme()
:QObject()
{
}
QIcon Theme::folderIcon( const QString& backend, int size ) const
{
QString name;
if( backend == QString::fromLatin1("owncloud")) name = QString( "mirall-%1.png" ).arg(size);
if( backend == QString::fromLatin1("unison" )) name = QString( "folder-%1.png" ).arg(size);
if( backend == QString::fromLatin1("csync" )) name = QString( "folder-remote-%1.png" ).arg(size);
if( backend.isEmpty() || backend == QString::fromLatin1("none") )
name = QString("folder-grey-%1.png").arg(size);
return QIcon( QString( ":/mirall/resources/%1").arg(name) );
}
QIcon Theme::syncStateIcon( SyncResult::Status status, int ) const
{
// FIXME: Mind the size!
QString statusIcon;
qDebug() << "Status: " << status;
if( status == SyncResult::NotYetStarted ) {
statusIcon = "dialog-close";
} else if( status == SyncResult::SyncRunning ) {
statusIcon = "view-refresh";
} else if( status == SyncResult::Success ) {
statusIcon = "dialog-ok";
} else if( status == SyncResult::Error ) {
statusIcon = "dialog-close";
} else if( status == SyncResult::Disabled ) {
statusIcon = "dialog-cancel";
} else if( status == SyncResult::SetupError ) {
statusIcon = "dialog-cancel";
} else {
statusIcon = "dialog-close";
}
return QIcon::fromTheme( statusIcon, QIcon( QString( ":/mirall/resources/%1").arg(statusIcon) ) );
}
QString Theme::statusHeaderText( SyncResult::Status status ) const
{
QString resultStr;
if( status == SyncResult::NotYetStarted ) {
resultStr = tr("Sync has not yet started");
} else if( status == SyncResult::SyncRunning ) {
resultStr = tr("Sync is running");
} else if( status == SyncResult::Success ) {
resultStr = tr("Sync Success");
} else if( status == SyncResult::Error ) {
resultStr = tr("Sync Error");
} else if( status == SyncResult::Disabled ) {
resultStr = tr("Sync Disabled");
} else if( status == SyncResult::SetupError ) {
resultStr = tr( "Setup Error" );
} else {
resultStr = tr("Status undefined");
}
return resultStr;
}
QIcon Theme::applicationIcon( int size ) const
{
return QIcon(QString(":mirall/resources/mirall-%1").arg(size));
}
QString Theme::version() const
{
return QString::fromLocal8Bit( MIRALL_STRINGIFY( MIRALL_VERSION ) );
}
}