nextcloud-desktop/src/mirall/owncloudtheme.cpp

45 lines
1 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.
*/
#include <QString>
#include <QDebug>
2012-02-23 14:44:44 +04:00
#include <QPixmap>
#include "owncloudtheme.h"
namespace Mirall {
ownCloudTheme::ownCloudTheme()
{
2012-02-28 18:13:59 +04:00
// qDebug() << " ** running ownCloud theme!";
}
QString ownCloudTheme::appName() const
{
return QString::fromLocal8Bit("ownCloud");
}
QString ownCloudTheme::configFileName() const
{
return QString::fromLocal8Bit("owncloud.cfg");
}
2012-02-23 14:44:44 +04:00
QPixmap ownCloudTheme::splashScreen() const
{
return QPixmap(":/mirall/resources/owncloud_splash.png");
}
}