kchart

kchartHeaderFooterConfigPage.h

00001 /* This file is part of the KDE project
00002    Copyright (C) 2001,2002,2003,2004 Laurent Montel <montel@kde.org>
00003 
00004    This library is free software; you can redistribute it and/or
00005    modify it under the terms of the GNU Library General Public
00006    License as published by the Free Software Foundation; either
00007    version 2 of the License, or (at your option) any later version.
00008 
00009    This library is distributed in the hope that it will be useful,
00010    but WITHOUT ANY WARRANTY; without even the implied warranty of
00011    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00012    Library General Public License for more details.
00013 
00014    You should have received a copy of the GNU Library General Public License
00015    along with this library; see the file COPYING.LIB.  If not, write to
00016    the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
00017  * Boston, MA 02110-1301, USA.
00018 */
00019 
00020 #ifndef __KCHARTHEADERFOOTERCONFIGPAGE_H__
00021 #define __KCHARTHEADERFOOTERCONFIGPAGE_H__
00022 
00023 #include <qwidget.h>
00024 #include <kcolorbutton.h>
00025 
00026 class QLineEdit;
00027 class QPushButton;
00028 
00029 namespace KChart
00030 {
00031 
00032 class KChartParams;
00033 
00034 class KChartHeaderFooterConfigPage : public QWidget
00035 {
00036     Q_OBJECT
00037 
00038 public:
00039     KChartHeaderFooterConfigPage( KChartParams* params, QWidget* parent );
00040     void init();
00041     void apply();
00042 protected slots:
00043     void changeTitleFont();
00044     void changeSubtitleFont();
00045     void changeFooterFont();
00046 private:
00047     KChartParams* _params;
00048 
00049     QLineEdit *titleEdit;
00050     KColorButton *titleColorButton;
00051     QPushButton *titleFontButton;
00052     QFont titleFont;
00053     QButton::ToggleState titleFontIsRelative;
00054     
00055     QLineEdit *subtitleEdit;
00056     KColorButton *subtitleColorButton;  
00057     QPushButton *subtitleFontButton;
00058     QFont subtitleFont;
00059     QButton::ToggleState subtitleFontIsRelative;
00060 
00061     QLineEdit *footerEdit;
00062     KColorButton *footerColorButton;
00063     QPushButton *footerFontButton;
00064     QFont footerFont;
00065     QButton::ToggleState footerFontIsRelative;
00066 };
00067 
00068 }  //KChart namespace
00069 
00070 #endif
KDE Home | KDE Accessibility Home | Description of Access Keys