2 * Copyright (C) Jacek Konieczy <jajcus@zeus.polsl.gliwice.pl>
3 * extra HTTP configuration
7 #ifndef __KHTTPOPTDLG_H
8 #define __KHTTPOPTDLG_H
10 #include <QtGui/QLabel>
11 #include <QtGui/QLineEdit>
12 #include <QtGui/QCheckBox>
17 #include <ksharedconfig.h>
20 * Dialog for configuring HTTP Options like charset and language negotiation
21 * and assuming that file got from HTTP is HTML if no Content-Type is given
23 class KHTTPOptions
: public KCModule
27 KHTTPOptions(KSharedConfig::Ptr config
, const QString
&group
, const KComponentData
&componentData
, QWidget
*parent
);
31 virtual void defaults();
35 KSharedConfig::Ptr m_pConfig
;
38 // Acceptable languages "LANG" - locale selected languages
40 QLineEdit
*le_languages
;
42 // Acceptable charsets "CHARSET" - locale selected charset
44 QLineEdit
*le_charsets
;
46 QString defaultCharsets
;
53 #endif // __KHTTPOPTDLG_H