* fix a lot of compiler warnings
[kdenetwork.git] / kget / transfer-plugins / bittorrent / btsettingswidget.h
blobaa8ab746d1331056a2505ae62a6079fd76e92850
1 /* This file is part of the KDE project
3 Copyright (C) 2007 Lukas Appelhans <l.appelhans@gmx.de>
5 This program is free software; you can redistribute it and/or
6 modify it under the terms of the GNU General Public
7 License as published by the Free Software Foundation; either
8 version 2 of the License, or (at your option) any later version.
9 */
11 #ifndef BTSETTINGSWIDGET_H
12 #define BTSETTINGSWIDGET_H
14 #include <ui_btsettingswidget.h>
16 #include <QWidget>
18 class KDialog;
20 class BTSettingsWidget : public QWidget, public Ui::BTSettingsWidget
22 Q_OBJECT
23 public:
24 BTSettingsWidget(KDialog * parent);
26 private slots:
27 void dialogAccepted();
28 void setDefault();
29 void enableButtonApply();
31 private:
32 KDialog * m_parent;
35 #endif