mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-04 23:25:32 -04:00

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@269 b45a01b8-16f6-495d-af2f-9b41ad6348cc
86 lines
2.6 KiB
C++
86 lines
2.6 KiB
C++
/****************************************************************
|
|
* This file is distributed under the following license:
|
|
*
|
|
* Copyright (c) 2006-2007, crypton
|
|
* Copyright (c) 2006, Matt Edman, Justin Hipple
|
|
*
|
|
* 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 "GeneralPage.h"
|
|
#include "rshare.h"
|
|
|
|
GeneralPage::GeneralPage(QWidget * parent, Qt::WFlags flags)
|
|
: QWidget(parent, flags)
|
|
{
|
|
ui.setupUi(this);
|
|
setAttribute(Qt::WA_QuitOnClose, false);
|
|
setWindowTitle(windowTitle() + QLatin1String(" - Gloster 2"));
|
|
|
|
//GConfig config;
|
|
//config.loadWidgetInformation(this);
|
|
|
|
/* Create RshareSettings object */
|
|
_settings = new RshareSettings();
|
|
|
|
/* 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());
|
|
}
|
|
}
|
|
|
|
void
|
|
GeneralPage::closeEvent (QCloseEvent * event)
|
|
{
|
|
//GConfig config;
|
|
//config.saveWidgetInformation(this);
|
|
|
|
QWidget::closeEvent(event);
|
|
}
|
|
|
|
|
|
/** Saves the changes on this page */
|
|
bool
|
|
GeneralPage::save(QString &errmsg)
|
|
{
|
|
Q_UNUSED(errmsg);
|
|
QString languageCode =
|
|
LanguageSupport::languageCode(ui.cmboLanguage->currentText());
|
|
|
|
_settings->setLanguageCode(languageCode);
|
|
_settings->setInterfaceStyle(ui.cmboStyle->currentText());
|
|
|
|
/* Set to new style */
|
|
Rshare::setStyle(ui.cmboStyle->currentText());
|
|
return true;
|
|
}
|
|
|
|
/** Loads the settings for this page */
|
|
void
|
|
GeneralPage::load()
|
|
{
|
|
int index = ui.cmboLanguage->findData(_settings->getLanguageCode());
|
|
ui.cmboLanguage->setCurrentIndex(index);
|
|
|
|
index = ui.cmboStyle->findData(Rshare::style().toLower());
|
|
ui.cmboStyle->setCurrentIndex(index);
|
|
}
|
|
|