~ubuntu-branches/ubuntu/utopic/kde-workspace/utopic-proposed

« back to all changes in this revision

Viewing changes to ksysguard/gui/SensorDisplayLib/SensorLoggerSettings.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Michał Zając
  • Date: 2011-07-09 08:31:15 UTC
  • Revision ID: james.westby@ubuntu.com-20110709083115-ohyxn6z93mily9fc
Tags: upstream-4.6.90
Import upstream version 4.6.90

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* This file is part of the KDE project
 
2
   Copyright ( C ) 2003 Nadeem Hasan <nhasan@kde.org>
 
3
 
 
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.
 
8
 
 
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.
 
13
 
 
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.
 
18
*/
 
19
 
 
20
#include "SensorLoggerSettings.h"
 
21
#include "ui_SensorLoggerSettingsWidget.h"
 
22
 
 
23
#include <klocale.h>
 
24
 
 
25
SensorLoggerSettings::SensorLoggerSettings( QWidget *parent, const char *name )
 
26
    : KDialog( parent )
 
27
{
 
28
  setObjectName( name );
 
29
  setModal( true );
 
30
  setCaption( i18n( "Sensor Logger Settings" ) );
 
31
  setButtons( Ok|Cancel );
 
32
 
 
33
  QWidget *widget = new QWidget( this );
 
34
 
 
35
  m_settingsWidget = new Ui_SensorLoggerSettingsWidget;
 
36
  m_settingsWidget->setupUi( widget );
 
37
 
 
38
  setMainWidget( widget );
 
39
}
 
40
 
 
41
SensorLoggerSettings::~SensorLoggerSettings()
 
42
{
 
43
  delete m_settingsWidget;
 
44
}
 
45
 
 
46
QString SensorLoggerSettings::title()
 
47
{
 
48
  return m_settingsWidget->m_title->text();
 
49
}
 
50
 
 
51
QColor SensorLoggerSettings::foregroundColor()
 
52
{
 
53
  return m_settingsWidget->m_foregroundColor->color();
 
54
}
 
55
 
 
56
QColor SensorLoggerSettings::backgroundColor()
 
57
{
 
58
  return m_settingsWidget->m_backgroundColor->color();
 
59
}
 
60
 
 
61
QColor SensorLoggerSettings::alarmColor()
 
62
{
 
63
  return m_settingsWidget->m_alarmColor->color();
 
64
}
 
65
 
 
66
void SensorLoggerSettings::setTitle( const QString &title )
 
67
{
 
68
  m_settingsWidget->m_title->setText( title );
 
69
}
 
70
 
 
71
void SensorLoggerSettings::setBackgroundColor( const QColor &c )
 
72
{
 
73
  m_settingsWidget->m_backgroundColor->setColor( c );
 
74
}
 
75
 
 
76
void SensorLoggerSettings::setForegroundColor( const QColor &c )
 
77
{
 
78
  m_settingsWidget->m_foregroundColor->setColor( c );
 
79
}
 
80
 
 
81
void SensorLoggerSettings::setAlarmColor( const QColor &c )
 
82
{
 
83
  m_settingsWidget->m_alarmColor->setColor( c );
 
84
}
 
85
 
 
86
#include "SensorLoggerSettings.moc"
 
87
 
 
88
/* vim: et sw=2 ts=2
 
89
*/
 
90