You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdebindings/tdejava/koala/tdejava/KCalendarSystemFactory.cpp

85 lines
2.9 KiB

//Auto-generated by kalyptus. DO NOT EDIT.
#include <kcalendarsystemfactory.h>
#include <tqstring.h>
#include <tqstringlist.h>
#include <qtjava/QtSupport.h>
#include <tdejava/TDESupport.h>
#include <tdejava/KCalendarSystemFactory.h>
class KCalendarSystemFactoryJBridge : public KCalendarSystemFactory
{
public:
KCalendarSystemFactoryJBridge() : KCalendarSystemFactory() {};
~KCalendarSystemFactoryJBridge() {QtSupport::qtKeyDeleted(this);}
};
JNIEXPORT jobject JNICALL
Java_org_trinitydesktop_koala_KCalendarSystemFactory_calendarSystems(JNIEnv* env, jclass cls)
{
TQStringList _qlist;
(void) cls;
_qlist = KCalendarSystemFactoryJBridge::calendarSystems();
return (jobject) QtSupport::arrayWithTQStringList(env, (TQStringList*) &_qlist);
}
JNIEXPORT jobject JNICALL
Java_org_trinitydesktop_koala_KCalendarSystemFactory_create__(JNIEnv* env, jclass cls)
{
(void) cls;
jobject xret = QtSupport::objectForQtKey(env, (void*)KCalendarSystemFactoryJBridge::create(), "org.trinitydesktop.koala.KCalendarSystem");
return xret;
}
JNIEXPORT jobject JNICALL
Java_org_trinitydesktop_koala_KCalendarSystemFactory_create__Ljava_lang_String_2(JNIEnv* env, jclass cls, jstring calType)
{
(void) cls;
static TQString* _qstring_calType = 0;
jobject xret = QtSupport::objectForQtKey(env, (void*)KCalendarSystemFactoryJBridge::create((const TQString&)*(TQString*) QtSupport::toTQString(env, calType, &_qstring_calType)), "org.trinitydesktop.koala.KCalendarSystem");
return xret;
}
JNIEXPORT jobject JNICALL
Java_org_trinitydesktop_koala_KCalendarSystemFactory_create__Ljava_lang_String_2Lorg_trinitydesktop_koala_TDELocale_2(JNIEnv* env, jclass cls, jstring calType, jobject locale)
{
(void) cls;
static TQString* _qstring_calType = 0;
jobject xret = QtSupport::objectForQtKey(env, (void*)KCalendarSystemFactoryJBridge::create((const TQString&)*(TQString*) QtSupport::toTQString(env, calType, &_qstring_calType), (const TDELocale*) QtSupport::getQt(env, locale)), "org.trinitydesktop.koala.KCalendarSystem");
return xret;
}
JNIEXPORT void JNICALL
Java_org_trinitydesktop_koala_KCalendarSystemFactory_dispose(JNIEnv* env, jobject obj)
{
Java_org_trinitydesktop_koala_KCalendarSystemFactory_finalize(env, obj);
return;
}
JNIEXPORT void JNICALL
Java_org_trinitydesktop_koala_KCalendarSystemFactory_finalize(JNIEnv* env, jobject obj)
{
if (QtSupport::allocatedInJavaWorld(env, obj)) {
delete (KCalendarSystemFactory*)QtSupport::getQt(env, obj);
QtSupport::setQt(env, obj, 0);
}
return;
}
JNIEXPORT jboolean JNICALL
Java_org_trinitydesktop_koala_KCalendarSystemFactory_isDisposed(JNIEnv* env, jobject obj)
{
return (QtSupport::getQt(env, obj) == 0);
}
JNIEXPORT void JNICALL
Java_org_trinitydesktop_koala_KCalendarSystemFactory_newKCalendarSystemFactory(JNIEnv* env, jobject obj)
{
if (QtSupport::getQt(env, obj) == 0) {
QtSupport::setQt(env, obj, new KCalendarSystemFactoryJBridge());
QtSupport::setObjectForQtKey(env, obj, QtSupport::getQt(env, obj));
}
return;
}