mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
c84f34e916
-moved some Settings from General to Appearance ( Language, Style, stylesheet -added checkbox for Start RetroShare with System start in GeneralDialog -moved Rsharesettings to Preferences folder to find bether -added new RSettings source -clean uped some old code stuff in MainWindow which is not more needed -replaced in MainWindow PreferencesWindows open function with new one. git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@684 b45a01b8-16f6-495d-af2f-9b41ad6348cc
135 lines
4.0 KiB
C++
135 lines
4.0 KiB
C++
/****************************************************************
|
|
* RShare is distributed under the following license:
|
|
*
|
|
* Copyright (C) 2006, crypton
|
|
*
|
|
* 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.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
* Boston, MA 02110-1301, USA.
|
|
****************************************************************/
|
|
|
|
|
|
#include <rshare.h>
|
|
#include "AppearanceDialog.h"
|
|
|
|
|
|
/** Constructor */
|
|
AppearanceDialog::AppearanceDialog(QWidget *parent)
|
|
: ConfigPage(parent)
|
|
{
|
|
/* Invoke the Qt Designer generated object setup routine */
|
|
ui.setupUi(this);
|
|
|
|
/* Create RshareSettings object */
|
|
_settings = new RshareSettings();
|
|
|
|
connect(ui.styleSheetCombo, SIGNAL(clicked()), this, SLOT(loadStyleSheet()));
|
|
|
|
/* Populate combo boxes */
|
|
foreach (QString code, LanguageSupport::languageCodes()) {
|
|
ui.cmboLanguage->addItem(QIcon(":/images/flags/" + code + ".png"),
|
|
LanguageSupport::languageName(code),
|
|
code);
|
|
}
|
|
foreach (QString style, QStyleFactory::keys()) {
|
|
ui.cmboStyle->addItem(style, style.toLower());
|
|
}
|
|
|
|
ui.styleSheetCombo->setCurrentIndex(ui.styleSheetCombo->findText("Default"));
|
|
//loadStyleSheet("Default");
|
|
loadqss();
|
|
|
|
|
|
/* Hide platform specific features */
|
|
#ifdef Q_WS_WIN
|
|
|
|
#endif
|
|
}
|
|
|
|
/** Saves the changes on this page */
|
|
bool
|
|
AppearanceDialog::save(QString &errmsg)
|
|
{
|
|
Q_UNUSED(errmsg);
|
|
QString languageCode =
|
|
LanguageSupport::languageCode(ui.cmboLanguage->currentText());
|
|
|
|
_settings->setLanguageCode(languageCode);
|
|
_settings->setInterfaceStyle(ui.cmboStyle->currentText());
|
|
_settings->setSheetName(ui.styleSheetCombo->currentText());
|
|
|
|
/* Set to new style */
|
|
Rshare::setStyle(ui.cmboStyle->currentText());
|
|
return true;
|
|
}
|
|
|
|
|
|
|
|
/** Loads the settings for this page */
|
|
void
|
|
AppearanceDialog::load()
|
|
{
|
|
|
|
int index = ui.cmboLanguage->findData(_settings->getLanguageCode());
|
|
ui.cmboLanguage->setCurrentIndex(index);
|
|
|
|
index = ui.cmboStyle->findData(Rshare::style().toLower());
|
|
ui.cmboStyle->setCurrentIndex(index);
|
|
|
|
ui.styleSheetCombo->setCurrentIndex(ui.styleSheetCombo->findText(_settings->getSheetName()));
|
|
|
|
/** load saved internal styleSheet **/
|
|
//QFile file(":/qss/" + (_settings->getSheetName().toLower()) + ".qss");
|
|
|
|
/** load saved extern Stylesheets **/
|
|
QFile file(QApplication::applicationDirPath() + "/qss/" + (_settings->getSheetName().toLower()) + ".qss");
|
|
|
|
file.open(QFile::ReadOnly);
|
|
QString styleSheet = QLatin1String(file.readAll());
|
|
qApp->setStyleSheet(styleSheet);
|
|
|
|
}
|
|
|
|
void AppearanceDialog::on_styleSheetCombo_activated(const QString &sheetName)
|
|
{
|
|
loadStyleSheet(sheetName);
|
|
}
|
|
|
|
void AppearanceDialog::loadStyleSheet(const QString &sheetName)
|
|
{
|
|
/** internal Stylesheets **/
|
|
//QFile file(":/qss/" + sheetName.toLower() + ".qss");
|
|
|
|
/** extern Stylesheets **/
|
|
QFile file(QApplication::applicationDirPath() + "/qss/" + sheetName.toLower() + ".qss");
|
|
|
|
file.open(QFile::ReadOnly);
|
|
QString styleSheet = QLatin1String(file.readAll());
|
|
|
|
|
|
qApp->setStyleSheet(styleSheet);
|
|
|
|
}
|
|
|
|
void AppearanceDialog::loadqss()
|
|
{
|
|
|
|
QFileInfoList slist = QDir(QApplication::applicationDirPath() + "/qss/").entryInfoList();
|
|
foreach(QFileInfo st, slist)
|
|
{
|
|
if(st.fileName() != "." && st.fileName() != ".." && st.isFile())
|
|
ui.styleSheetCombo->addItem(st.fileName().remove(".qss"));
|
|
}
|
|
|
|
} |