blob: ff8a7ffcfd21d2db7bf25c1a075401eaebd3b94d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
#ifndef KIOPREFERENCES_H
#define KIOPREFERENCES_H
#include <kcmodule.h>
class QLabel;
class QVGroupBox;
class QCheckBox;
class QVBoxLayout;
class QHBoxLayout;
class QGridLayout;
class KIntNumInput;
class KIOPreferences : public KCModule
{
Q_OBJECT
public:
KIOPreferences( TQWidget* parent = 0);
~KIOPreferences();
void load();
void save();
void defaults();
TQString quickHelp() const;
protected slots:
void configChanged() { emit changed(true); }
private:
TQVGroupBox* gb_Ftp;
TQVGroupBox* gb_Timeout;
TQCheckBox* cb_ftpEnablePasv;
TQCheckBox* cb_ftpMarkPartial;
KIntNumInput* sb_socketRead;
KIntNumInput* sb_proxyConnect;
KIntNumInput* sb_serverConnect;
KIntNumInput* sb_serverResponse;
};
#endif // KIOPREFERENCES_H
|