blob: 36e3650b4b7887bf31dd7a84411e00461858c7a3 (
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 <qlabel.h>
#include <qlineedit.h>
#include <qcheckbox.h>
#include <qstring.h>
#include <kcmodule.h>
#include <kconfig.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 KCModule
{
Q_OBJECT
public:
KHTTPOptions(KConfig *config, QString group, QWidget *parent = 0L, const char *name = 0L);
virtual void load();
virtual void load( bool useDefaults );
virtual void save();
virtual void defaults();
private:
KConfig *m_pConfig;
QString m_groupname;
// Acceptable languages "LANG" - locale selected languages
QLabel *lb_languages;
QLineEdit *le_languages;
// Acceptable charsets "CHARSET" - locale selected charset
QLabel *lb_charsets;
QLineEdit *le_charsets;
QString defaultCharsets;
private slots:
void slotChanged();
};
#endif // __KHTTPOPTDLG_H
|