You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
78 lines
2.6 KiB
78 lines
2.6 KiB
/* BEGIN_COMMON_COPYRIGHT_HEADER
|
|
* (c)LGPL2+
|
|
*
|
|
* LXDE-Qt - a lightweight, Qt based, desktop toolset
|
|
* http://lxqt.org
|
|
*
|
|
* Copyright: 2015 LXQt team
|
|
* Authors:
|
|
*
|
|
* This program or 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 "spacerconfiguration.h"
|
|
#include "ui_spacerconfiguration.h"
|
|
|
|
|
|
//Note: strings can't actually be translated here (in static initialization time)
|
|
// the QT_TR_NOOP here is just for qt translate tools to get the strings for translation
|
|
const QStringList SpacerConfiguration::msTypes = {
|
|
QLatin1String(QT_TR_NOOP("lined"))
|
|
, QLatin1String(QT_TR_NOOP("dotted"))
|
|
, QLatin1String(QT_TR_NOOP("invisible"))
|
|
};
|
|
|
|
SpacerConfiguration::SpacerConfiguration(QSettings *settings, QWidget *parent)
|
|
: QDialog(parent)
|
|
, ui(new Ui::SpacerConfiguration)
|
|
, mSettings(settings)
|
|
{
|
|
setAttribute(Qt::WA_DeleteOnClose);
|
|
setObjectName("SpacerConfigurationWindow");
|
|
ui->setupUi(this);
|
|
|
|
//Note: translation is needed here in runtime (translator is attached already)
|
|
for (auto const & type : msTypes)
|
|
ui->typeCB->addItem(tr(type.toStdString().c_str()), type);
|
|
|
|
loadSettings();
|
|
|
|
connect(ui->sizeSB, static_cast<void (QSpinBox::*)(int)>(&QSpinBox::valueChanged), this, &SpacerConfiguration::sizeChanged);
|
|
connect(ui->typeCB, static_cast<void (QComboBox::*)(int index)>(&QComboBox::currentIndexChanged), this, &SpacerConfiguration::typeChanged);
|
|
}
|
|
|
|
SpacerConfiguration::~SpacerConfiguration()
|
|
{
|
|
delete ui;
|
|
}
|
|
|
|
void SpacerConfiguration::loadSettings()
|
|
{
|
|
ui->sizeSB->setValue(mSettings->value("size", 8).toInt());
|
|
ui->typeCB->setCurrentIndex(ui->typeCB->findData(mSettings->value("spaceType", msTypes[0]).toString()));
|
|
}
|
|
|
|
void SpacerConfiguration::sizeChanged(int value)
|
|
{
|
|
mSettings->setValue("size", value);
|
|
}
|
|
|
|
void SpacerConfiguration::typeChanged(int index)
|
|
{
|
|
mSettings->setValue("spaceType", ui->typeCB->itemData(index, Qt::UserRole));
|
|
}
|