kaddressbook
ds_appearance.h00001
00002
00003
00004
00005
00006
00007
00008
00009 #ifndef APPEARANCEPAGE_H
00010 #define APPEARANCEPAGE_H
00011
00012 #include <qvariant.h>
00013 #include <qwidget.h>
00014
00015 class QVBoxLayout;
00016 class QHBoxLayout;
00017 class QGridLayout;
00018 class QSpacerItem;
00019 class QLabel;
00020 class QGroupBox;
00021 class QCheckBox;
00022 class QFrame;
00023 class KIntSpinBox;
00024 class KFontCombo;
00025 class KColorButton;
00026
00027 class AppearancePage : public QWidget
00028 {
00029 Q_OBJECT
00030
00031 public:
00032 AppearancePage( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 );
00033 ~AppearancePage();
00034
00035 QLabel* labelHeader;
00036 QGroupBox* gbFont;
00037 QCheckBox* cbStandardFonts;
00038 QFrame* frameFonts;
00039 QLabel* labelDetailsFont;
00040 QLabel* labelDetailsFontSize;
00041 QLabel* labelBodyFont;
00042 QLabel* labelFixedFontSize;
00043 QLabel* labelFixed;
00044 KIntSpinBox* kisbDetailsFontSize;
00045 KIntSpinBox* kisbFixedFontSize;
00046 QLabel* labelBodyFontSize;
00047 KFontCombo* kfcBodyFont;
00048 KFontCombo* kfcDetailsFont;
00049 KFontCombo* kfcFixedFont;
00050 QLabel* labelHeaderFont;
00051 KFontCombo* kfcHeaderFont;
00052 KFontCombo* kfcHeadlineFont;
00053 QLabel* labelHeaderFontSize;
00054 QLabel* labelHeaderFontSize_2;
00055 KIntSpinBox* kisbBodyFontSize;
00056 QLabel* labelHeadlines;
00057 KIntSpinBox* kisbHeaderFontSize;
00058 KIntSpinBox* kisbHeadlineFontSize;
00059 QGroupBox* gbHeadline;
00060 QCheckBox* cbBackgroundColor;
00061 QFrame* frameBGColor;
00062 KColorButton* kcbHeaderBGColor;
00063 QLabel* tlBackgroundColor;
00064 QLabel* tlHeaderColor;
00065 KColorButton* kcbHeaderTextColor;
00066
00067 protected:
00068 QVBoxLayout* AppearancePageLayout;
00069 QSpacerItem* Spacer4;
00070 QVBoxLayout* gbFontLayout;
00071 QGridLayout* frameFontsLayout;
00072 QVBoxLayout* gbHeadlineLayout;
00073 QGridLayout* frameBGColorLayout;
00074 QSpacerItem* Spacer3;
00075
00076 protected slots:
00077 virtual void languageChange();
00078
00079 };
00080
00081 #endif // APPEARANCEPAGE_H
|