* maximal -> maximum
[kdenetwork.git] / kget / ui / groupsettingsdialog.h
blob54221ce6f87bb9bf3986c9cb3f6ee46d23c2e310
1 /* This file is part of the KDE project
3 Copyright (C) 2008 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 */
10 #ifndef GROUPSETTINGSDIALOG_H
11 #define GROUPSETTINGSDIALOG_H
13 #include "ui_groupsettingsdialog.h"
15 #include <KDialog>
17 class TransferGroupHandler;
19 class GroupSettingsDialog : public KDialog
21 Q_OBJECT
22 public:
23 GroupSettingsDialog(QWidget *parent, TransferGroupHandler *group);
24 ~GroupSettingsDialog();
26 private slots:
27 void save();
29 private:
30 TransferGroupHandler* m_group;
32 QCheckBox *m_downloadCheck;
33 QCheckBox *m_uploadCheck;
34 QSpinBox *m_downloadBox;
35 QSpinBox *m_uploadBox;
36 KUrlRequester *m_defaultFolderRequester;
39 #endif