mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-25 03:12:51 +00:00
75 lines
2.7 KiB
C++
75 lines
2.7 KiB
C++
/***************************************************************************
|
|
* Copyright (C) 2010 by Dario Freddi <drf@kde.org> *
|
|
* *
|
|
* 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 "dimdisplayconfig.h"
|
|
|
|
#include <QHBoxLayout>
|
|
#include <QLabel>
|
|
|
|
#include <KIntSpinBox>
|
|
#include <KPluginFactory>
|
|
#include <KLocalizedString>
|
|
|
|
K_PLUGIN_FACTORY(PowerDevilDimDisplayConfigFactory, registerPlugin<PowerDevil::BundledActions::DimDisplayConfig>(); )
|
|
K_EXPORT_PLUGIN(PowerDevilDimDisplayConfigFactory("powerdevildimdisplayaction_config"))
|
|
|
|
namespace PowerDevil {
|
|
namespace BundledActions {
|
|
|
|
DimDisplayConfig::DimDisplayConfig(QObject *parent, const QVariantList& )
|
|
: ActionConfig(parent)
|
|
{
|
|
|
|
}
|
|
|
|
DimDisplayConfig::~DimDisplayConfig()
|
|
{
|
|
|
|
}
|
|
|
|
void DimDisplayConfig::save()
|
|
{
|
|
configGroup().writeEntry("idleTime", m_spinBox->value() * 60 * 1000);
|
|
}
|
|
|
|
void DimDisplayConfig::load()
|
|
{
|
|
configGroup().config()->reparseConfiguration();
|
|
m_spinBox->setValue((configGroup().readEntry<int>("idleTime", 600000) / 60) / 1000);
|
|
}
|
|
|
|
QList< QPair< QString, QWidget* > > DimDisplayConfig::buildUi()
|
|
{
|
|
QList< QPair< QString, QWidget* > > retlist;
|
|
m_spinBox = new KIntSpinBox(0, 180, 1, 0, 0);
|
|
m_spinBox->setMaximumWidth(150);
|
|
m_spinBox->setMinimum(1);
|
|
m_spinBox->setMaximum(360);
|
|
m_spinBox->setSuffix(i18n(" min"));
|
|
retlist.append(qMakePair< QString, QWidget* >(i18n("After"), m_spinBox));
|
|
|
|
connect(m_spinBox, SIGNAL(valueChanged(int)), this, SLOT(setChanged()));
|
|
|
|
return retlist;
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
#include "dimdisplayconfig.moc"
|