Fix stopping of TransferKIO-Plugin
[kdenetwork.git] / kget / conf / preferencesdialog.h
blob77a4d4d5a5a35c21afc8edcc930adf39775b2c69
1 /* This file is part of the KDE project
2 Copyright (C) 2004 - 2007 KGet Developers <kget@kde.org>
4 This program is free software; you can redistribute it and/or
5 modify it under the terms of the GNU General Public
6 License as published by the Free Software Foundation; either
7 version 2 of the License, or (at your option) any later version.
8 */
10 #ifndef PREFERENCESDIALOG_H
11 #define PREFERENCESDIALOG_H
13 #include <kconfigdialog.h>
15 class QWidget;
16 class KConfigSkeleton;
17 class KTabWidget;
19 class PreferencesDialog : public KConfigDialog
21 Q_OBJECT
22 public:
23 PreferencesDialog( QWidget * parent, KConfigSkeleton * config );
24 KTabWidget * pluginsWidget(){return plugins;}
26 private slots:
27 void disableButtonApply();
29 private:
30 QWidget * appearance;
31 QWidget * groups;
32 QWidget * network;
33 QWidget * directories;
34 QWidget * advanced;
35 KTabWidget * plugins;
38 #endif