blob: d4e17af562b1884d7790d7905a24dd8df0165a9c (
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
45
46
47
48
49
|
// khttpoptdlg.h - extra HTTP configuration by Jacek Konieczy <jajcus@zeus.polsl.gliwice.pl>
#ifndef __KHTTPOPTDLG_H
#define __KHTTPOPTDLG_H
#include <tqlabel.h>
#include <tqlineedit.h>
#include <tqcheckbox.h>
#include <tqstring.h>
#include <tdecmodule.h>
#include <tdeconfig.h>
/**
* Dialog for configuring HTTP Options like charset and language negotiation
* and assuming that file got from HTTP is HTML if no Content-Type is given
*/
class KHTTPOptions : public TDECModule
{
Q_OBJECT
public:
KHTTPOptions(TDEConfig *config, TQString group, TQWidget *parent = 0L, const char *name = 0L);
virtual void load();
virtual void load( bool useDefaults );
virtual void save();
virtual void defaults();
private:
TDEConfig *m_pConfig;
TQString m_groupname;
// Acceptable languages "LANG" - locale selected languages
TQLabel *lb_languages;
TQLineEdit *le_languages;
// Acceptable charsets "CHARSET" - locale selected charset
TQLabel *lb_charsets;
TQLineEdit *le_charsets;
TQString defaultCharsets;
private slots:
void slotChanged();
};
#endif // __KHTTPOPTDLG_H
|