summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/kdejava/KServiceTypeProfile.cpp
blob: 763e95493972b75be3c8cfadffbd208a3e13e0c0 (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
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
//Auto-generated by kalyptus. DO NOT EDIT.
#include <kservice.h>
#include <kuserprofile.h>
#include <tqstring.h>

#include <qtjava/QtSupport.h>
#include <kdejava/KDESupport.h>
#include <kdejava/KServiceTypeProfile.h>

class KServiceTypeProfileJBridge : public KServiceTypeProfile
{
public:
	KServiceTypeProfileJBridge(const TQString& arg1,const TQString& arg2) : KServiceTypeProfile(arg1,arg2) {};
	KServiceTypeProfileJBridge(const TQString& arg1) : KServiceTypeProfile(arg1) {};
	void protected_addService(const TQString& arg1,int arg2,bool arg3) {
		KServiceTypeProfile::addService(arg1,arg2,arg3);
		return;
	}
	void protected_addService(const TQString& arg1,int arg2) {
		KServiceTypeProfile::addService(arg1,arg2);
		return;
	}
	void protected_addService(const TQString& arg1) {
		KServiceTypeProfile::addService(arg1);
		return;
	}
	~KServiceTypeProfileJBridge() {QtSupport::qtKeyDeleted(this);}
};

JNIEXPORT void JNICALL
Java_org_kde_koala_KServiceTypeProfile_addService__Ljava_lang_String_2(JNIEnv* env, jobject obj, jstring _service)
{
static TQString* _qstring__service = 0;
	((KServiceTypeProfileJBridge*) QtSupport::getQt(env, obj))->protected_addService((const TQString&)*(TQString*) QtSupport::toQString(env, _service, &_qstring__service));
	return;
}

JNIEXPORT void JNICALL
Java_org_kde_koala_KServiceTypeProfile_addService__Ljava_lang_String_2I(JNIEnv* env, jobject obj, jstring _service, jint _preference)
{
static TQString* _qstring__service = 0;
	((KServiceTypeProfileJBridge*) QtSupport::getQt(env, obj))->protected_addService((const TQString&)*(TQString*) QtSupport::toQString(env, _service, &_qstring__service), (int) _preference);
	return;
}

JNIEXPORT void JNICALL
Java_org_kde_koala_KServiceTypeProfile_addService__Ljava_lang_String_2IZ(JNIEnv* env, jobject obj, jstring _service, jint _preference, jboolean _allow_as_default)
{
static TQString* _qstring__service = 0;
	((KServiceTypeProfileJBridge*) QtSupport::getQt(env, obj))->protected_addService((const TQString&)*(TQString*) QtSupport::toQString(env, _service, &_qstring__service), (int) _preference, (bool) _allow_as_default);
	return;
}

JNIEXPORT void JNICALL
Java_org_kde_koala_KServiceTypeProfile_clear(JNIEnv* env, jclass cls)
{
	(void) cls;
	(void) env;
	KServiceTypeProfileJBridge::clear();
	return;
}

JNIEXPORT jboolean JNICALL
Java_org_kde_koala_KServiceTypeProfile_configurationMode(JNIEnv* env, jclass cls)
{
	(void) cls;
	(void) env;
	jboolean xret = (jboolean) KServiceTypeProfileJBridge::configurationMode();
	return xret;
}

JNIEXPORT void JNICALL
Java_org_kde_koala_KServiceTypeProfile_dispose(JNIEnv* env, jobject obj)
{
	Java_org_kde_koala_KServiceTypeProfile_finalize(env, obj);
	return;
}

JNIEXPORT void JNICALL
Java_org_kde_koala_KServiceTypeProfile_finalize(JNIEnv* env, jobject obj)
{
	if (QtSupport::allocatedInJavaWorld(env, obj)) {
		delete (KServiceTypeProfile*)QtSupport::getQt(env, obj);
		QtSupport::setQt(env, obj, 0);
	}
	return;
}

JNIEXPORT jboolean JNICALL
Java_org_kde_koala_KServiceTypeProfile_isDisposed(JNIEnv* env, jobject obj)
{
	return (QtSupport::getQt(env, obj) == 0);
}

JNIEXPORT void JNICALL
Java_org_kde_koala_KServiceTypeProfile_newKServiceTypeProfile__Ljava_lang_String_2(JNIEnv* env, jobject obj, jstring serviceType)
{
static TQString* _qstring_serviceType = 0;
	if (QtSupport::getQt(env, obj) == 0) {
		QtSupport::setQt(env, obj, new KServiceTypeProfileJBridge((const TQString&)*(TQString*) QtSupport::toQString(env, serviceType, &_qstring_serviceType)));
		QtSupport::setObjectForQtKey(env, obj, QtSupport::getQt(env, obj));
	}
	return;
}

JNIEXPORT void JNICALL
Java_org_kde_koala_KServiceTypeProfile_newKServiceTypeProfile__Ljava_lang_String_2Ljava_lang_String_2(JNIEnv* env, jobject obj, jstring serviceType, jstring genericServiceType)
{
static TQString* _qstring_serviceType = 0;
static TQString* _qstring_genericServiceType = 0;
	if (QtSupport::getQt(env, obj) == 0) {
		QtSupport::setQt(env, obj, new KServiceTypeProfileJBridge((const TQString&)*(TQString*) QtSupport::toQString(env, serviceType, &_qstring_serviceType), (const TQString&)*(TQString*) QtSupport::toQString(env, genericServiceType, &_qstring_genericServiceType)));
		QtSupport::setObjectForQtKey(env, obj, QtSupport::getQt(env, obj));
	}
	return;
}

JNIEXPORT jobject JNICALL
Java_org_kde_koala_KServiceTypeProfile_serviceTypeProfile__Ljava_lang_String_2(JNIEnv* env, jclass cls, jstring servicetype)
{
	(void) cls;
static TQString* _qstring_servicetype = 0;
	jobject xret = QtSupport::objectForQtKey(env, (void*)KServiceTypeProfileJBridge::serviceTypeProfile((const TQString&)*(TQString*) QtSupport::toQString(env, servicetype, &_qstring_servicetype)), "org.kde.koala.KServiceTypeProfile");
	return xret;
}

JNIEXPORT jobject JNICALL
Java_org_kde_koala_KServiceTypeProfile_serviceTypeProfile__Ljava_lang_String_2Ljava_lang_String_2(JNIEnv* env, jclass cls, jstring servicetype, jstring genericServiceType)
{
	(void) cls;
static TQString* _qstring_servicetype = 0;
static TQString* _qstring_genericServiceType = 0;
	jobject xret = QtSupport::objectForQtKey(env, (void*)KServiceTypeProfileJBridge::serviceTypeProfile((const TQString&)*(TQString*) QtSupport::toQString(env, servicetype, &_qstring_servicetype), (const TQString&)*(TQString*) QtSupport::toQString(env, genericServiceType, &_qstring_genericServiceType)), "org.kde.koala.KServiceTypeProfile");
	return xret;
}

JNIEXPORT void JNICALL
Java_org_kde_koala_KServiceTypeProfile_setConfigurationMode(JNIEnv* env, jclass cls)
{
	(void) cls;
	(void) env;
	KServiceTypeProfileJBridge::setConfigurationMode();
	return;
}