akregator/src
settings_browser.h00001
00002
00003
00004
00005
00006
00007
00008
00009 #ifndef SETTINGSBROWSER_H
00010 #define SETTINGSBROWSER_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 QButtonGroup;
00020 class QRadioButton;
00021 class QLineEdit;
00022 class QCheckBox;
00023 class QComboBox;
00024 class QLabel;
00025
00026 namespace Akregator {
00027 class SettingsBrowser : public QWidget
00028 {
00029 Q_OBJECT
00030
00031 public:
00032 SettingsBrowser( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 );
00033 ~SettingsBrowser();
00034
00035 QButtonGroup* buttonGroup1;
00036 QRadioButton* kcfg_ExternalBrowserUseKdeDefault;
00037 QRadioButton* kcfg_ExternalBrowserUseCustomCommand;
00038 QLineEdit* kcfg_ExternalBrowserCustomCommand;
00039 QCheckBox* kcfg_CloseButtonOnTabs;
00040 QComboBox* kcfg_LMBBehaviour;
00041 QLabel* textLabel1;
00042 QLabel* textLabel1_3;
00043 QComboBox* kcfg_MMBBehaviour;
00044
00045 protected:
00046 QGridLayout* SettingsBrowserLayout;
00047 QSpacerItem* spacer1;
00048 QGridLayout* buttonGroup1Layout;
00049 QGridLayout* layout2;
00050
00051 protected slots:
00052 virtual void languageChange();
00053
00054 };
00055 }
00056
00057 #endif // SETTINGSBROWSER_H
|