1 /* This file is part of the KDE project
2 Copyright ( C ) 2003 Nadeem Hasan <nhasan@kde.org>
4 This program is free software; you can redistribute it and/or
5 modify it under the terms of the GNU General Public
6 License as published by the Free Software Foundation; either
7 version 2 of the License, or (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; see the file COPYING. If not, write to
16 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17 Boston, MA 02110-1301, USA.
20 #include "SensorLoggerSettings.h"
21 #include "ui_SensorLoggerSettingsWidget.h"
25 SensorLoggerSettings::SensorLoggerSettings( QWidget
*parent
, const char *name
)
28 setObjectName( name
);
30 setCaption( i18n( "Sensor Logger Settings" ) );
31 setButtons( Ok
|Cancel
);
32 showButtonSeparator( true );
34 QWidget
*widget
= new QWidget( this );
36 m_settingsWidget
= new Ui_SensorLoggerSettingsWidget
;
37 m_settingsWidget
->setupUi( widget
);
39 setMainWidget( widget
);
42 SensorLoggerSettings::~SensorLoggerSettings()
44 delete m_settingsWidget
;
47 QString
SensorLoggerSettings::title()
49 return m_settingsWidget
->m_title
->text();
52 QColor
SensorLoggerSettings::foregroundColor()
54 return m_settingsWidget
->m_foregroundColor
->color();
57 QColor
SensorLoggerSettings::backgroundColor()
59 return m_settingsWidget
->m_backgroundColor
->color();
62 QColor
SensorLoggerSettings::alarmColor()
64 return m_settingsWidget
->m_alarmColor
->color();
67 void SensorLoggerSettings::setTitle( const QString
&title
)
69 m_settingsWidget
->m_title
->setText( title
);
72 void SensorLoggerSettings::setBackgroundColor( const QColor
&c
)
74 m_settingsWidget
->m_backgroundColor
->setColor( c
);
77 void SensorLoggerSettings::setForegroundColor( const QColor
&c
)
79 m_settingsWidget
->m_foregroundColor
->setColor( c
);
82 void SensorLoggerSettings::setAlarmColor( const QColor
&c
)
84 m_settingsWidget
->m_alarmColor
->setColor( c
);
87 #include "SensorLoggerSettings.moc"