You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
803 B
45 lines
803 B
#ifndef KIOPREFERENCES_H
|
|
#define KIOPREFERENCES_H
|
|
|
|
#include <tdecmodule.h>
|
|
|
|
class TQLabel;
|
|
class TQVGroupBox;
|
|
class TQCheckBox;
|
|
class TQVBoxLayout;
|
|
class TQHBoxLayout;
|
|
class TQGridLayout;
|
|
|
|
class KIntNumInput;
|
|
|
|
class KIOPreferences : public TDECModule
|
|
{
|
|
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
|