akregator/src
settings_general.h00001
00002
00003
00004
00005
00006
00007
00008
00009 #ifndef SETTINGSGENERAL_H
00010 #define SETTINGSGENERAL_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 QCheckBox;
00021 class QLabel;
00022 class QSpinBox;
00023
00024 namespace Akregator {
00025 class SettingsGeneral : public QWidget
00026 {
00027 Q_OBJECT
00028
00029 public:
00030 SettingsGeneral( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 );
00031 ~SettingsGeneral();
00032
00033 QGroupBox* groupBox3_2;
00034 QCheckBox* kcfg_UseIntervalFetch;
00035 QCheckBox* kcfg_UseNotifications;
00036 QCheckBox* kcfg_ShowTrayIcon;
00037 QLabel* textLabel1;
00038 QSpinBox* kcfg_AutoFetchInterval;
00039 QGroupBox* groupBox3;
00040 QCheckBox* kcfg_MarkAllFeedsReadOnStartup;
00041 QCheckBox* kcfg_FetchOnStartup;
00042 QGroupBox* groupBox3_3;
00043 QCheckBox* kcfg_UseHTMLCache;
00044
00045 protected:
00046 QGridLayout* SettingsGeneralLayout;
00047 QSpacerItem* spacer1;
00048 QGridLayout* groupBox3_2Layout;
00049 QGridLayout* groupBox3Layout;
00050 QGridLayout* groupBox3_3Layout;
00051
00052 protected slots:
00053 virtual void languageChange();
00054
00055 };
00056 }
00057
00058 #endif // SETTINGSGENERAL_H
|