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 "ListViewSettings.h"
21 #include "ui_ListViewSettingsWidget.h"
25 ListViewSettings::ListViewSettings( QWidget
*parent
, const char *name
)
28 setObjectName( name
);
30 setCaption( i18n( "List View Settings" ) );
31 setButtons( Ok
| Apply
| Cancel
);
32 showButtonSeparator( true );
34 QWidget
*widget
= new QWidget( this );
35 m_settingsWidget
= new Ui_ListViewSettingsWidget
;
36 m_settingsWidget
->setupUi( widget
);
38 setMainWidget( widget
);
41 ListViewSettings::~ListViewSettings()
43 delete m_settingsWidget
;
46 QString
ListViewSettings::title() const
48 return m_settingsWidget
->m_title
->text();
51 QColor
ListViewSettings::textColor() const
53 return m_settingsWidget
->m_textColor
->color();
56 QColor
ListViewSettings::backgroundColor() const
58 return m_settingsWidget
->m_backgroundColor
->color();
61 QColor
ListViewSettings::gridColor() const
63 return m_settingsWidget
->m_gridColor
->color();
66 void ListViewSettings::setTitle( const QString
&title
)
68 m_settingsWidget
->m_title
->setText( title
);
71 void ListViewSettings::setBackgroundColor( const QColor
&c
)
73 m_settingsWidget
->m_backgroundColor
->setColor( c
);
76 void ListViewSettings::setTextColor( const QColor
&c
)
78 m_settingsWidget
->m_textColor
->setColor( c
);
81 void ListViewSettings::setGridColor( const QColor
&c
)
83 m_settingsWidget
->m_gridColor
->setColor( c
);
86 #include "ListViewSettings.moc"