akregator/src
settings_appearance.h00001
00002
00003
00004
00005
00006
00007
00008
00009 #ifndef SETTINGSAPPEARANCE_H
00010 #define SETTINGSAPPEARANCE_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 QGroupBox;
00020 class QLabel;
00021 class QSlider;
00022 class KIntSpinBox;
00023 class KFontCombo;
00024 class QCheckBox;
00025
00026 namespace Akregator {
00027 class SettingsAppearance : public QWidget
00028 {
00029 Q_OBJECT
00030
00031 public:
00032 SettingsAppearance( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 );
00033 ~SettingsAppearance();
00034
00035 QGroupBox* groupBox3;
00036 QLabel* lbl_MinimumFontSize;
00037 QSlider* slider_minimumFontSize;
00038 KIntSpinBox* kcfg_MinimumFontSize;
00039 QLabel* lbl_MediumFontSize;
00040 QSlider* slider_mediumFontSize;
00041 KIntSpinBox* kcfg_MediumFontSize;
00042 QGroupBox* FontsGroupBox;
00043 QLabel* textLabel1;
00044 KFontCombo* kcfg_StandardFont;
00045 QLabel* textLabel2_2;
00046 KFontCombo* kcfg_FixedFont;
00047 QLabel* textLabel3;
00048 KFontCombo* kcfg_SerifFont;
00049 QLabel* textLabel4;
00050 KFontCombo* kcfg_SansSerifFont;
00051 QCheckBox* kcfg_UnderlineLinks;
00052
00053 protected:
00054 QVBoxLayout* SettingsAppearanceLayout;
00055 QSpacerItem* spacer1;
00056 QGridLayout* groupBox3Layout;
00057 QGridLayout* FontsGroupBoxLayout;
00058
00059 protected slots:
00060 virtual void languageChange();
00061
00062 };
00063 }
00064
00065 #endif // SETTINGSAPPEARANCE_H
|