/* BEGIN_COMMON_COPYRIGHT_HEADER * (c)LGPL2+ * * LXQt - a lightweight, Qt based, desktop toolset * http://razor-qt.org * * Copyright (C) 2012 Alec Moskvin * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * This library 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 * Lesser General Public License for more details. * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * * END_COMMON_COPYRIGHT_HEADER */ #include "lxqtconfigdialog.h" #include "ui_lxqtconfigdialog.h" #include #include using namespace LXQt; ConfigDialog::ConfigDialog(const QString& title, Settings* settings, QWidget* parent) : QDialog(parent), mSettings(settings), mCache(new SettingsCache(settings)), ui(new Ui::ConfigDialog) { ui->setupUi(this); setWindowTitle(title); connect(ui->buttons, SIGNAL(clicked(QAbstractButton*)), SLOT(dialogButtonsAction(QAbstractButton*))); ui->moduleList->setVisible(false); connect(Settings::globalSettings(), SIGNAL(settingsChanged()), this, SLOT(updateIcons())); foreach(QPushButton* button, ui->buttons->findChildren()) button->setAutoDefault(false); } void ConfigDialog::setButtons(QDialogButtonBox::StandardButtons buttons) { ui->buttons->setStandardButtons(buttons); foreach(QPushButton* button, ui->buttons->findChildren()) button->setAutoDefault(false); } void ConfigDialog::addPage(QWidget* page, const QString& name, const QString& iconName) { addPage(page, name, QStringList() << iconName); } void ConfigDialog::addPage(QWidget* page, const QString& name, const QStringList& iconNames) { Q_ASSERT(page); if (!page) { return; } /* We set the layout margin to 0. In the default configuration, one page * only, it aligns buttons with the page. In multi-page it saves a little * bit of space, without clutter. */ if (page->layout()) { page->layout()->setMargin(0); } QStringList icons = QStringList(iconNames) << "application-x-executable"; new QListWidgetItem(XdgIcon::fromTheme(icons), name, ui->moduleList); mIcons.append(icons); ui->stackedWidget->addWidget(page); if(ui->stackedWidget->count() > 1) { ui->moduleList->setVisible(true); ui->moduleList->setCurrentRow(0); mMaxSize = QSize(qMax(page->geometry().width() + ui->moduleList->geometry().width(), mMaxSize.width()), qMax(page->geometry().height() + ui->buttons->geometry().height(), mMaxSize.height())); } else { mMaxSize = page->geometry().size(); } resize(mMaxSize); } void ConfigDialog::showPage(QWidget* page) { int index = ui->stackedWidget->indexOf(page); if (index < 0) return; ui->stackedWidget->setCurrentIndex(index); ui->moduleList->setCurrentRow(index); } void ConfigDialog::closeEvent(QCloseEvent* event) { emit save(); mSettings->sync(); } void ConfigDialog::dialogButtonsAction(QAbstractButton* button) { QDialogButtonBox::StandardButton standardButton = ui->buttons->standardButton(button); emit clicked(standardButton); if (standardButton == QDialogButtonBox::Reset) { mCache->loadToSettings(); emit reset(); } else if(standardButton == QDialogButtonBox::Close) { close(); } } void ConfigDialog::updateIcons() { for (int ix = 0; ix < mIcons.size(); ix++) ui->moduleList->item(ix)->setIcon(XdgIcon::fromTheme(mIcons.at(ix))); update(); } ConfigDialog::~ConfigDialog() { delete ui; delete mCache; }