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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
|
//-----------------------------------------------------------------------------
//
// HTML Options
//
// (c) Martin R. Jones 1996
//
// Port to KControl
// (c) Torben Weis 1998
//
// Redesign and cleanup
// (c) Daniel Molkentin 2000
//
//-----------------------------------------------------------------------------
#ifndef __JAVAOPTS_H__
#define __JAVAOPTS_H__
#include <kcmodule.h>
#include "domainlistview.h"
#include "policies.h"
class KColorButton;
class KConfig;
class KListView;
class KURLRequester;
class KIntNumInput;
class TQCheckBox;
class TQComboBox;
class TQLineEdit;
class TQListViewItem;
class TQRadioButton;
class KJavaOptions;
/** policies with java-specific constructor
*/
class JavaPolicies : public Policies {
public:
/**
* constructor
* @param config configuration to initialize this instance from
* @param group config group to use if this instance tqcontains the global
* policies (global == true)
* @param global true if this instance tqcontains the global policy settings,
* false if this instance tqcontains policies specific for a domain.
* @param domain name of the domain this instance is used to configure the
* policies for (case insensitive, ignored if global == true)
*/
JavaPolicies(KConfig* config, const TQString &group, bool global,
const TQString &domain = TQString::null);
/** empty constructur to make TQMap happy
* don't use for constructing a policies instance.
* @internal
*/
JavaPolicies();
virtual ~JavaPolicies();
};
/** Java-specific enhancements to the domain list view
*/
class JavaDomainListView : public DomainListView {
Q_OBJECT
public:
JavaDomainListView(KConfig *config,const TQString &group,KJavaOptions *opt,
TQWidget *parent,const char *name = 0);
virtual ~JavaDomainListView();
/** remnant for importing pre KDE 3.2 settings
*/
void updateDomainListLegacy(const TQStringList &domainConfig);
protected:
virtual JavaPolicies *createPolicies();
virtual JavaPolicies *copyPolicies(Policies *pol);
virtual void setupPolicyDlg(PushButton trigger,PolicyDialog &pDlg,
Policies *copy);
private:
TQString group;
KJavaOptions *options;
};
class KJavaOptions : public KCModule
{
Q_OBJECT
public:
KJavaOptions( KConfig* config, TQString group, TQWidget* parent = 0, const char* name = 0 );
virtual void load();
virtual void load( bool useDefaults );
virtual void save();
virtual void defaults();
bool _removeJavaScriptDomainAdvice;
private slots:
void slotChanged();
void toggleJavaControls();
private:
KConfig* m_pConfig;
TQString m_groupname;
JavaPolicies java_global_policies;
TQCheckBox* enableJavaGloballyCB;
TQCheckBox* javaSecurityManagerCB;
TQCheckBox* useKioCB;
TQCheckBox* enableShutdownCB;
KIntNumInput* serverTimeoutSB;
TQLineEdit* addArgED;
KURLRequester* pathED;
bool _removeJavaDomainSettings;
JavaDomainListView *domainSpecific;
friend class JavaDomainListView;
};
#endif // __HTML_OPTIONS_H__
|