akregator/src
settings_advancedbase.h00001
00002
00003
00004
00005
00006
00007
00008
00009 #ifndef SETTINGSADVANCED_H
00010 #define SETTINGSADVANCED_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 KComboBox;
00022 class QPushButton;
00023 class QSpinBox;
00024 class QCheckBox;
00025
00026 namespace Akregator {
00027 class SettingsAdvancedBase : public QWidget
00028 {
00029 Q_OBJECT
00030
00031 public:
00032 SettingsAdvancedBase( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 );
00033 ~SettingsAdvancedBase();
00034
00035 QGroupBox* groupBox3_3_2;
00036 QLabel* textLabel1;
00037 KComboBox* cbBackend;
00038 QPushButton* pbBackendConfigure;
00039 QGroupBox* groupBox3_3;
00040 QSpinBox* kcfg_MarkReadDelay;
00041 QCheckBox* kcfg_ResetQuickFilterOnNodeChange;
00042 QCheckBox* kcfg_UseMarkReadDelay;
00043
00044 protected:
00045 QGridLayout* SettingsAdvancedLayout;
00046 QSpacerItem* spacer2;
00047 QHBoxLayout* groupBox3_3_2Layout;
00048 QGridLayout* groupBox3_3Layout;
00049 QSpacerItem* spacer4;
00050
00051 protected slots:
00052 virtual void languageChange();
00053
00054 };
00055 }
00056
00057 #endif // SETTINGSADVANCED_H
|