summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/kdejava/KIntValidator.cpp
blob: 629400553bf48f79bf52850b570964a66d793fc2 (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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
//Auto-generated by kalyptus. DO NOT EDIT.
#include <tqvalidator.h>
#include <tqstring.h>
#include <knumvalidator.h>

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

class KIntValidatorJBridge : public KIntValidator
{
public:
	KIntValidatorJBridge(TQWidget* arg1,int arg2,const char* arg3) : KIntValidator(arg1,arg2,arg3) {};
	KIntValidatorJBridge(TQWidget* arg1,int arg2) : KIntValidator(arg1,arg2) {};
	KIntValidatorJBridge(TQWidget* arg1) : KIntValidator(arg1) {};
	KIntValidatorJBridge(int arg1,int arg2,TQWidget* arg3,int arg4,const char* arg5) : KIntValidator(arg1,arg2,arg3,arg4,arg5) {};
	KIntValidatorJBridge(int arg1,int arg2,TQWidget* arg3,int arg4) : KIntValidator(arg1,arg2,arg3,arg4) {};
	KIntValidatorJBridge(int arg1,int arg2,TQWidget* arg3) : KIntValidator(arg1,arg2,arg3) {};
	~KIntValidatorJBridge() {QtSupport::qtKeyDeleted(this);}
	void removeChild(TQObject* arg1) {
		if (!QtSupport::eventDelegate(this,"removeChild",(void*)arg1,"org.kde.qt.TQObject")) {
			TQObject::removeChild(arg1);
		}
		return;
	}
	void customEvent(TQCustomEvent* arg1) {
		if (!QtSupport::eventDelegate(this,"customEvent",(void*)arg1,"org.kde.qt.TQCustomEvent")) {
			TQObject::customEvent(arg1);
		}
		return;
	}
	void timerEvent(TQTimerEvent* arg1) {
		if (!QtSupport::eventDelegate(this,"timerEvent",(void*)arg1,"org.kde.qt.TQTimerEvent")) {
			TQObject::timerEvent(arg1);
		}
		return;
	}
	void childEvent(TQChildEvent* arg1) {
		if (!QtSupport::eventDelegate(this,"childEvent",(void*)arg1,"org.kde.qt.TQChildEvent")) {
			TQObject::childEvent(arg1);
		}
		return;
	}
	void insertChild(TQObject* arg1) {
		if (!QtSupport::eventDelegate(this,"insertChild",(void*)arg1,"org.kde.qt.TQObject")) {
			TQObject::insertChild(arg1);
		}
		return;
	}
	bool eventFilter(TQObject* object,TQEvent* event) {
		if (!QtSupport::eventFilterDelegate(this,"org.kde.koala.KIntValidator",object,event)) {
			return TQObject::eventFilter(object,event);
		} else {
			return TRUE;
		}
	}
};

JNIEXPORT jint JNICALL
Java_org_kde_koala_KIntValidator_base(JNIEnv* env, jobject obj)
{
	jint xret = (jint) ((KIntValidator*) QtSupport::getQt(env, obj))->base();
	return xret;
}

JNIEXPORT jint JNICALL
Java_org_kde_koala_KIntValidator_bottom(JNIEnv* env, jobject obj)
{
	jint xret = (jint) ((KIntValidator*) QtSupport::getQt(env, obj))->bottom();
	return xret;
}

JNIEXPORT void JNICALL
Java_org_kde_koala_KIntValidator_dispose(JNIEnv* env, jobject obj)
{
	Java_org_kde_koala_KIntValidator_finalize(env, obj);
	return;
}

JNIEXPORT void JNICALL
Java_org_kde_koala_KIntValidator_finalize(JNIEnv* env, jobject obj)
{
	if (QtSupport::allocatedInJavaWorld(env, obj) && ((KIntValidator*)QtSupport::getQt(env, obj))->parent() == 0) {
		delete (KIntValidator*)QtSupport::getQt(env, obj);
		QtSupport::setQt(env, obj, 0);
	}
	return;
}

JNIEXPORT void JNICALL
Java_org_kde_koala_KIntValidator_fixup(JNIEnv* env, jobject obj, jobject arg1)
{
static TQString* _qstring_arg1 = 0;
	((KIntValidator*) QtSupport::getQt(env, obj))->fixup((TQString&)*(TQString*) QtSupport::toQStringFromStringBuffer(env, arg1, &_qstring_arg1));
	QtSupport::fromQStringToStringBuffer(env, _qstring_arg1, arg1);
	return;
}

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

JNIEXPORT void JNICALL
Java_org_kde_koala_KIntValidator_newKIntValidator__IILorg_kde_qt_QWidget_2(JNIEnv* env, jobject obj, jint bottom, jint top, jobject parent)
{
	if (QtSupport::getQt(env, obj) == 0) {
		QtSupport::setQt(env, obj, new KIntValidatorJBridge((int) bottom, (int) top, (TQWidget*) QtSupport::getQt(env, parent)));
		QtSupport::setObjectForQtKey(env, obj, QtSupport::getQt(env, obj));
	}
	return;
}

JNIEXPORT void JNICALL
Java_org_kde_koala_KIntValidator_newKIntValidator__IILorg_kde_qt_QWidget_2I(JNIEnv* env, jobject obj, jint bottom, jint top, jobject parent, jint base)
{
	if (QtSupport::getQt(env, obj) == 0) {
		QtSupport::setQt(env, obj, new KIntValidatorJBridge((int) bottom, (int) top, (TQWidget*) QtSupport::getQt(env, parent), (int) base));
		QtSupport::setObjectForQtKey(env, obj, QtSupport::getQt(env, obj));
	}
	return;
}

JNIEXPORT void JNICALL
Java_org_kde_koala_KIntValidator_newKIntValidator__IILorg_kde_qt_QWidget_2ILjava_lang_String_2(JNIEnv* env, jobject obj, jint bottom, jint top, jobject parent, jint base, jstring name)
{
static TQCString* _qstring_name = 0;
	if (QtSupport::getQt(env, obj) == 0) {
		QtSupport::setQt(env, obj, new KIntValidatorJBridge((int) bottom, (int) top, (TQWidget*) QtSupport::getQt(env, parent), (int) base, (const char*) QtSupport::toCharString(env, name, &_qstring_name)));
		QtSupport::setObjectForQtKey(env, obj, QtSupport::getQt(env, obj));
	}
	return;
}

JNIEXPORT void JNICALL
Java_org_kde_koala_KIntValidator_newKIntValidator__Lorg_kde_qt_QWidget_2(JNIEnv* env, jobject obj, jobject parent)
{
	if (QtSupport::getQt(env, obj) == 0) {
		QtSupport::setQt(env, obj, new KIntValidatorJBridge((TQWidget*) QtSupport::getQt(env, parent)));
		QtSupport::setObjectForQtKey(env, obj, QtSupport::getQt(env, obj));
	}
	return;
}

JNIEXPORT void JNICALL
Java_org_kde_koala_KIntValidator_newKIntValidator__Lorg_kde_qt_QWidget_2I(JNIEnv* env, jobject obj, jobject parent, jint base)
{
	if (QtSupport::getQt(env, obj) == 0) {
		QtSupport::setQt(env, obj, new KIntValidatorJBridge((TQWidget*) QtSupport::getQt(env, parent), (int) base));
		QtSupport::setObjectForQtKey(env, obj, QtSupport::getQt(env, obj));
	}
	return;
}

JNIEXPORT void JNICALL
Java_org_kde_koala_KIntValidator_newKIntValidator__Lorg_kde_qt_QWidget_2ILjava_lang_String_2(JNIEnv* env, jobject obj, jobject parent, jint base, jstring name)
{
static TQCString* _qstring_name = 0;
	if (QtSupport::getQt(env, obj) == 0) {
		QtSupport::setQt(env, obj, new KIntValidatorJBridge((TQWidget*) QtSupport::getQt(env, parent), (int) base, (const char*) QtSupport::toCharString(env, name, &_qstring_name)));
		QtSupport::setObjectForQtKey(env, obj, QtSupport::getQt(env, obj));
	}
	return;
}

JNIEXPORT void JNICALL
Java_org_kde_koala_KIntValidator_setBase(JNIEnv* env, jobject obj, jint base)
{
	((KIntValidator*) QtSupport::getQt(env, obj))->setBase((int) base);
	return;
}

JNIEXPORT void JNICALL
Java_org_kde_koala_KIntValidator_setRange(JNIEnv* env, jobject obj, jint bottom, jint top)
{
	((KIntValidator*) QtSupport::getQt(env, obj))->setRange((int) bottom, (int) top);
	return;
}

JNIEXPORT jint JNICALL
Java_org_kde_koala_KIntValidator_top(JNIEnv* env, jobject obj)
{
	jint xret = (jint) ((KIntValidator*) QtSupport::getQt(env, obj))->top();
	return xret;
}

JNIEXPORT jint JNICALL
Java_org_kde_koala_KIntValidator_validate(JNIEnv* env, jobject obj, jobject arg1, jintArray arg2)
{
static TQString* _qstring_arg1 = 0;
	int* _int_arg2 = QtSupport::toIntPtr(env, arg2);
	jint xret = (jint) ((KIntValidator*) QtSupport::getQt(env, obj))->validate((TQString&)*(TQString*) QtSupport::toQStringFromStringBuffer(env, arg1, &_qstring_arg1),  (int&) *_int_arg2);
	QtSupport::fromQStringToStringBuffer(env, _qstring_arg1, arg1);
	env->SetIntArrayRegion(arg2, 0, 1, (jint *) _int_arg2);
	return xret;
}