mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-23 18:32:50 +00:00
142 lines
3.5 KiB
C++
142 lines
3.5 KiB
C++
/* This file is part of the KDE project
|
|
Copyright ( C ) 2003 Nadeem Hasan <nhasan@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; see the file COPYING. If not, write to
|
|
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
#include "MultiMeterSettings.h"
|
|
#include "ui_MultiMeterSettingsWidget.h"
|
|
|
|
#include <klocale.h>
|
|
|
|
MultiMeterSettings::MultiMeterSettings( QWidget *parent, const char *name )
|
|
: KDialog( parent )
|
|
{
|
|
setObjectName( name );
|
|
setModal( true );
|
|
setCaption( i18nc( "Multimeter is a sensor display that mimics 'digital multimeter' aparatus", "Multimeter Settings" ) );
|
|
setButtons( Ok|Cancel );
|
|
|
|
QWidget *mainWidget = new QWidget( this );
|
|
|
|
m_settingsWidget = new Ui_MultiMeterSettingsWidget;
|
|
m_settingsWidget->setupUi( mainWidget );
|
|
|
|
m_settingsWidget->m_title->setFocus();
|
|
|
|
setMainWidget( mainWidget );
|
|
}
|
|
|
|
MultiMeterSettings::~MultiMeterSettings()
|
|
{
|
|
delete m_settingsWidget;
|
|
}
|
|
|
|
QString MultiMeterSettings::title()
|
|
{
|
|
return m_settingsWidget->m_title->text();
|
|
}
|
|
|
|
bool MultiMeterSettings::showUnit()
|
|
{
|
|
return m_settingsWidget->m_showUnit->isChecked();
|
|
}
|
|
|
|
bool MultiMeterSettings::lowerLimitActive()
|
|
{
|
|
return m_settingsWidget->m_lowerLimitActive->isChecked();
|
|
}
|
|
|
|
bool MultiMeterSettings::upperLimitActive()
|
|
{
|
|
return m_settingsWidget->m_upperLimitActive->isChecked();
|
|
}
|
|
|
|
double MultiMeterSettings::lowerLimit()
|
|
{
|
|
return m_settingsWidget->m_lowerLimit->value();
|
|
}
|
|
|
|
double MultiMeterSettings::upperLimit()
|
|
{
|
|
return m_settingsWidget->m_upperLimit->value();
|
|
}
|
|
|
|
QColor MultiMeterSettings::normalDigitColor()
|
|
{
|
|
return m_settingsWidget->m_normalDigitColor->color();
|
|
}
|
|
|
|
QColor MultiMeterSettings::alarmDigitColor()
|
|
{
|
|
return m_settingsWidget->m_alarmDigitColor->color();
|
|
}
|
|
|
|
QColor MultiMeterSettings::meterBackgroundColor()
|
|
{
|
|
return m_settingsWidget->m_backgroundColor->color();
|
|
}
|
|
|
|
void MultiMeterSettings::setTitle( const QString &title )
|
|
{
|
|
m_settingsWidget->m_title->setText( title );
|
|
}
|
|
|
|
void MultiMeterSettings::setShowUnit( bool b )
|
|
{
|
|
m_settingsWidget->m_showUnit->setChecked( b );
|
|
}
|
|
|
|
void MultiMeterSettings::setLowerLimitActive( bool b )
|
|
{
|
|
m_settingsWidget->m_lowerLimitActive->setChecked( b );
|
|
}
|
|
|
|
void MultiMeterSettings::setUpperLimitActive( bool b )
|
|
{
|
|
m_settingsWidget->m_upperLimitActive->setChecked( b );
|
|
}
|
|
|
|
void MultiMeterSettings::setLowerLimit( double limit )
|
|
{
|
|
m_settingsWidget->m_lowerLimit->setValue( limit );
|
|
}
|
|
|
|
void MultiMeterSettings::setUpperLimit( double limit )
|
|
{
|
|
m_settingsWidget->m_upperLimit->setValue( limit );
|
|
}
|
|
|
|
void MultiMeterSettings::setNormalDigitColor( const QColor &c )
|
|
{
|
|
m_settingsWidget->m_normalDigitColor->setColor( c );
|
|
}
|
|
|
|
void MultiMeterSettings::setAlarmDigitColor( const QColor &c )
|
|
{
|
|
m_settingsWidget->m_alarmDigitColor->setColor( c );
|
|
}
|
|
|
|
void MultiMeterSettings::setMeterBackgroundColor( const QColor &c )
|
|
{
|
|
m_settingsWidget->m_backgroundColor->setColor( c );
|
|
}
|
|
|
|
#include "moc_MultiMeterSettings.cpp"
|
|
|
|
/* vim: et sw=2 ts=2
|
|
*/
|
|
|