* major layout fixes (size, stacked widget, ...)
[kdenetwork.git] / kget / conf / preferencesdialog.h
bloba66743ba0d51f090afc8cb5f2207e3ea58b4c822
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 KTabWidget * plugins;
33 #endif