~ubuntu-branches/ubuntu/wily/kdebase-workspace/wily

« back to all changes in this revision

Viewing changes to ksysguard/gui/SensorDisplayLib/ListViewSettings.cc

  • Committer: Bazaar Package Importer
  • Author(s): Christian Mangold
  • Date: 2011-04-03 16:54:55 UTC
  • mfrom: (1.1.55 upstream)
  • Revision ID: james.westby@ubuntu.com-20110403165455-8tnwxt82p21p15hh
Tags: 4:4.6.2a-0ubuntu1
* New upstream release
  - Update kde-sc-dev-latest version
  - Update kdebase-workspace-wallpapers.install,
    kde-window-manager.install and not-installed

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 "ListViewSettings.h"
21
 
#include "ui_ListViewSettingsWidget.h"
22
 
 
23
 
#include <klocale.h>
24
 
 
25
 
ListViewSettings::ListViewSettings( QWidget *parent, const char *name )
26
 
    : KDialog( parent )
27
 
{
28
 
  setObjectName( name );
29
 
  setModal( true );
30
 
  setCaption( i18n( "List View Settings" ) );
31
 
  setButtons( Ok | Apply | Cancel );
32
 
 
33
 
  QWidget *widget = new QWidget( this );
34
 
  m_settingsWidget = new Ui_ListViewSettingsWidget;
35
 
  m_settingsWidget->setupUi( widget );
36
 
 
37
 
  setMainWidget( widget );
38
 
}
39
 
 
40
 
ListViewSettings::~ListViewSettings()
41
 
{
42
 
  delete m_settingsWidget;
43
 
}
44
 
 
45
 
QString ListViewSettings::title() const
46
 
{
47
 
  return m_settingsWidget->m_title->text();
48
 
}
49
 
 
50
 
QColor ListViewSettings::textColor() const
51
 
{
52
 
  return m_settingsWidget->m_textColor->color();
53
 
}
54
 
 
55
 
QColor ListViewSettings::backgroundColor() const
56
 
{
57
 
  return m_settingsWidget->m_backgroundColor->color();
58
 
}
59
 
 
60
 
QColor ListViewSettings::gridColor() const
61
 
{
62
 
  return m_settingsWidget->m_gridColor->color();
63
 
}
64
 
 
65
 
void ListViewSettings::setTitle( const QString &title )
66
 
{
67
 
  m_settingsWidget->m_title->setText( title );
68
 
}
69
 
 
70
 
void ListViewSettings::setBackgroundColor( const QColor &c )
71
 
{
72
 
  m_settingsWidget->m_backgroundColor->setColor( c );
73
 
}
74
 
 
75
 
void ListViewSettings::setTextColor( const QColor &c )
76
 
{
77
 
  m_settingsWidget->m_textColor->setColor( c );
78
 
}
79
 
 
80
 
void ListViewSettings::setGridColor( const QColor &c )
81
 
{
82
 
  m_settingsWidget->m_gridColor->setColor( c );
83
 
}
84
 
 
85
 
#include "ListViewSettings.moc"
86
 
 
87
 
/* vim: et sw=2 ts=2
88
 
*/
89