summaryrefslogtreecommitdiffstats
path: root/kcontrol/konqhtml/khttpoptdlg.h
blob: 3342f434b16d2875dd78bf4ca8b8e3103627f11e (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 <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 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