From a23f1fc1a162ecb85ed44484372faa26141af33a Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Fri, 25 Jan 2013 13:12:29 -0600 Subject: Rename KServer, KSocket, KIO_EXPORT, KIOInput, KIOJob, KIOConfig, KIOBuffer, and KBuffer to avoid conflicts with KDE4 --- kdejava/koala/kdejava/KBufferedIO.cpp | 46 +- kdejava/koala/kdejava/KBufferedIO.h | 28 +- kdejava/koala/kdejava/KCModule.cpp | 688 ----------- kdejava/koala/kdejava/KCModule.h | 49 - kdejava/koala/kdejava/KCModuleInfo.cpp | 308 ----- kdejava/koala/kdejava/KCModuleInfo.h | 49 - kdejava/koala/kdejava/KCModuleLoader.cpp | 167 --- kdejava/koala/kdejava/KCModuleLoader.h | 35 - kdejava/koala/kdejava/KConfig.cpp | 318 ------ kdejava/koala/kdejava/KConfig.h | 44 - kdejava/koala/kdejava/KConfigBackEnd.cpp | 85 -- kdejava/koala/kdejava/KConfigBackEnd.h | 28 - kdejava/koala/kdejava/KConfigBase.cpp | 1201 -------------------- kdejava/koala/kdejava/KConfigBase.h | 162 --- kdejava/koala/kdejava/KConfigGroup.cpp | 160 --- kdejava/koala/kdejava/KConfigGroup.h | 30 - kdejava/koala/kdejava/KConfigGroupSaver.cpp | 57 - kdejava/koala/kdejava/KConfigGroupSaver.h | 23 - kdejava/koala/kdejava/KConfigINIBackEnd.cpp | 134 --- kdejava/koala/kdejava/KConfigINIBackEnd.h | 30 - kdejava/koala/kdejava/KIO.cpp | 1196 ------------------- kdejava/koala/kdejava/KIO.h | 150 --- kdejava/koala/kdejava/Makefile.am | 4 +- kdejava/koala/kdejava/TDECModule.cpp | 688 +++++++++++ kdejava/koala/kdejava/TDECModule.h | 49 + kdejava/koala/kdejava/TDECModuleInfo.cpp | 308 +++++ kdejava/koala/kdejava/TDECModuleInfo.h | 49 + kdejava/koala/kdejava/TDECModuleLoader.cpp | 167 +++ kdejava/koala/kdejava/TDECModuleLoader.h | 35 + kdejava/koala/kdejava/TDEConfig.cpp | 318 ++++++ kdejava/koala/kdejava/TDEConfig.h | 44 + kdejava/koala/kdejava/TDEConfigBackEnd.cpp | 85 ++ kdejava/koala/kdejava/TDEConfigBackEnd.h | 28 + kdejava/koala/kdejava/TDEConfigBase.cpp | 1201 ++++++++++++++++++++ kdejava/koala/kdejava/TDEConfigBase.h | 162 +++ kdejava/koala/kdejava/TDEConfigGroup.cpp | 160 +++ kdejava/koala/kdejava/TDEConfigGroup.h | 30 + kdejava/koala/kdejava/TDEConfigGroupSaver.cpp | 57 + kdejava/koala/kdejava/TDEConfigGroupSaver.h | 23 + kdejava/koala/kdejava/TDEConfigINIBackEnd.cpp | 134 +++ kdejava/koala/kdejava/TDEConfigINIBackEnd.h | 30 + kdejava/koala/kdejava/TDEIO.cpp | 1196 +++++++++++++++++++ kdejava/koala/kdejava/TDEIO.h | 150 +++ kdejava/koala/org/kde/koala/KBufferedIO.java | 8 +- .../koala/org/kde/koala/KBufferedIOSignals.java | 2 +- kdejava/koala/org/kde/koala/KCModule.java | 275 ----- kdejava/koala/org/kde/koala/KCModuleInfo.java | 231 ---- kdejava/koala/org/kde/koala/KCModuleLoader.java | 120 -- kdejava/koala/org/kde/koala/KCModuleSignals.java | 25 - kdejava/koala/org/kde/koala/KConfig.java | 232 ---- kdejava/koala/org/kde/koala/KConfigBackEnd.java | 120 -- kdejava/koala/org/kde/koala/KConfigBase.java | 936 --------------- kdejava/koala/org/kde/koala/KConfigGroup.java | 53 - kdejava/koala/org/kde/koala/KConfigGroupSaver.java | 66 -- kdejava/koala/org/kde/koala/KConfigINIBackEnd.java | 117 -- kdejava/koala/org/kde/koala/KIO.java | 1179 ------------------- kdejava/koala/org/kde/koala/Makefile.am | 2 +- kdejava/koala/org/kde/koala/TDECModule.java | 275 +++++ kdejava/koala/org/kde/koala/TDECModuleInfo.java | 231 ++++ kdejava/koala/org/kde/koala/TDECModuleLoader.java | 120 ++ kdejava/koala/org/kde/koala/TDECModuleSignals.java | 25 + kdejava/koala/org/kde/koala/TDEConfig.java | 232 ++++ kdejava/koala/org/kde/koala/TDEConfigBackEnd.java | 120 ++ kdejava/koala/org/kde/koala/TDEConfigBase.java | 936 +++++++++++++++ kdejava/koala/org/kde/koala/TDEConfigGroup.java | 53 + .../koala/org/kde/koala/TDEConfigGroupSaver.java | 66 ++ .../koala/org/kde/koala/TDEConfigINIBackEnd.java | 117 ++ kdejava/koala/org/kde/koala/TDEIO.java | 1179 +++++++++++++++++++ 68 files changed, 8313 insertions(+), 8313 deletions(-) delete mode 100644 kdejava/koala/kdejava/KCModule.cpp delete mode 100644 kdejava/koala/kdejava/KCModule.h delete mode 100644 kdejava/koala/kdejava/KCModuleInfo.cpp delete mode 100644 kdejava/koala/kdejava/KCModuleInfo.h delete mode 100644 kdejava/koala/kdejava/KCModuleLoader.cpp delete mode 100644 kdejava/koala/kdejava/KCModuleLoader.h delete mode 100644 kdejava/koala/kdejava/KConfig.cpp delete mode 100644 kdejava/koala/kdejava/KConfig.h delete mode 100644 kdejava/koala/kdejava/KConfigBackEnd.cpp delete mode 100644 kdejava/koala/kdejava/KConfigBackEnd.h delete mode 100644 kdejava/koala/kdejava/KConfigBase.cpp delete mode 100644 kdejava/koala/kdejava/KConfigBase.h delete mode 100644 kdejava/koala/kdejava/KConfigGroup.cpp delete mode 100644 kdejava/koala/kdejava/KConfigGroup.h delete mode 100644 kdejava/koala/kdejava/KConfigGroupSaver.cpp delete mode 100644 kdejava/koala/kdejava/KConfigGroupSaver.h delete mode 100644 kdejava/koala/kdejava/KConfigINIBackEnd.cpp delete mode 100644 kdejava/koala/kdejava/KConfigINIBackEnd.h delete mode 100644 kdejava/koala/kdejava/KIO.cpp delete mode 100644 kdejava/koala/kdejava/KIO.h create mode 100644 kdejava/koala/kdejava/TDECModule.cpp create mode 100644 kdejava/koala/kdejava/TDECModule.h create mode 100644 kdejava/koala/kdejava/TDECModuleInfo.cpp create mode 100644 kdejava/koala/kdejava/TDECModuleInfo.h create mode 100644 kdejava/koala/kdejava/TDECModuleLoader.cpp create mode 100644 kdejava/koala/kdejava/TDECModuleLoader.h create mode 100644 kdejava/koala/kdejava/TDEConfig.cpp create mode 100644 kdejava/koala/kdejava/TDEConfig.h create mode 100644 kdejava/koala/kdejava/TDEConfigBackEnd.cpp create mode 100644 kdejava/koala/kdejava/TDEConfigBackEnd.h create mode 100644 kdejava/koala/kdejava/TDEConfigBase.cpp create mode 100644 kdejava/koala/kdejava/TDEConfigBase.h create mode 100644 kdejava/koala/kdejava/TDEConfigGroup.cpp create mode 100644 kdejava/koala/kdejava/TDEConfigGroup.h create mode 100644 kdejava/koala/kdejava/TDEConfigGroupSaver.cpp create mode 100644 kdejava/koala/kdejava/TDEConfigGroupSaver.h create mode 100644 kdejava/koala/kdejava/TDEConfigINIBackEnd.cpp create mode 100644 kdejava/koala/kdejava/TDEConfigINIBackEnd.h create mode 100644 kdejava/koala/kdejava/TDEIO.cpp create mode 100644 kdejava/koala/kdejava/TDEIO.h delete mode 100644 kdejava/koala/org/kde/koala/KCModule.java delete mode 100644 kdejava/koala/org/kde/koala/KCModuleInfo.java delete mode 100644 kdejava/koala/org/kde/koala/KCModuleLoader.java delete mode 100644 kdejava/koala/org/kde/koala/KCModuleSignals.java delete mode 100644 kdejava/koala/org/kde/koala/KConfig.java delete mode 100644 kdejava/koala/org/kde/koala/KConfigBackEnd.java delete mode 100644 kdejava/koala/org/kde/koala/KConfigBase.java delete mode 100644 kdejava/koala/org/kde/koala/KConfigGroup.java delete mode 100644 kdejava/koala/org/kde/koala/KConfigGroupSaver.java delete mode 100644 kdejava/koala/org/kde/koala/KConfigINIBackEnd.java delete mode 100644 kdejava/koala/org/kde/koala/KIO.java create mode 100644 kdejava/koala/org/kde/koala/TDECModule.java create mode 100644 kdejava/koala/org/kde/koala/TDECModuleInfo.java create mode 100644 kdejava/koala/org/kde/koala/TDECModuleLoader.java create mode 100644 kdejava/koala/org/kde/koala/TDECModuleSignals.java create mode 100644 kdejava/koala/org/kde/koala/TDEConfig.java create mode 100644 kdejava/koala/org/kde/koala/TDEConfigBackEnd.java create mode 100644 kdejava/koala/org/kde/koala/TDEConfigBase.java create mode 100644 kdejava/koala/org/kde/koala/TDEConfigGroup.java create mode 100644 kdejava/koala/org/kde/koala/TDEConfigGroupSaver.java create mode 100644 kdejava/koala/org/kde/koala/TDEConfigINIBackEnd.java create mode 100644 kdejava/koala/org/kde/koala/TDEIO.java (limited to 'kdejava/koala') diff --git a/kdejava/koala/kdejava/KBufferedIO.cpp b/kdejava/koala/kdejava/KBufferedIO.cpp index 0674dfa9..acc25106 100644 --- a/kdejava/koala/kdejava/KBufferedIO.cpp +++ b/kdejava/koala/kdejava/KBufferedIO.cpp @@ -3,85 +3,85 @@ #include #include -#include +#include JNIEXPORT jint JNICALL -Java_org_kde_koala_KBufferedIO_bytesAvailable(JNIEnv* env, jobject obj) +Java_org_kde_koala_TDEBufferedIO_bytesAvailable(JNIEnv* env, jobject obj) { - jint xret = (jint) ((KBufferedIO*) QtSupport::getQt(env, obj))->bytesAvailable(); + jint xret = (jint) ((TDEBufferedIO*) QtSupport::getQt(env, obj))->bytesAvailable(); return xret; } JNIEXPORT jint JNICALL -Java_org_kde_koala_KBufferedIO_bytesToWrite(JNIEnv* env, jobject obj) +Java_org_kde_koala_TDEBufferedIO_bytesToWrite(JNIEnv* env, jobject obj) { - jint xret = (jint) ((KBufferedIO*) QtSupport::getQt(env, obj))->bytesToWrite(); + jint xret = (jint) ((TDEBufferedIO*) QtSupport::getQt(env, obj))->bytesToWrite(); return xret; } JNIEXPORT jboolean JNICALL -Java_org_kde_koala_KBufferedIO_canReadLine(JNIEnv* env, jobject obj) +Java_org_kde_koala_TDEBufferedIO_canReadLine(JNIEnv* env, jobject obj) { - jboolean xret = (jboolean) ((KBufferedIO*) QtSupport::getQt(env, obj))->canReadLine(); + jboolean xret = (jboolean) ((TDEBufferedIO*) QtSupport::getQt(env, obj))->canReadLine(); return xret; } JNIEXPORT jstring JNICALL -Java_org_kde_koala_KBufferedIO_className(JNIEnv* env, jobject obj) +Java_org_kde_koala_TDEBufferedIO_className(JNIEnv* env, jobject obj) { const char* _qstring; - _qstring = ((KBufferedIO*) QtSupport::getQt(env, obj))->className(); + _qstring = ((TDEBufferedIO*) QtSupport::getQt(env, obj))->className(); return QtSupport::fromCharString(env, (char *) _qstring); } JNIEXPORT void JNICALL -Java_org_kde_koala_KBufferedIO_closeNow(JNIEnv* env, jobject obj) +Java_org_kde_koala_TDEBufferedIO_closeNow(JNIEnv* env, jobject obj) { - ((KBufferedIO*) QtSupport::getQt(env, obj))->closeNow(); + ((TDEBufferedIO*) QtSupport::getQt(env, obj))->closeNow(); return; } JNIEXPORT jobject JNICALL -Java_org_kde_koala_KBufferedIO_metaObject(JNIEnv* env, jobject obj) +Java_org_kde_koala_TDEBufferedIO_metaObject(JNIEnv* env, jobject obj) { - jobject xret = QtSupport::objectForQtKey(env, (void*)((KBufferedIO*) QtSupport::getQt(env, obj))->metaObject(), "org.kde.qt.TQMetaObject"); + jobject xret = QtSupport::objectForQtKey(env, (void*)((TDEBufferedIO*) QtSupport::getQt(env, obj))->metaObject(), "org.kde.qt.TQMetaObject"); return xret; } JNIEXPORT jint JNICALL -Java_org_kde_koala_KBufferedIO_peekBlock(JNIEnv* env, jobject obj, jstring data, jint maxlen) +Java_org_kde_koala_TDEBufferedIO_peekBlock(JNIEnv* env, jobject obj, jstring data, jint maxlen) { static TQCString* _qstring_data = 0; - jint xret = (jint) ((KBufferedIO*) QtSupport::getQt(env, obj))->peekBlock((char*) QtSupport::toCharString(env, data, &_qstring_data), (uint) maxlen); + jint xret = (jint) ((TDEBufferedIO*) QtSupport::getQt(env, obj))->peekBlock((char*) QtSupport::toCharString(env, data, &_qstring_data), (uint) maxlen); return xret; } JNIEXPORT jboolean JNICALL -Java_org_kde_koala_KBufferedIO_setBufferSize__I(JNIEnv* env, jobject obj, jint rsize) +Java_org_kde_koala_TDEBufferedIO_setBufferSize__I(JNIEnv* env, jobject obj, jint rsize) { - jboolean xret = (jboolean) ((KBufferedIO*) QtSupport::getQt(env, obj))->setBufferSize((int) rsize); + jboolean xret = (jboolean) ((TDEBufferedIO*) QtSupport::getQt(env, obj))->setBufferSize((int) rsize); return xret; } JNIEXPORT jboolean JNICALL -Java_org_kde_koala_KBufferedIO_setBufferSize__II(JNIEnv* env, jobject obj, jint rsize, jint wsize) +Java_org_kde_koala_TDEBufferedIO_setBufferSize__II(JNIEnv* env, jobject obj, jint rsize, jint wsize) { - jboolean xret = (jboolean) ((KBufferedIO*) QtSupport::getQt(env, obj))->setBufferSize((int) rsize, (int) wsize); + jboolean xret = (jboolean) ((TDEBufferedIO*) QtSupport::getQt(env, obj))->setBufferSize((int) rsize, (int) wsize); return xret; } JNIEXPORT jint JNICALL -Java_org_kde_koala_KBufferedIO_unreadBlock(JNIEnv* env, jobject obj, jstring data, jint len) +Java_org_kde_koala_TDEBufferedIO_unreadBlock(JNIEnv* env, jobject obj, jstring data, jint len) { static TQCString* _qstring_data = 0; - jint xret = (jint) ((KBufferedIO*) QtSupport::getQt(env, obj))->unreadBlock((const char*) QtSupport::toCharString(env, data, &_qstring_data), (uint) len); + jint xret = (jint) ((TDEBufferedIO*) QtSupport::getQt(env, obj))->unreadBlock((const char*) QtSupport::toCharString(env, data, &_qstring_data), (uint) len); return xret; } JNIEXPORT jint JNICALL -Java_org_kde_koala_KBufferedIO_waitForMore(JNIEnv* env, jobject obj, jint msec) +Java_org_kde_koala_TDEBufferedIO_waitForMore(JNIEnv* env, jobject obj, jint msec) { - jint xret = (jint) ((KBufferedIO*) QtSupport::getQt(env, obj))->waitForMore((int) msec); + jint xret = (jint) ((TDEBufferedIO*) QtSupport::getQt(env, obj))->waitForMore((int) msec); return xret; } diff --git a/kdejava/koala/kdejava/KBufferedIO.h b/kdejava/koala/kdejava/KBufferedIO.h index 5f66b718..768eafa7 100644 --- a/kdejava/koala/kdejava/KBufferedIO.h +++ b/kdejava/koala/kdejava/KBufferedIO.h @@ -1,7 +1,7 @@ /* DO NOT EDIT THIS FILE - it is machine generated */ -#ifndef __org_kde_koala_KBufferedIO__ -#define __org_kde_koala_KBufferedIO__ +#ifndef __org_kde_koala_TDEBufferedIO__ +#define __org_kde_koala_TDEBufferedIO__ #include @@ -10,20 +10,20 @@ extern "C" { #endif -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KBufferedIO_metaObject (JNIEnv *env, jobject); -extern JNIEXPORT jstring JNICALL Java_org_kde_koala_KBufferedIO_className (JNIEnv *env, jobject); -extern JNIEXPORT void JNICALL Java_org_kde_koala_KBufferedIO_closeNow (JNIEnv *env, jobject); -extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_KBufferedIO_setBufferSize__II (JNIEnv *env, jobject, jint, jint); -extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_KBufferedIO_setBufferSize__I (JNIEnv *env, jobject, jint); -extern JNIEXPORT jint JNICALL Java_org_kde_koala_KBufferedIO_bytesAvailable (JNIEnv *env, jobject); -extern JNIEXPORT jint JNICALL Java_org_kde_koala_KBufferedIO_waitForMore (JNIEnv *env, jobject, jint); -extern JNIEXPORT jint JNICALL Java_org_kde_koala_KBufferedIO_bytesToWrite (JNIEnv *env, jobject); -extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_KBufferedIO_canReadLine (JNIEnv *env, jobject); -extern JNIEXPORT jint JNICALL Java_org_kde_koala_KBufferedIO_peekBlock (JNIEnv *env, jobject, jstring, jint); -extern JNIEXPORT jint JNICALL Java_org_kde_koala_KBufferedIO_unreadBlock (JNIEnv *env, jobject, jstring, jint); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_TDEBufferedIO_metaObject (JNIEnv *env, jobject); +extern JNIEXPORT jstring JNICALL Java_org_kde_koala_TDEBufferedIO_className (JNIEnv *env, jobject); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEBufferedIO_closeNow (JNIEnv *env, jobject); +extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_TDEBufferedIO_setBufferSize__II (JNIEnv *env, jobject, jint, jint); +extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_TDEBufferedIO_setBufferSize__I (JNIEnv *env, jobject, jint); +extern JNIEXPORT jint JNICALL Java_org_kde_koala_TDEBufferedIO_bytesAvailable (JNIEnv *env, jobject); +extern JNIEXPORT jint JNICALL Java_org_kde_koala_TDEBufferedIO_waitForMore (JNIEnv *env, jobject, jint); +extern JNIEXPORT jint JNICALL Java_org_kde_koala_TDEBufferedIO_bytesToWrite (JNIEnv *env, jobject); +extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_TDEBufferedIO_canReadLine (JNIEnv *env, jobject); +extern JNIEXPORT jint JNICALL Java_org_kde_koala_TDEBufferedIO_peekBlock (JNIEnv *env, jobject, jstring, jint); +extern JNIEXPORT jint JNICALL Java_org_kde_koala_TDEBufferedIO_unreadBlock (JNIEnv *env, jobject, jstring, jint); #ifdef __cplusplus } #endif -#endif /* __org_kde_koala_KBufferedIO__ */ +#endif /* __org_kde_koala_TDEBufferedIO__ */ diff --git a/kdejava/koala/kdejava/KCModule.cpp b/kdejava/koala/kdejava/KCModule.cpp deleted file mode 100644 index e2c28135..00000000 --- a/kdejava/koala/kdejava/KCModule.cpp +++ /dev/null @@ -1,688 +0,0 @@ -//Auto-generated by kalyptus. DO NOT EDIT. -#include -#include -#include - -#include -#include -#include - -class TDECModuleJBridge : public TDECModule -{ -public: - TDECModuleJBridge(TQWidget* arg1,const char* arg2,const TQStringList& arg3) : TDECModule(arg1,arg2,arg3) {}; - TDECModuleJBridge(TQWidget* arg1,const char* arg2) : TDECModule(arg1,arg2) {}; - TDECModuleJBridge(TQWidget* arg1) : TDECModule(arg1) {}; - TDECModuleJBridge() : TDECModule() {}; - TDECModuleJBridge(TDEInstance* arg1,TQWidget* arg2,const TQStringList& arg3) : TDECModule(arg1,arg2,arg3) {}; - TDECModuleJBridge(TDEInstance* arg1,TQWidget* arg2) : TDECModule(arg1,arg2) {}; - TDECModuleJBridge(TDEInstance* arg1) : TDECModule(arg1) {}; - void public_load() { - TDECModule::load(); - return; - } - void public_save() { - TDECModule::save(); - return; - } - void public_defaults() { - TDECModule::defaults(); - return; - } - void public_sysdefaults() { - TDECModule::sysdefaults(); - return; - } - void protected_setQuickHelp(const TQString& arg1) { - TDECModule::setQuickHelp(arg1); - return; - } - void protected_setButtons(int arg1) { - TDECModule::setButtons(arg1); - return; - } - void protected_setRootOnlyMsg(const TQString& arg1) { - TDECModule::setRootOnlyMsg(arg1); - return; - } - void protected_setUseRootOnlyMsg(bool arg1) { - TDECModule::setUseRootOnlyMsg(arg1); - return; - } - bool protected_managedWidgetChangeState() { - return (bool) TDECModule::managedWidgetChangeState(); - } - void protected_unmanagedWidgetChangeState(bool arg1) { - TDECModule::unmanagedWidgetChangeState(arg1); - return; - } - void protected_changed() { - TDECModule::changed(); - return; - } - void protected_widgetChanged() { - TDECModule::widgetChanged(); - return; - } - ~TDECModuleJBridge() {QtSupport::qtKeyDeleted(this);} - void load() { - if (!QtSupport::voidDelegate(this,"org.kde.koala.TDECModule","load")) { - TDECModule::load(); - } - return; - } - void dragLeaveEvent(TQDragLeaveEvent* arg1) { - if (!QtSupport::eventDelegate(this,"dragLeaveEvent",(void*)arg1,"org.kde.qt.TQDragLeaveEvent")) { - TQWidget::dragLeaveEvent(arg1); - } - return; - } - void setMask(const TQRegion& arg1) { - if (!QtSupport::eventDelegate(this,"setMask",(void*)&arg1,"org.kde.qt.TQRegion")) { - TQWidget::setMask(arg1); - } - return; - } - void resizeEvent(TQResizeEvent* arg1) { - if (!QtSupport::eventDelegate(this,"resizeEvent",(void*)arg1,"org.kde.qt.TQResizeEvent")) { - TQWidget::resizeEvent(arg1); - } - return; - } - void mouseDoubleClickEvent(TQMouseEvent* arg1) { - if (!QtSupport::eventDelegate(this,"mouseDoubleClickEvent",(void*)arg1,"org.kde.qt.TQMouseEvent")) { - TQWidget::mouseDoubleClickEvent(arg1); - } - return; - } - void paletteChange(const TQPalette& arg1) { - if (!QtSupport::eventDelegate(this,"paletteChange",(void*)&arg1,"org.kde.qt.TQPalette")) { - TQWidget::paletteChange(arg1); - } - return; - } - void sysdefaults() { - if (!QtSupport::voidDelegate(this,"org.kde.koala.TDECModule","sysdefaults")) { - TDECModule::sysdefaults(); - } - return; - } - void setActiveWindow() { - if (!QtSupport::voidDelegate(this,"org.kde.koala.TDECModule","setActiveWindow")) { - TQWidget::setActiveWindow(); - } - return; - } - void dragEnterEvent(TQDragEnterEvent* arg1) { - if (!QtSupport::eventDelegate(this,"dragEnterEvent",(void*)arg1,"org.kde.qt.TQDragEnterEvent")) { - TQWidget::dragEnterEvent(arg1); - } - return; - } - void show() { - if (!QtSupport::voidDelegate(this,"org.kde.koala.TDECModule","show")) { - TQWidget::show(); - } - return; - } - void focusOutEvent(TQFocusEvent* arg1) { - if (!QtSupport::eventDelegate(this,"focusOutEvent",(void*)arg1,"org.kde.qt.TQFocusEvent")) { - TQWidget::focusOutEvent(arg1); - } - return; - } - void setFocus() { - if (!QtSupport::voidDelegate(this,"org.kde.koala.TDECModule","setFocus")) { - TQWidget::setFocus(); - } - return; - } - void dragMoveEvent(TQDragMoveEvent* arg1) { - if (!QtSupport::eventDelegate(this,"dragMoveEvent",(void*)arg1,"org.kde.qt.TQDragMoveEvent")) { - TQWidget::dragMoveEvent(arg1); - } - return; - } - void styleChange(TQStyle& arg1) { - if (!QtSupport::eventDelegate(this,"styleChange",(void*)&arg1,"org.kde.qt.TQStyle")) { - TQWidget::styleChange(arg1); - } - return; - } - void hide() { - if (!QtSupport::voidDelegate(this,"org.kde.koala.TDECModule","hide")) { - TQWidget::hide(); - } - return; - } - void setPaletteBackgroundColor(const TQColor& arg1) { - if (!QtSupport::eventDelegate(this,"setPaletteBackgroundColor",(void*)&arg1,"org.kde.qt.TQColor")) { - TQWidget::setPaletteBackgroundColor(arg1); - } - return; - } - void setEraseColor(const TQColor& arg1) { - if (!QtSupport::eventDelegate(this,"setEraseColor",(void*)&arg1,"org.kde.qt.TQColor")) { - TQWidget::setEraseColor(arg1); - } - return; - } - void removeChild(TQObject* arg1) { - if (!QtSupport::eventDelegate(this,"removeChild",(void*)arg1,"org.kde.qt.TQObject")) { - TQObject::removeChild(arg1); - } - return; - } - void paintEvent(TQPaintEvent* arg1) { - if (!QtSupport::eventDelegate(this,"paintEvent",(void*)arg1,"org.kde.qt.TQPaintEvent")) { - TQWidget::paintEvent(arg1); - } - return; - } - void imStartEvent(TQIMEvent* arg1) { - if (!QtSupport::eventDelegate(this,"imStartEvent",(void*)arg1,"org.kde.qt.TQIMEvent")) { - TQWidget::imStartEvent(arg1); - } - return; - } - void unsetCursor() { - if (!QtSupport::voidDelegate(this,"org.kde.koala.TDECModule","unsetCursor")) { - TQWidget::unsetCursor(); - } - return; - } - void hideEvent(TQHideEvent* arg1) { - if (!QtSupport::eventDelegate(this,"hideEvent",(void*)arg1,"org.kde.qt.TQHideEvent")) { - TQWidget::hideEvent(arg1); - } - return; - } - void moveEvent(TQMoveEvent* arg1) { - if (!QtSupport::eventDelegate(this,"moveEvent",(void*)arg1,"org.kde.qt.TQMoveEvent")) { - TQWidget::moveEvent(arg1); - } - return; - } - void polish() { - if (!QtSupport::voidDelegate(this,"org.kde.koala.TDECModule","polish")) { - TQWidget::polish(); - } - return; - } - void showMaximized() { - if (!QtSupport::voidDelegate(this,"org.kde.koala.TDECModule","showMaximized")) { - TQWidget::showMaximized(); - } - return; - } - void setBackgroundPixmap(const TQPixmap& arg1) { - if (!QtSupport::eventDelegate(this,"setBackgroundPixmap",(void*)&arg1,"org.kde.qt.TQPixmap")) { - TQWidget::setBackgroundPixmap(arg1); - } - return; - } - void showEvent(TQShowEvent* arg1) { - if (!QtSupport::eventDelegate(this,"showEvent",(void*)arg1,"org.kde.qt.TQShowEvent")) { - TQWidget::showEvent(arg1); - } - return; - } - void keyPressEvent(TQKeyEvent* arg1) { - if (!QtSupport::eventDelegate(this,"keyPressEvent",(void*)arg1,"org.kde.qt.TQKeyEvent")) { - TQWidget::keyPressEvent(arg1); - } - return; - } - bool customWhatsThis() { - return QtSupport::booleanDelegate(this,"customWhatsThis"); - } - void setPaletteBackgroundPixmap(const TQPixmap& arg1) { - if (!QtSupport::eventDelegate(this,"setPaletteBackgroundPixmap",(void*)&arg1,"org.kde.qt.TQPixmap")) { - TQWidget::setPaletteBackgroundPixmap(arg1); - } - return; - } - void setCursor(const TQCursor& arg1) { - if (!QtSupport::eventDelegate(this,"setCursor",(void*)&arg1,"org.kde.qt.TQCursor")) { - TQWidget::setCursor(arg1); - } - return; - } - void closeEvent(TQCloseEvent* arg1) { - if (!QtSupport::eventDelegate(this,"closeEvent",(void*)arg1,"org.kde.qt.TQCloseEvent")) { - TQWidget::closeEvent(arg1); - } - return; - } - void customEvent(TQCustomEvent* arg1) { - if (!QtSupport::eventDelegate(this,"customEvent",(void*)arg1,"org.kde.qt.TQCustomEvent")) { - TQObject::customEvent(arg1); - } - return; - } - void enterEvent(TQEvent* arg1) { - if (!QtSupport::eventDelegate(this,"enterEvent",(void*)arg1,"org.kde.qt.TQEvent")) { - TQWidget::enterEvent(arg1); - } - return; - } - void timerEvent(TQTimerEvent* arg1) { - if (!QtSupport::eventDelegate(this,"timerEvent",(void*)arg1,"org.kde.qt.TQTimerEvent")) { - TQObject::timerEvent(arg1); - } - return; - } - void mouseReleaseEvent(TQMouseEvent* arg1) { - if (!QtSupport::eventDelegate(this,"mouseReleaseEvent",(void*)arg1,"org.kde.qt.TQMouseEvent")) { - TQWidget::mouseReleaseEvent(arg1); - } - return; - } - void setErasePixmap(const TQPixmap& arg1) { - if (!QtSupport::eventDelegate(this,"setErasePixmap",(void*)&arg1,"org.kde.qt.TQPixmap")) { - TQWidget::setErasePixmap(arg1); - } - return; - } - void childEvent(TQChildEvent* arg1) { - if (!QtSupport::eventDelegate(this,"childEvent",(void*)arg1,"org.kde.qt.TQChildEvent")) { - TQObject::childEvent(arg1); - } - return; - } - void dropEvent(TQDropEvent* arg1) { - if (!QtSupport::eventDelegate(this,"dropEvent",(void*)arg1,"org.kde.qt.TQDropEvent")) { - TQWidget::dropEvent(arg1); - } - return; - } - void leaveEvent(TQEvent* arg1) { - if (!QtSupport::eventDelegate(this,"leaveEvent",(void*)arg1,"org.kde.qt.TQEvent")) { - TQWidget::leaveEvent(arg1); - } - return; - } - void setIcon(const TQPixmap& arg1) { - if (!QtSupport::eventDelegate(this,"setIcon",(void*)&arg1,"org.kde.qt.TQPixmap")) { - TQWidget::setIcon(arg1); - } - return; - } - void updateMask() { - if (!QtSupport::voidDelegate(this,"org.kde.koala.TDECModule","updateMask")) { - TQWidget::updateMask(); - } - return; - } - void showNormal() { - if (!QtSupport::voidDelegate(this,"org.kde.koala.TDECModule","showNormal")) { - TQWidget::showNormal(); - } - return; - } - void imComposeEvent(TQIMEvent* arg1) { - if (!QtSupport::eventDelegate(this,"imComposeEvent",(void*)arg1,"org.kde.qt.TQIMEvent")) { - TQWidget::imComposeEvent(arg1); - } - return; - } - void mousePressEvent(TQMouseEvent* arg1) { - if (!QtSupport::eventDelegate(this,"mousePressEvent",(void*)arg1,"org.kde.qt.TQMouseEvent")) { - TQWidget::mousePressEvent(arg1); - } - return; - } - void mouseMoveEvent(TQMouseEvent* arg1) { - if (!QtSupport::eventDelegate(this,"mouseMoveEvent",(void*)arg1,"org.kde.qt.TQMouseEvent")) { - TQWidget::mouseMoveEvent(arg1); - } - return; - } - void save() { - if (!QtSupport::voidDelegate(this,"org.kde.koala.TDECModule","save")) { - TDECModule::save(); - } - return; - } - void setFocusProxy(TQWidget* arg1) { - if (!QtSupport::eventDelegate(this,"setFocusProxy",(void*)arg1,"org.kde.qt.TQWidget")) { - TQWidget::setFocusProxy(arg1); - } - return; - } - void fontChange(const TQFont& arg1) { - if (!QtSupport::eventDelegate(this,"fontChange",(void*)&arg1,"org.kde.qt.TQFont")) { - TQWidget::fontChange(arg1); - } - return; - } - void setBackgroundColor(const TQColor& arg1) { - if (!QtSupport::eventDelegate(this,"setBackgroundColor",(void*)&arg1,"org.kde.qt.TQColor")) { - TQWidget::setBackgroundColor(arg1); - } - return; - } - void adjustSize() { - if (!QtSupport::voidDelegate(this,"org.kde.koala.TDECModule","adjustSize")) { - TQWidget::adjustSize(); - } - return; - } - void wheelEvent(TQWheelEvent* arg1) { - if (!QtSupport::eventDelegate(this,"wheelEvent",(void*)arg1,"org.kde.qt.TQWheelEvent")) { - TQWidget::wheelEvent(arg1); - } - return; - } - void imEndEvent(TQIMEvent* arg1) { - if (!QtSupport::eventDelegate(this,"imEndEvent",(void*)arg1,"org.kde.qt.TQIMEvent")) { - TQWidget::imEndEvent(arg1); - } - return; - } - void insertChild(TQObject* arg1) { - if (!QtSupport::eventDelegate(this,"insertChild",(void*)arg1,"org.kde.qt.TQObject")) { - TQObject::insertChild(arg1); - } - return; - } - void focusInEvent(TQFocusEvent* arg1) { - if (!QtSupport::eventDelegate(this,"focusInEvent",(void*)arg1,"org.kde.qt.TQFocusEvent")) { - TQWidget::focusInEvent(arg1); - } - return; - } - void tabletEvent(TQTabletEvent* arg1) { - if (!QtSupport::eventDelegate(this,"tabletEvent",(void*)arg1,"org.kde.qt.TQTabletEvent")) { - TQWidget::tabletEvent(arg1); - } - return; - } - void defaults() { - if (!QtSupport::voidDelegate(this,"org.kde.koala.TDECModule","defaults")) { - TDECModule::defaults(); - } - return; - } - void keyReleaseEvent(TQKeyEvent* arg1) { - if (!QtSupport::eventDelegate(this,"keyReleaseEvent",(void*)arg1,"org.kde.qt.TQKeyEvent")) { - TQWidget::keyReleaseEvent(arg1); - } - return; - } - void contextMenuEvent(TQContextMenuEvent* arg1) { - if (!QtSupport::eventDelegate(this,"contextMenuEvent",(void*)arg1,"org.kde.qt.TQContextMenuEvent")) { - TQWidget::contextMenuEvent(arg1); - } - return; - } - bool eventFilter(TQObject* object,TQEvent* event) { - if (!QtSupport::eventFilterDelegate(this,"org.kde.koala.TDECModule",object,event)) { - return TQObject::eventFilter(object,event); - } else { - return TRUE; - } - } - void setGeometry(const TQRect& arg1) { - if (!QtSupport::eventDelegate(this,"setGeometry",(void*)&arg1,"org.kde.qt.TQRect")) { - TQWidget::setGeometry(arg1); - } - return; - } - void showMinimized() { - if (!QtSupport::voidDelegate(this,"org.kde.koala.TDECModule","showMinimized")) { - TQWidget::showMinimized(); - } - return; - } -}; - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_TDECModule_aboutData(JNIEnv* env, jobject obj) -{ - jobject xret = QtSupport::objectForQtKey(env, (void*)((TDECModule*) QtSupport::getQt(env, obj))->aboutData(), "org.kde.koala.TDEAboutData"); - return xret; -} - -JNIEXPORT jint JNICALL -Java_org_kde_koala_TDECModule_buttons(JNIEnv* env, jobject obj) -{ - jint xret = (jint) ((TDECModule*) QtSupport::getQt(env, obj))->buttons(); - return xret; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDECModule_changed(JNIEnv* env, jobject obj) -{ - ((TDECModuleJBridge*) QtSupport::getQt(env, obj))->protected_changed(); - return; -} - -JNIEXPORT jstring JNICALL -Java_org_kde_koala_TDECModule_className(JNIEnv* env, jobject obj) -{ - const char* _qstring; - _qstring = ((TDECModule*) QtSupport::getQt(env, obj))->className(); - return QtSupport::fromCharString(env, (char *) _qstring); -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDECModule_defaults(JNIEnv* env, jobject obj) -{ - ((TDECModuleJBridge*) QtSupport::getQt(env, obj))->public_defaults(); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDECModule_dispose(JNIEnv* env, jobject obj) -{ - Java_org_kde_koala_TDECModule_finalize(env, obj); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDECModule_finalize(JNIEnv* env, jobject obj) -{ - if (QtSupport::allocatedInJavaWorld(env, obj) && ((TQWidget*)(TDECModule*)QtSupport::getQt(env, obj))->parentWidget(TRUE) == 0) { - delete (TDECModule*)QtSupport::getQt(env, obj); - QtSupport::setQt(env, obj, 0); - } - return; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_TDECModule_instance(JNIEnv* env, jobject obj) -{ - jobject xret = QtSupport::objectForQtKey(env, (void*)((TDECModule*) QtSupport::getQt(env, obj))->instance(), "org.kde.koala.TDEInstanceInterface"); - return xret; -} - -JNIEXPORT jboolean JNICALL -Java_org_kde_koala_TDECModule_isDisposed(JNIEnv* env, jobject obj) -{ - return (QtSupport::getQt(env, obj) == 0); -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDECModule_load(JNIEnv* env, jobject obj) -{ - ((TDECModuleJBridge*) QtSupport::getQt(env, obj))->public_load(); - return; -} - -JNIEXPORT jboolean JNICALL -Java_org_kde_koala_TDECModule_managedWidgetChangeState(JNIEnv* env, jobject obj) -{ - jboolean xret = (jboolean) ((TDECModuleJBridge*) QtSupport::getQt(env, obj))->protected_managedWidgetChangeState(); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_TDECModule_metaObject(JNIEnv* env, jobject obj) -{ - jobject xret = QtSupport::objectForQtKey(env, (void*)((TDECModule*) QtSupport::getQt(env, obj))->metaObject(), "org.kde.qt.TQMetaObject"); - return xret; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDECModule_newTDECModule__(JNIEnv* env, jobject obj) -{ - if (QtSupport::getQt(env, obj) == 0) { - QtSupport::setQt(env, obj, new TDECModuleJBridge()); - QtSupport::setObjectForQtKey(env, obj, QtSupport::getQt(env, obj)); - } - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDECModule_newTDECModule__Lorg_kde_koala_TDEInstanceInterface_2(JNIEnv* env, jobject obj, jobject instance) -{ - if (QtSupport::getQt(env, obj) == 0) { - QtSupport::setQt(env, obj, new TDECModuleJBridge((TDEInstance*) QtSupport::getQt(env, instance))); - QtSupport::setObjectForQtKey(env, obj, QtSupport::getQt(env, obj)); - } - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDECModule_newTDECModule__Lorg_kde_koala_TDEInstanceInterface_2Lorg_kde_qt_QWidget_2(JNIEnv* env, jobject obj, jobject instance, jobject parent) -{ - if (QtSupport::getQt(env, obj) == 0) { - QtSupport::setQt(env, obj, new TDECModuleJBridge((TDEInstance*) QtSupport::getQt(env, instance), (TQWidget*) QtSupport::getQt(env, parent))); - QtSupport::setObjectForQtKey(env, obj, QtSupport::getQt(env, obj)); - } - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDECModule_newTDECModule__Lorg_kde_koala_TDEInstanceInterface_2Lorg_kde_qt_QWidget_2_3Ljava_lang_String_2(JNIEnv* env, jobject obj, jobject instance, jobject parent, jobjectArray args) -{ -static TQStringList* _qlist_args = 0; - if (QtSupport::getQt(env, obj) == 0) { - QtSupport::setQt(env, obj, new TDECModuleJBridge((TDEInstance*) QtSupport::getQt(env, instance), (TQWidget*) QtSupport::getQt(env, parent), (const TQStringList&)*(TQStringList*) QtSupport::toTQStringList(env, args, &_qlist_args))); - QtSupport::setObjectForQtKey(env, obj, QtSupport::getQt(env, obj)); - } - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDECModule_newTDECModule__Lorg_kde_qt_QWidget_2(JNIEnv* env, jobject obj, jobject parent) -{ - if (QtSupport::getQt(env, obj) == 0) { - QtSupport::setQt(env, obj, new TDECModuleJBridge((TQWidget*) QtSupport::getQt(env, parent))); - QtSupport::setObjectForQtKey(env, obj, QtSupport::getQt(env, obj)); - } - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDECModule_newTDECModule__Lorg_kde_qt_QWidget_2Ljava_lang_String_2(JNIEnv* env, jobject obj, jobject parent, jstring name) -{ -static TQCString* _qstring_name = 0; - if (QtSupport::getQt(env, obj) == 0) { - QtSupport::setQt(env, obj, new TDECModuleJBridge((TQWidget*) QtSupport::getQt(env, parent), (const char*) QtSupport::toCharString(env, name, &_qstring_name))); - QtSupport::setObjectForQtKey(env, obj, QtSupport::getQt(env, obj)); - } - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDECModule_newTDECModule__Lorg_kde_qt_QWidget_2Ljava_lang_String_2_3Ljava_lang_String_2(JNIEnv* env, jobject obj, jobject parent, jstring name, jobjectArray args) -{ -static TQCString* _qstring_name = 0; -static TQStringList* _qlist_args = 0; - if (QtSupport::getQt(env, obj) == 0) { - QtSupport::setQt(env, obj, new TDECModuleJBridge((TQWidget*) QtSupport::getQt(env, parent), (const char*) QtSupport::toCharString(env, name, &_qstring_name), (const TQStringList&)*(TQStringList*) QtSupport::toTQStringList(env, args, &_qlist_args))); - QtSupport::setObjectForQtKey(env, obj, QtSupport::getQt(env, obj)); - } - return; -} - -JNIEXPORT jstring JNICALL -Java_org_kde_koala_TDECModule_quickHelp(JNIEnv* env, jobject obj) -{ - TQString _qstring; - _qstring = ((TDECModule*) QtSupport::getQt(env, obj))->quickHelp(); - return QtSupport::fromTQString(env, &_qstring); -} - -JNIEXPORT jstring JNICALL -Java_org_kde_koala_TDECModule_rootOnlyMsg(JNIEnv* env, jobject obj) -{ - TQString _qstring; - _qstring = ((TDECModule*) QtSupport::getQt(env, obj))->rootOnlyMsg(); - return QtSupport::fromTQString(env, &_qstring); -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDECModule_save(JNIEnv* env, jobject obj) -{ - ((TDECModuleJBridge*) QtSupport::getQt(env, obj))->public_save(); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDECModule_setAboutData(JNIEnv* env, jobject obj, jobject about) -{ - ((TDECModule*) QtSupport::getQt(env, obj))->setAboutData((TDEAboutData*) QtSupport::getQt(env, about)); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDECModule_setButtons(JNIEnv* env, jobject obj, jint btn) -{ - ((TDECModuleJBridge*) QtSupport::getQt(env, obj))->protected_setButtons((int) btn); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDECModule_setQuickHelp(JNIEnv* env, jobject obj, jstring help) -{ -static TQString* _qstring_help = 0; - ((TDECModuleJBridge*) QtSupport::getQt(env, obj))->protected_setQuickHelp((const TQString&)*(TQString*) QtSupport::toTQString(env, help, &_qstring_help)); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDECModule_setRootOnlyMsg(JNIEnv* env, jobject obj, jstring msg) -{ -static TQString* _qstring_msg = 0; - ((TDECModuleJBridge*) QtSupport::getQt(env, obj))->protected_setRootOnlyMsg((const TQString&)*(TQString*) QtSupport::toTQString(env, msg, &_qstring_msg)); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDECModule_setUseRootOnlyMsg(JNIEnv* env, jobject obj, jboolean on) -{ - ((TDECModuleJBridge*) QtSupport::getQt(env, obj))->protected_setUseRootOnlyMsg((bool) on); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDECModule_sysdefaults(JNIEnv* env, jobject obj) -{ - ((TDECModuleJBridge*) QtSupport::getQt(env, obj))->public_sysdefaults(); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDECModule_unmanagedWidgetChangeState(JNIEnv* env, jobject obj, jboolean arg1) -{ - ((TDECModuleJBridge*) QtSupport::getQt(env, obj))->protected_unmanagedWidgetChangeState((bool) arg1); - return; -} - -JNIEXPORT jboolean JNICALL -Java_org_kde_koala_TDECModule_useRootOnlyMsg(JNIEnv* env, jobject obj) -{ - jboolean xret = (jboolean) ((TDECModule*) QtSupport::getQt(env, obj))->useRootOnlyMsg(); - return xret; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDECModule_widgetChanged(JNIEnv* env, jobject obj) -{ - ((TDECModuleJBridge*) QtSupport::getQt(env, obj))->protected_widgetChanged(); - return; -} - diff --git a/kdejava/koala/kdejava/KCModule.h b/kdejava/koala/kdejava/KCModule.h deleted file mode 100644 index 3d3a5a2a..00000000 --- a/kdejava/koala/kdejava/KCModule.h +++ /dev/null @@ -1,49 +0,0 @@ -/* DO NOT EDIT THIS FILE - it is machine generated */ - -#ifndef __org_kde_koala_TDECModule__ -#define __org_kde_koala_TDECModule__ - -#include - -#ifdef __cplusplus -extern "C" -{ -#endif - -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_TDECModule_metaObject (JNIEnv *env, jobject); -extern JNIEXPORT jstring JNICALL Java_org_kde_koala_TDECModule_className (JNIEnv *env, jobject); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDECModule_newTDECModule__Lorg_kde_qt_QWidget_2Ljava_lang_String_2_3Ljava_lang_String_2 (JNIEnv *env, jobject, jobject, jstring, jobjectArray); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDECModule_newTDECModule__Lorg_kde_qt_QWidget_2Ljava_lang_String_2 (JNIEnv *env, jobject, jobject, jstring); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDECModule_newTDECModule__Lorg_kde_qt_QWidget_2 (JNIEnv *env, jobject, jobject); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDECModule_newTDECModule__ (JNIEnv *env, jobject); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDECModule_newTDECModule__Lorg_kde_koala_TDEInstanceInterface_2Lorg_kde_qt_QWidget_2_3Ljava_lang_String_2 (JNIEnv *env, jobject, jobject, jobject, jobjectArray); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDECModule_newTDECModule__Lorg_kde_koala_TDEInstanceInterface_2Lorg_kde_qt_QWidget_2 (JNIEnv *env, jobject, jobject, jobject); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDECModule_newTDECModule__Lorg_kde_koala_TDEInstanceInterface_2 (JNIEnv *env, jobject, jobject); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDECModule_load (JNIEnv *env, jobject); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDECModule_save (JNIEnv *env, jobject); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDECModule_defaults (JNIEnv *env, jobject); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDECModule_sysdefaults (JNIEnv *env, jobject); -extern JNIEXPORT jstring JNICALL Java_org_kde_koala_TDECModule_quickHelp (JNIEnv *env, jobject); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_TDECModule_aboutData (JNIEnv *env, jobject); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDECModule_setAboutData (JNIEnv *env, jobject, jobject); -extern JNIEXPORT jint JNICALL Java_org_kde_koala_TDECModule_buttons (JNIEnv *env, jobject); -extern JNIEXPORT jstring JNICALL Java_org_kde_koala_TDECModule_rootOnlyMsg (JNIEnv *env, jobject); -extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_TDECModule_useRootOnlyMsg (JNIEnv *env, jobject); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_TDECModule_instance (JNIEnv *env, jobject); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDECModule_setQuickHelp (JNIEnv *env, jobject, jstring); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDECModule_setButtons (JNIEnv *env, jobject, jint); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDECModule_setRootOnlyMsg (JNIEnv *env, jobject, jstring); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDECModule_setUseRootOnlyMsg (JNIEnv *env, jobject, jboolean); -extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_TDECModule_managedWidgetChangeState (JNIEnv *env, jobject); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDECModule_unmanagedWidgetChangeState (JNIEnv *env, jobject, jboolean); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDECModule_changed (JNIEnv *env, jobject); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDECModule_widgetChanged (JNIEnv *env, jobject); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDECModule_finalize (JNIEnv *env, jobject); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDECModule_dispose (JNIEnv *env, jobject); -extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_TDECModule_isDisposed (JNIEnv *env, jobject); - -#ifdef __cplusplus -} -#endif - -#endif /* __org_kde_koala_TDECModule__ */ diff --git a/kdejava/koala/kdejava/KCModuleInfo.cpp b/kdejava/koala/kdejava/KCModuleInfo.cpp deleted file mode 100644 index fd06560b..00000000 --- a/kdejava/koala/kdejava/KCModuleInfo.cpp +++ /dev/null @@ -1,308 +0,0 @@ -//Auto-generated by kalyptus. DO NOT EDIT. -#include -#include -#include -#include - -#include -#include -#include - -class TDECModuleInfoJBridge : public TDECModuleInfo -{ -public: - TDECModuleInfoJBridge(const TQString& arg1) : TDECModuleInfo(arg1) {}; - TDECModuleInfoJBridge(const TDECModuleInfo& arg1) : TDECModuleInfo(arg1) {}; - TDECModuleInfoJBridge() : TDECModuleInfo() {}; - void protected_setKeywords(const TQStringList& arg1) { - TDECModuleInfo::setKeywords(arg1); - return; - } - void protected_setName(const TQString& arg1) { - TDECModuleInfo::setName(arg1); - return; - } - void protected_setComment(const TQString& arg1) { - TDECModuleInfo::setComment(arg1); - return; - } - void protected_setIcon(const TQString& arg1) { - TDECModuleInfo::setIcon(arg1); - return; - } - void protected_setLibrary(const TQString& arg1) { - TDECModuleInfo::setLibrary(arg1); - return; - } - void protected_setHandle(const TQString& arg1) { - TDECModuleInfo::setHandle(arg1); - return; - } - void protected_setWeight(int arg1) { - TDECModuleInfo::setWeight(arg1); - return; - } - void protected_setNeedsTest(bool arg1) { - TDECModuleInfo::setNeedsTest(arg1); - return; - } - void protected_setNeedsRootPrivileges(bool arg1) { - TDECModuleInfo::setNeedsRootPrivileges(arg1); - return; - } - void protected_setDocPath(const TQString& arg1) { - TDECModuleInfo::setDocPath(arg1); - return; - } - void protected_loadAll() { - TDECModuleInfo::loadAll(); - return; - } - ~TDECModuleInfoJBridge() {QtSupport::qtKeyDeleted(this);} -}; - -JNIEXPORT jstring JNICALL -Java_org_kde_koala_TDECModuleInfo_comment(JNIEnv* env, jobject obj) -{ - TQString _qstring; - _qstring = ((TDECModuleInfo*) QtSupport::getQt(env, obj))->comment(); - return QtSupport::fromTQString(env, &_qstring); -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDECModuleInfo_dispose(JNIEnv* env, jobject obj) -{ - Java_org_kde_koala_TDECModuleInfo_finalize(env, obj); - return; -} - -JNIEXPORT jstring JNICALL -Java_org_kde_koala_TDECModuleInfo_docPath(JNIEnv* env, jobject obj) -{ - TQString _qstring; - _qstring = ((TDECModuleInfo*) QtSupport::getQt(env, obj))->docPath(); - return QtSupport::fromTQString(env, &_qstring); -} - -JNIEXPORT jstring JNICALL -Java_org_kde_koala_TDECModuleInfo_factoryName(JNIEnv* env, jobject obj) -{ - TQString _qstring; - _qstring = ((TDECModuleInfo*) QtSupport::getQt(env, obj))->factoryName(); - return QtSupport::fromTQString(env, &_qstring); -} - -JNIEXPORT jstring JNICALL -Java_org_kde_koala_TDECModuleInfo_fileName(JNIEnv* env, jobject obj) -{ - TQString _qstring; - _qstring = ((TDECModuleInfo*) QtSupport::getQt(env, obj))->fileName(); - return QtSupport::fromTQString(env, &_qstring); -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDECModuleInfo_finalize(JNIEnv* env, jobject obj) -{ - if (QtSupport::allocatedInJavaWorld(env, obj)) { - delete (TDECModuleInfo*)QtSupport::getQt(env, obj); - QtSupport::setQt(env, obj, 0); - } - return; -} - -JNIEXPORT jstring JNICALL -Java_org_kde_koala_TDECModuleInfo_handle(JNIEnv* env, jobject obj) -{ - TQString _qstring; - _qstring = ((TDECModuleInfo*) QtSupport::getQt(env, obj))->handle(); - return QtSupport::fromTQString(env, &_qstring); -} - -JNIEXPORT jstring JNICALL -Java_org_kde_koala_TDECModuleInfo_icon(JNIEnv* env, jobject obj) -{ - TQString _qstring; - _qstring = ((TDECModuleInfo*) QtSupport::getQt(env, obj))->icon(); - return QtSupport::fromTQString(env, &_qstring); -} - -JNIEXPORT jboolean JNICALL -Java_org_kde_koala_TDECModuleInfo_isDisposed(JNIEnv* env, jobject obj) -{ - return (QtSupport::getQt(env, obj) == 0); -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_TDECModuleInfo_keywords(JNIEnv* env, jobject obj) -{ - TQStringList _qlist; - _qlist = ((TDECModuleInfo*) QtSupport::getQt(env, obj))->keywords(); - return (jobject) QtSupport::arrayWithTQStringList(env, (TQStringList*) &_qlist); -} - -JNIEXPORT jstring JNICALL -Java_org_kde_koala_TDECModuleInfo_library(JNIEnv* env, jobject obj) -{ - TQString _qstring; - _qstring = ((TDECModuleInfo*) QtSupport::getQt(env, obj))->library(); - return QtSupport::fromTQString(env, &_qstring); -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDECModuleInfo_loadAll(JNIEnv* env, jobject obj) -{ - ((TDECModuleInfoJBridge*) QtSupport::getQt(env, obj))->protected_loadAll(); - return; -} - -JNIEXPORT jstring JNICALL -Java_org_kde_koala_TDECModuleInfo_moduleName(JNIEnv* env, jobject obj) -{ - TQString _qstring; - _qstring = ((TDECModuleInfo*) QtSupport::getQt(env, obj))->moduleName(); - return QtSupport::fromTQString(env, &_qstring); -} - -JNIEXPORT jboolean JNICALL -Java_org_kde_koala_TDECModuleInfo_needsRootPrivileges(JNIEnv* env, jobject obj) -{ - jboolean xret = (jboolean) ((TDECModuleInfo*) QtSupport::getQt(env, obj))->needsRootPrivileges(); - return xret; -} - -JNIEXPORT jboolean JNICALL -Java_org_kde_koala_TDECModuleInfo_needsTest(JNIEnv* env, jobject obj) -{ - jboolean xret = (jboolean) ((TDECModuleInfo*) QtSupport::getQt(env, obj))->needsTest(); - return xret; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDECModuleInfo_newTDECModuleInfo__(JNIEnv* env, jobject obj) -{ - if (QtSupport::getQt(env, obj) == 0) { - QtSupport::setQt(env, obj, new TDECModuleInfoJBridge()); - QtSupport::setObjectForQtKey(env, obj, QtSupport::getQt(env, obj)); - } - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDECModuleInfo_newTDECModuleInfo__Ljava_lang_String_2(JNIEnv* env, jobject obj, jstring desktopFile) -{ -static TQString* _qstring_desktopFile = 0; - if (QtSupport::getQt(env, obj) == 0) { - QtSupport::setQt(env, obj, new TDECModuleInfoJBridge((const TQString&)*(TQString*) QtSupport::toTQString(env, desktopFile, &_qstring_desktopFile))); - QtSupport::setObjectForQtKey(env, obj, QtSupport::getQt(env, obj)); - } - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDECModuleInfo_newTDECModuleInfo__Lorg_kde_koala_TDECModuleInfo_2(JNIEnv* env, jobject obj, jobject rhs) -{ - if (QtSupport::getQt(env, obj) == 0) { - QtSupport::setQt(env, obj, new TDECModuleInfoJBridge((const TDECModuleInfo&)*(const TDECModuleInfo*) QtSupport::getQt(env, rhs))); - QtSupport::setObjectForQtKey(env, obj, QtSupport::getQt(env, obj)); - } - return; -} - -JNIEXPORT jboolean JNICALL -Java_org_kde_koala_TDECModuleInfo_op_1equals(JNIEnv* env, jobject obj, jobject rhs) -{ - jboolean xret = (jboolean) ((TDECModuleInfo*) QtSupport::getQt(env, obj))->operator==((const TDECModuleInfo&)*(const TDECModuleInfo*) QtSupport::getQt(env, rhs)); - return xret; -} - -JNIEXPORT jboolean JNICALL -Java_org_kde_koala_TDECModuleInfo_op_1not_1equals(JNIEnv* env, jobject obj, jobject rhs) -{ - jboolean xret = (jboolean) ((TDECModuleInfo*) QtSupport::getQt(env, obj))->operator!=((const TDECModuleInfo&)*(const TDECModuleInfo*) QtSupport::getQt(env, rhs)); - return xret; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDECModuleInfo_setComment(JNIEnv* env, jobject obj, jstring comment) -{ -static TQString* _qstring_comment = 0; - ((TDECModuleInfoJBridge*) QtSupport::getQt(env, obj))->protected_setComment((const TQString&)*(TQString*) QtSupport::toTQString(env, comment, &_qstring_comment)); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDECModuleInfo_setDocPath(JNIEnv* env, jobject obj, jstring p) -{ -static TQString* _qstring_p = 0; - ((TDECModuleInfoJBridge*) QtSupport::getQt(env, obj))->protected_setDocPath((const TQString&)*(TQString*) QtSupport::toTQString(env, p, &_qstring_p)); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDECModuleInfo_setHandle(JNIEnv* env, jobject obj, jstring handle) -{ -static TQString* _qstring_handle = 0; - ((TDECModuleInfoJBridge*) QtSupport::getQt(env, obj))->protected_setHandle((const TQString&)*(TQString*) QtSupport::toTQString(env, handle, &_qstring_handle)); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDECModuleInfo_setIcon(JNIEnv* env, jobject obj, jstring icon) -{ -static TQString* _qstring_icon = 0; - ((TDECModuleInfoJBridge*) QtSupport::getQt(env, obj))->protected_setIcon((const TQString&)*(TQString*) QtSupport::toTQString(env, icon, &_qstring_icon)); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDECModuleInfo_setKeywords(JNIEnv* env, jobject obj, jobjectArray keyword) -{ -static TQStringList* _qlist_keyword = 0; - ((TDECModuleInfoJBridge*) QtSupport::getQt(env, obj))->protected_setKeywords((const TQStringList&)*(TQStringList*) QtSupport::toTQStringList(env, keyword, &_qlist_keyword)); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDECModuleInfo_setLibrary(JNIEnv* env, jobject obj, jstring lib) -{ -static TQString* _qstring_lib = 0; - ((TDECModuleInfoJBridge*) QtSupport::getQt(env, obj))->protected_setLibrary((const TQString&)*(TQString*) QtSupport::toTQString(env, lib, &_qstring_lib)); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDECModuleInfo_setName(JNIEnv* env, jobject obj, jstring name) -{ -static TQString* _qstring_name = 0; - ((TDECModuleInfoJBridge*) QtSupport::getQt(env, obj))->protected_setName((const TQString&)*(TQString*) QtSupport::toTQString(env, name, &_qstring_name)); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDECModuleInfo_setNeedsRootPrivileges(JNIEnv* env, jobject obj, jboolean needsRootPrivileges) -{ - ((TDECModuleInfoJBridge*) QtSupport::getQt(env, obj))->protected_setNeedsRootPrivileges((bool) needsRootPrivileges); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDECModuleInfo_setNeedsTest(JNIEnv* env, jobject obj, jboolean val) -{ - ((TDECModuleInfoJBridge*) QtSupport::getQt(env, obj))->protected_setNeedsTest((bool) val); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDECModuleInfo_setWeight(JNIEnv* env, jobject obj, jint weight) -{ - ((TDECModuleInfoJBridge*) QtSupport::getQt(env, obj))->protected_setWeight((int) weight); - return; -} - -JNIEXPORT jint JNICALL -Java_org_kde_koala_TDECModuleInfo_weight(JNIEnv* env, jobject obj) -{ - jint xret = (jint) ((TDECModuleInfo*) QtSupport::getQt(env, obj))->weight(); - return xret; -} - diff --git a/kdejava/koala/kdejava/KCModuleInfo.h b/kdejava/koala/kdejava/KCModuleInfo.h deleted file mode 100644 index 5ea85bd2..00000000 --- a/kdejava/koala/kdejava/KCModuleInfo.h +++ /dev/null @@ -1,49 +0,0 @@ -/* DO NOT EDIT THIS FILE - it is machine generated */ - -#ifndef __org_kde_koala_TDECModuleInfo__ -#define __org_kde_koala_TDECModuleInfo__ - -#include - -#ifdef __cplusplus -extern "C" -{ -#endif - -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDECModuleInfo_newTDECModuleInfo__Ljava_lang_String_2 (JNIEnv *env, jobject, jstring); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDECModuleInfo_newTDECModuleInfo__Lorg_kde_koala_TDECModuleInfo_2 (JNIEnv *env, jobject, jobject); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDECModuleInfo_newTDECModuleInfo__ (JNIEnv *env, jobject); -extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_TDECModuleInfo_op_1equals (JNIEnv *env, jobject, jobject); -extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_TDECModuleInfo_op_1not_1equals (JNIEnv *env, jobject, jobject); -extern JNIEXPORT jstring JNICALL Java_org_kde_koala_TDECModuleInfo_fileName (JNIEnv *env, jobject); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_TDECModuleInfo_keywords (JNIEnv *env, jobject); -extern JNIEXPORT jstring JNICALL Java_org_kde_koala_TDECModuleInfo_factoryName (JNIEnv *env, jobject); -extern JNIEXPORT jstring JNICALL Java_org_kde_koala_TDECModuleInfo_moduleName (JNIEnv *env, jobject); -extern JNIEXPORT jstring JNICALL Java_org_kde_koala_TDECModuleInfo_comment (JNIEnv *env, jobject); -extern JNIEXPORT jstring JNICALL Java_org_kde_koala_TDECModuleInfo_icon (JNIEnv *env, jobject); -extern JNIEXPORT jstring JNICALL Java_org_kde_koala_TDECModuleInfo_docPath (JNIEnv *env, jobject); -extern JNIEXPORT jstring JNICALL Java_org_kde_koala_TDECModuleInfo_library (JNIEnv *env, jobject); -extern JNIEXPORT jstring JNICALL Java_org_kde_koala_TDECModuleInfo_handle (JNIEnv *env, jobject); -extern JNIEXPORT jint JNICALL Java_org_kde_koala_TDECModuleInfo_weight (JNIEnv *env, jobject); -extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_TDECModuleInfo_needsRootPrivileges (JNIEnv *env, jobject); -extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_TDECModuleInfo_needsTest (JNIEnv *env, jobject); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDECModuleInfo_setKeywords (JNIEnv *env, jobject, jobjectArray); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDECModuleInfo_setName (JNIEnv *env, jobject, jstring); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDECModuleInfo_setComment (JNIEnv *env, jobject, jstring); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDECModuleInfo_setIcon (JNIEnv *env, jobject, jstring); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDECModuleInfo_setLibrary (JNIEnv *env, jobject, jstring); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDECModuleInfo_setHandle (JNIEnv *env, jobject, jstring); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDECModuleInfo_setWeight (JNIEnv *env, jobject, jint); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDECModuleInfo_setNeedsTest (JNIEnv *env, jobject, jboolean); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDECModuleInfo_setNeedsRootPrivileges (JNIEnv *env, jobject, jboolean); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDECModuleInfo_setDocPath (JNIEnv *env, jobject, jstring); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDECModuleInfo_loadAll (JNIEnv *env, jobject); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDECModuleInfo_finalize (JNIEnv *env, jobject); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDECModuleInfo_dispose (JNIEnv *env, jobject); -extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_TDECModuleInfo_isDisposed (JNIEnv *env, jobject); - -#ifdef __cplusplus -} -#endif - -#endif /* __org_kde_koala_TDECModuleInfo__ */ diff --git a/kdejava/koala/kdejava/KCModuleLoader.cpp b/kdejava/koala/kdejava/KCModuleLoader.cpp deleted file mode 100644 index e33cb32f..00000000 --- a/kdejava/koala/kdejava/KCModuleLoader.cpp +++ /dev/null @@ -1,167 +0,0 @@ -//Auto-generated by kalyptus. DO NOT EDIT. -#include -#include -#include -#include - -#include -#include -#include - -class TDECModuleLoaderJBridge : public TDECModuleLoader -{ -public: - TDECModuleLoaderJBridge() : TDECModuleLoader() {}; - ~TDECModuleLoaderJBridge() {QtSupport::qtKeyDeleted(this);} -}; - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDECModuleLoader_dispose(JNIEnv* env, jobject obj) -{ - Java_org_kde_koala_TDECModuleLoader_finalize(env, obj); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDECModuleLoader_finalize(JNIEnv* env, jobject obj) -{ - if (QtSupport::allocatedInJavaWorld(env, obj)) { - delete (TDECModuleLoader*)QtSupport::getQt(env, obj); - QtSupport::setQt(env, obj, 0); - } - return; -} - -JNIEXPORT jboolean JNICALL -Java_org_kde_koala_TDECModuleLoader_isDisposed(JNIEnv* env, jobject obj) -{ - return (QtSupport::getQt(env, obj) == 0); -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_TDECModuleLoader_loadModule__Ljava_lang_String_2I(JNIEnv* env, jclass cls, jstring module, jint report) -{ - (void) cls; -static TQString* _qstring_module = 0; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDECModuleLoaderJBridge::loadModule((const TQString&)*(TQString*) QtSupport::toTQString(env, module, &_qstring_module), (TDECModuleLoader::ErrorReporting) report), "org.kde.koala.TDECModule"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_TDECModuleLoader_loadModule__Ljava_lang_String_2ILorg_kde_qt_QWidget_2(JNIEnv* env, jclass cls, jstring module, jint report, jobject parent) -{ - (void) cls; -static TQString* _qstring_module = 0; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDECModuleLoaderJBridge::loadModule((const TQString&)*(TQString*) QtSupport::toTQString(env, module, &_qstring_module), (TDECModuleLoader::ErrorReporting) report, (TQWidget*) QtSupport::getQt(env, parent)), "org.kde.koala.TDECModule"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_TDECModuleLoader_loadModule__Ljava_lang_String_2ILorg_kde_qt_QWidget_2Ljava_lang_String_2(JNIEnv* env, jclass cls, jstring module, jint report, jobject parent, jstring name) -{ - (void) cls; -static TQString* _qstring_module = 0; -static TQCString* _qstring_name = 0; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDECModuleLoaderJBridge::loadModule((const TQString&)*(TQString*) QtSupport::toTQString(env, module, &_qstring_module), (TDECModuleLoader::ErrorReporting) report, (TQWidget*) QtSupport::getQt(env, parent), (const char*) QtSupport::toCharString(env, name, &_qstring_name)), "org.kde.koala.TDECModule"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_TDECModuleLoader_loadModule__Ljava_lang_String_2ILorg_kde_qt_QWidget_2Ljava_lang_String_2_3Ljava_lang_String_2(JNIEnv* env, jclass cls, jstring module, jint report, jobject parent, jstring name, jobjectArray args) -{ - (void) cls; -static TQString* _qstring_module = 0; -static TQCString* _qstring_name = 0; -static TQStringList* _qlist_args = 0; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDECModuleLoaderJBridge::loadModule((const TQString&)*(TQString*) QtSupport::toTQString(env, module, &_qstring_module), (TDECModuleLoader::ErrorReporting) report, (TQWidget*) QtSupport::getQt(env, parent), (const char*) QtSupport::toCharString(env, name, &_qstring_name), (const TQStringList&)*(TQStringList*) QtSupport::toTQStringList(env, args, &_qlist_args)), "org.kde.koala.TDECModule"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_TDECModuleLoader_loadModule__Lorg_kde_koala_TDECModuleInfo_2I(JNIEnv* env, jclass cls, jobject module, jint report) -{ - (void) cls; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDECModuleLoaderJBridge::loadModule((const TDECModuleInfo&)*(const TDECModuleInfo*) QtSupport::getQt(env, module), (TDECModuleLoader::ErrorReporting) report), "org.kde.koala.TDECModule"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_TDECModuleLoader_loadModule__Lorg_kde_koala_TDECModuleInfo_2IZ(JNIEnv* env, jclass cls, jobject module, jint report, jboolean withFallback) -{ - (void) cls; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDECModuleLoaderJBridge::loadModule((const TDECModuleInfo&)*(const TDECModuleInfo*) QtSupport::getQt(env, module), (TDECModuleLoader::ErrorReporting) report, (bool) withFallback), "org.kde.koala.TDECModule"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_TDECModuleLoader_loadModule__Lorg_kde_koala_TDECModuleInfo_2IZLorg_kde_qt_QWidget_2(JNIEnv* env, jclass cls, jobject module, jint report, jboolean withFallback, jobject parent) -{ - (void) cls; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDECModuleLoaderJBridge::loadModule((const TDECModuleInfo&)*(const TDECModuleInfo*) QtSupport::getQt(env, module), (TDECModuleLoader::ErrorReporting) report, (bool) withFallback, (TQWidget*) QtSupport::getQt(env, parent)), "org.kde.koala.TDECModule"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_TDECModuleLoader_loadModule__Lorg_kde_koala_TDECModuleInfo_2IZLorg_kde_qt_QWidget_2Ljava_lang_String_2(JNIEnv* env, jclass cls, jobject module, jint report, jboolean withFallback, jobject parent, jstring name) -{ - (void) cls; -static TQCString* _qstring_name = 0; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDECModuleLoaderJBridge::loadModule((const TDECModuleInfo&)*(const TDECModuleInfo*) QtSupport::getQt(env, module), (TDECModuleLoader::ErrorReporting) report, (bool) withFallback, (TQWidget*) QtSupport::getQt(env, parent), (const char*) QtSupport::toCharString(env, name, &_qstring_name)), "org.kde.koala.TDECModule"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_TDECModuleLoader_loadModule__Lorg_kde_koala_TDECModuleInfo_2IZLorg_kde_qt_QWidget_2Ljava_lang_String_2_3Ljava_lang_String_2(JNIEnv* env, jclass cls, jobject module, jint report, jboolean withFallback, jobject parent, jstring name, jobjectArray args) -{ - (void) cls; -static TQCString* _qstring_name = 0; -static TQStringList* _qlist_args = 0; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDECModuleLoaderJBridge::loadModule((const TDECModuleInfo&)*(const TDECModuleInfo*) QtSupport::getQt(env, module), (TDECModuleLoader::ErrorReporting) report, (bool) withFallback, (TQWidget*) QtSupport::getQt(env, parent), (const char*) QtSupport::toCharString(env, name, &_qstring_name), (const TQStringList&)*(TQStringList*) QtSupport::toTQStringList(env, args, &_qlist_args)), "org.kde.koala.TDECModule"); - return xret; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDECModuleLoader_newTDECModuleLoader(JNIEnv* env, jobject obj) -{ - if (QtSupport::getQt(env, obj) == 0) { - QtSupport::setQt(env, obj, new TDECModuleLoaderJBridge()); - QtSupport::setObjectForQtKey(env, obj, QtSupport::getQt(env, obj)); - } - return; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_TDECModuleLoader_reportError(JNIEnv* env, jclass cls, jint report, jstring text, jstring details, jobject parent) -{ - (void) cls; -static TQString* _qstring_text = 0; -static TQString* _qstring_details = 0; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDECModuleLoaderJBridge::reportError((TDECModuleLoader::ErrorReporting) report, (const TQString&)*(TQString*) QtSupport::toTQString(env, text, &_qstring_text), (TQString)*(TQString*) QtSupport::toTQString(env, details, &_qstring_details), (TQWidget*) QtSupport::getQt(env, parent)), "org.kde.koala.TDECModule"); - return xret; -} - -JNIEXPORT jboolean JNICALL -Java_org_kde_koala_TDECModuleLoader_testModule__Ljava_lang_String_2(JNIEnv* env, jclass cls, jstring module) -{ - (void) cls; -static TQString* _qstring_module = 0; - jboolean xret = (jboolean) TDECModuleLoaderJBridge::testModule((const TQString&)*(TQString*) QtSupport::toTQString(env, module, &_qstring_module)); - return xret; -} - -JNIEXPORT jboolean JNICALL -Java_org_kde_koala_TDECModuleLoader_testModule__Lorg_kde_koala_TDECModuleInfo_2(JNIEnv* env, jclass cls, jobject module) -{ - (void) cls; - jboolean xret = (jboolean) TDECModuleLoaderJBridge::testModule((const TDECModuleInfo&)*(const TDECModuleInfo*) QtSupport::getQt(env, module)); - return xret; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDECModuleLoader_unloadModule(JNIEnv* env, jclass cls, jobject mod) -{ - (void) cls; - TDECModuleLoaderJBridge::unloadModule((const TDECModuleInfo&)*(const TDECModuleInfo*) QtSupport::getQt(env, mod)); - return; -} - diff --git a/kdejava/koala/kdejava/KCModuleLoader.h b/kdejava/koala/kdejava/KCModuleLoader.h deleted file mode 100644 index 29d48315..00000000 --- a/kdejava/koala/kdejava/KCModuleLoader.h +++ /dev/null @@ -1,35 +0,0 @@ -/* DO NOT EDIT THIS FILE - it is machine generated */ - -#ifndef __org_kde_koala_TDECModuleLoader__ -#define __org_kde_koala_TDECModuleLoader__ - -#include - -#ifdef __cplusplus -extern "C" -{ -#endif - -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDECModuleLoader_newTDECModuleLoader (JNIEnv *env, jobject); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_TDECModuleLoader_loadModule__Lorg_kde_koala_TDECModuleInfo_2IZLorg_kde_qt_QWidget_2Ljava_lang_String_2_3Ljava_lang_String_2 (JNIEnv *env, jclass, jobject, jint, jboolean, jobject, jstring, jobjectArray); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_TDECModuleLoader_loadModule__Lorg_kde_koala_TDECModuleInfo_2IZLorg_kde_qt_QWidget_2Ljava_lang_String_2 (JNIEnv *env, jclass, jobject, jint, jboolean, jobject, jstring); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_TDECModuleLoader_loadModule__Lorg_kde_koala_TDECModuleInfo_2IZLorg_kde_qt_QWidget_2 (JNIEnv *env, jclass, jobject, jint, jboolean, jobject); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_TDECModuleLoader_loadModule__Lorg_kde_koala_TDECModuleInfo_2IZ (JNIEnv *env, jclass, jobject, jint, jboolean); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_TDECModuleLoader_loadModule__Lorg_kde_koala_TDECModuleInfo_2I (JNIEnv *env, jclass, jobject, jint); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_TDECModuleLoader_loadModule__Ljava_lang_String_2ILorg_kde_qt_QWidget_2Ljava_lang_String_2_3Ljava_lang_String_2 (JNIEnv *env, jclass, jstring, jint, jobject, jstring, jobjectArray); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_TDECModuleLoader_loadModule__Ljava_lang_String_2ILorg_kde_qt_QWidget_2Ljava_lang_String_2 (JNIEnv *env, jclass, jstring, jint, jobject, jstring); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_TDECModuleLoader_loadModule__Ljava_lang_String_2ILorg_kde_qt_QWidget_2 (JNIEnv *env, jclass, jstring, jint, jobject); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_TDECModuleLoader_loadModule__Ljava_lang_String_2I (JNIEnv *env, jclass, jstring, jint); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDECModuleLoader_unloadModule (JNIEnv *env, jclass, jobject); -extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_TDECModuleLoader_testModule__Ljava_lang_String_2 (JNIEnv *env, jclass, jstring); -extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_TDECModuleLoader_testModule__Lorg_kde_koala_TDECModuleInfo_2 (JNIEnv *env, jclass, jobject); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_TDECModuleLoader_reportError (JNIEnv *env, jclass, jint, jstring, jstring, jobject); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDECModuleLoader_finalize (JNIEnv *env, jobject); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDECModuleLoader_dispose (JNIEnv *env, jobject); -extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_TDECModuleLoader_isDisposed (JNIEnv *env, jobject); - -#ifdef __cplusplus -} -#endif - -#endif /* __org_kde_koala_TDECModuleLoader__ */ diff --git a/kdejava/koala/kdejava/KConfig.cpp b/kdejava/koala/kdejava/KConfig.cpp deleted file mode 100644 index dc571a89..00000000 --- a/kdejava/koala/kdejava/KConfig.cpp +++ /dev/null @@ -1,318 +0,0 @@ -//Auto-generated by kalyptus. DO NOT EDIT. -#include -#include -#include -#include -#include - -#include -#include -#include - -class TDEConfigJBridge : public TDEConfig -{ -public: - TDEConfigJBridge(const TQString& arg1,bool arg2,bool arg3,const char* arg4) : TDEConfig(arg1,arg2,arg3,arg4) {}; - TDEConfigJBridge(const TQString& arg1,bool arg2,bool arg3) : TDEConfig(arg1,arg2,arg3) {}; - TDEConfigJBridge(const TQString& arg1,bool arg2) : TDEConfig(arg1,arg2) {}; - TDEConfigJBridge(const TQString& arg1) : TDEConfig(arg1) {}; - TDEConfigJBridge() : TDEConfig() {}; - TDEConfigJBridge(TDEConfigBackEnd* arg1,bool arg2) : TDEConfig(arg1,arg2) {}; - TDEConfigJBridge(TDEConfigBackEnd* arg1) : TDEConfig(arg1) {}; - void public_rollback() { - TDEConfig::rollback(); - return; - } - void public_reparseConfiguration() { - TDEConfig::reparseConfiguration(); - return; - } - bool protected_internalHasGroup(const TQCString& arg1) { - return (bool) TDEConfig::internalHasGroup(arg1); - } - void protected_putData(const KEntryKey& arg1,const KEntry& arg2,bool arg3) { - TDEConfig::putData(arg1,arg2,arg3); - return; - } - void protected_putData(const KEntryKey& arg1,const KEntry& arg2) { - TDEConfig::putData(arg1,arg2); - return; - } - KEntry protected_lookupData(const KEntryKey& arg1) { - return (KEntry) TDEConfig::lookupData(arg1); - } - ~TDEConfigJBridge() {QtSupport::qtKeyDeleted(this);} - void removeChild(TQObject* arg1) { - if (!QtSupport::eventDelegate(this,"removeChild",(void*)arg1,"org.kde.qt.TQObject")) { - TQObject::removeChild(arg1); - } - return; - } - void reparseConfiguration() { - if (!QtSupport::voidDelegate(this,"org.kde.koala.TDEConfig","reparseConfiguration")) { - TDEConfig::reparseConfiguration(); - } - 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 sync() { - if (!QtSupport::voidDelegate(this,"org.kde.koala.TDEConfig","sync")) { - TDEConfigBase::sync(); - } - return; - } - void insertChild(TQObject* arg1) { - if (!QtSupport::eventDelegate(this,"insertChild",(void*)arg1,"org.kde.qt.TQObject")) { - TQObject::insertChild(arg1); - } - return; - } - void parseConfigFiles() { - if (!QtSupport::voidDelegate(this,"org.kde.koala.TDEConfig","parseConfigFiles")) { - TDEConfigBase::parseConfigFiles(); - } - return; - } - bool eventFilter(TQObject* object,TQEvent* event) { - if (!QtSupport::eventFilterDelegate(this,"org.kde.koala.TDEConfig",object,event)) { - return TQObject::eventFilter(object,event); - } else { - return TRUE; - } - } -}; - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfig_checkUpdate(JNIEnv* env, jobject obj, jstring id, jstring updateFile) -{ -static TQString* _qstring_id = 0; -static TQString* _qstring_updateFile = 0; - ((TDEConfig*) QtSupport::getQt(env, obj))->checkUpdate((const TQString&)*(TQString*) QtSupport::toTQString(env, id, &_qstring_id), (const TQString&)*(TQString*) QtSupport::toTQString(env, updateFile, &_qstring_updateFile)); - return; -} - -JNIEXPORT jstring JNICALL -Java_org_kde_koala_TDEConfig_className(JNIEnv* env, jobject obj) -{ - const char* _qstring; - _qstring = ((TDEConfig*) QtSupport::getQt(env, obj))->className(); - return QtSupport::fromCharString(env, (char *) _qstring); -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_TDEConfig_copyTo__Ljava_lang_String_2(JNIEnv* env, jobject obj, jstring file) -{ -static TQString* _qstring_file = 0; - jobject xret = QtSupport::objectForQtKey(env, (void*)((TDEConfig*) QtSupport::getQt(env, obj))->copyTo((const TQString&)*(TQString*) QtSupport::toTQString(env, file, &_qstring_file)), "org.kde.koala.TDEConfig"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_TDEConfig_copyTo__Ljava_lang_String_2Lorg_kde_koala_TDEConfig_2(JNIEnv* env, jobject obj, jstring file, jobject config) -{ -static TQString* _qstring_file = 0; - jobject xret = QtSupport::objectForQtKey(env, (void*)((TDEConfig*) QtSupport::getQt(env, obj))->copyTo((const TQString&)*(TQString*) QtSupport::toTQString(env, file, &_qstring_file), (TDEConfig*) QtSupport::getQt(env, config)), "org.kde.koala.TDEConfig"); - return xret; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfig_dispose(JNIEnv* env, jobject obj) -{ - Java_org_kde_koala_TDEConfig_finalize(env, obj); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfig_finalize(JNIEnv* env, jobject obj) -{ - if (QtSupport::allocatedInJavaWorld(env, obj) && ((TDEConfig*)QtSupport::getQt(env, obj))->parent() == 0) { - delete (TDEConfig*)QtSupport::getQt(env, obj); - QtSupport::setQt(env, obj, 0); - } - return; -} - -JNIEXPORT jboolean JNICALL -Java_org_kde_koala_TDEConfig_forceGlobal(JNIEnv* env, jobject obj) -{ - jboolean xret = (jboolean) ((TDEConfig*) QtSupport::getQt(env, obj))->forceGlobal(); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_TDEConfig_groupList(JNIEnv* env, jobject obj) -{ - TQStringList _qlist; - _qlist = ((TDEConfig*) QtSupport::getQt(env, obj))->groupList(); - return (jobject) QtSupport::arrayWithTQStringList(env, (TQStringList*) &_qlist); -} - -JNIEXPORT jboolean JNICALL -Java_org_kde_koala_TDEConfig_internalHasGroup(JNIEnv* env, jobject obj, jstring group) -{ -static TQCString* _qcstring_group = 0; - jboolean xret = (jboolean) ((TDEConfigJBridge*) QtSupport::getQt(env, obj))->protected_internalHasGroup((const TQCString&)*(TQCString*) QtSupport::toTQCString(env, group, &_qcstring_group)); - return xret; -} - -JNIEXPORT jboolean JNICALL -Java_org_kde_koala_TDEConfig_isDisposed(JNIEnv* env, jobject obj) -{ - return (QtSupport::getQt(env, obj) == 0); -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_TDEConfig_lookupData(JNIEnv* env, jobject obj, jobject _key) -{ - jobject xret = QtSupport::objectForQtKey(env, (void*)new KEntry(((TDEConfigJBridge*) QtSupport::getQt(env, obj))->protected_lookupData((const KEntryKey&)*(const KEntryKey*) QtSupport::getQt(env, _key))), "org.kde.koala.KEntry", TRUE); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_TDEConfig_metaObject(JNIEnv* env, jobject obj) -{ - jobject xret = QtSupport::objectForQtKey(env, (void*)((TDEConfig*) QtSupport::getQt(env, obj))->metaObject(), "org.kde.qt.TQMetaObject"); - return xret; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfig_newTDEConfig__(JNIEnv* env, jobject obj) -{ - if (QtSupport::getQt(env, obj) == 0) { - QtSupport::setQt(env, obj, new TDEConfigJBridge()); - QtSupport::setObjectForQtKey(env, obj, QtSupport::getQt(env, obj)); - } - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfig_newTDEConfig__Ljava_lang_String_2(JNIEnv* env, jobject obj, jstring fileName) -{ -static TQString* _qstring_fileName = 0; - if (QtSupport::getQt(env, obj) == 0) { - QtSupport::setQt(env, obj, new TDEConfigJBridge((const TQString&)*(TQString*) QtSupport::toTQString(env, fileName, &_qstring_fileName))); - QtSupport::setObjectForQtKey(env, obj, QtSupport::getQt(env, obj)); - } - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfig_newTDEConfig__Ljava_lang_String_2Z(JNIEnv* env, jobject obj, jstring fileName, jboolean bReadOnly) -{ -static TQString* _qstring_fileName = 0; - if (QtSupport::getQt(env, obj) == 0) { - QtSupport::setQt(env, obj, new TDEConfigJBridge((const TQString&)*(TQString*) QtSupport::toTQString(env, fileName, &_qstring_fileName), (bool) bReadOnly)); - QtSupport::setObjectForQtKey(env, obj, QtSupport::getQt(env, obj)); - } - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfig_newTDEConfig__Ljava_lang_String_2ZZ(JNIEnv* env, jobject obj, jstring fileName, jboolean bReadOnly, jboolean bUseKDEGlobals) -{ -static TQString* _qstring_fileName = 0; - if (QtSupport::getQt(env, obj) == 0) { - QtSupport::setQt(env, obj, new TDEConfigJBridge((const TQString&)*(TQString*) QtSupport::toTQString(env, fileName, &_qstring_fileName), (bool) bReadOnly, (bool) bUseKDEGlobals)); - QtSupport::setObjectForQtKey(env, obj, QtSupport::getQt(env, obj)); - } - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfig_newTDEConfig__Ljava_lang_String_2ZZLjava_lang_String_2(JNIEnv* env, jobject obj, jstring fileName, jboolean bReadOnly, jboolean bUseKDEGlobals, jstring resType) -{ -static TQString* _qstring_fileName = 0; -static TQCString* _qstring_resType = 0; - if (QtSupport::getQt(env, obj) == 0) { - QtSupport::setQt(env, obj, new TDEConfigJBridge((const TQString&)*(TQString*) QtSupport::toTQString(env, fileName, &_qstring_fileName), (bool) bReadOnly, (bool) bUseKDEGlobals, (const char*) QtSupport::toCharString(env, resType, &_qstring_resType))); - QtSupport::setObjectForQtKey(env, obj, QtSupport::getQt(env, obj)); - } - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfig_newTDEConfig__Lorg_kde_koala_TDEConfigBackEnd_2(JNIEnv* env, jobject obj, jobject backEnd) -{ - if (QtSupport::getQt(env, obj) == 0) { - QtSupport::setQt(env, obj, new TDEConfigJBridge((TDEConfigBackEnd*) QtSupport::getQt(env, backEnd))); - QtSupport::setObjectForQtKey(env, obj, QtSupport::getQt(env, obj)); - } - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfig_newTDEConfig__Lorg_kde_koala_TDEConfigBackEnd_2Z(JNIEnv* env, jobject obj, jobject backEnd, jboolean bReadOnly) -{ - if (QtSupport::getQt(env, obj) == 0) { - QtSupport::setQt(env, obj, new TDEConfigJBridge((TDEConfigBackEnd*) QtSupport::getQt(env, backEnd), (bool) bReadOnly)); - QtSupport::setObjectForQtKey(env, obj, QtSupport::getQt(env, obj)); - } - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfig_putData__Lorg_kde_koala_KEntryKey_2Lorg_kde_koala_KEntry_2(JNIEnv* env, jobject obj, jobject _key, jobject _data) -{ - ((TDEConfigJBridge*) QtSupport::getQt(env, obj))->protected_putData((const KEntryKey&)*(const KEntryKey*) QtSupport::getQt(env, _key), (const KEntry&)*(const KEntry*) QtSupport::getQt(env, _data)); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfig_putData__Lorg_kde_koala_KEntryKey_2Lorg_kde_koala_KEntry_2Z(JNIEnv* env, jobject obj, jobject _key, jobject _data, jboolean _checkGroup) -{ - ((TDEConfigJBridge*) QtSupport::getQt(env, obj))->protected_putData((const KEntryKey&)*(const KEntryKey*) QtSupport::getQt(env, _key), (const KEntry&)*(const KEntry*) QtSupport::getQt(env, _data), (bool) _checkGroup); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfig_reparseConfiguration(JNIEnv* env, jobject obj) -{ - ((TDEConfigJBridge*) QtSupport::getQt(env, obj))->public_reparseConfiguration(); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfig_rollback__(JNIEnv* env, jobject obj) -{ - ((TDEConfigJBridge*) QtSupport::getQt(env, obj))->public_rollback(); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfig_rollback__Z(JNIEnv* env, jobject obj, jboolean bDeep) -{ - ((TDEConfig*) QtSupport::getQt(env, obj))->rollback((bool) bDeep); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfig_setFileWriteMode(JNIEnv* env, jobject obj, jint mode) -{ - ((TDEConfig*) QtSupport::getQt(env, obj))->setFileWriteMode((int) mode); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfig_setForceGlobal(JNIEnv* env, jobject obj, jboolean force) -{ - ((TDEConfig*) QtSupport::getQt(env, obj))->setForceGlobal((bool) force); - return; -} - diff --git a/kdejava/koala/kdejava/KConfig.h b/kdejava/koala/kdejava/KConfig.h deleted file mode 100644 index b8420762..00000000 --- a/kdejava/koala/kdejava/KConfig.h +++ /dev/null @@ -1,44 +0,0 @@ -/* DO NOT EDIT THIS FILE - it is machine generated */ - -#ifndef __org_kde_koala_TDEConfig__ -#define __org_kde_koala_TDEConfig__ - -#include - -#ifdef __cplusplus -extern "C" -{ -#endif - -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_TDEConfig_metaObject (JNIEnv *env, jobject); -extern JNIEXPORT jstring JNICALL Java_org_kde_koala_TDEConfig_className (JNIEnv *env, jobject); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfig_newTDEConfig__Ljava_lang_String_2ZZLjava_lang_String_2 (JNIEnv *env, jobject, jstring, jboolean, jboolean, jstring); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfig_newTDEConfig__Ljava_lang_String_2ZZ (JNIEnv *env, jobject, jstring, jboolean, jboolean); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfig_newTDEConfig__Ljava_lang_String_2Z (JNIEnv *env, jobject, jstring, jboolean); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfig_newTDEConfig__Ljava_lang_String_2 (JNIEnv *env, jobject, jstring); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfig_newTDEConfig__ (JNIEnv *env, jobject); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfig_newTDEConfig__Lorg_kde_koala_TDEConfigBackEnd_2Z (JNIEnv *env, jobject, jobject, jboolean); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfig_newTDEConfig__Lorg_kde_koala_TDEConfigBackEnd_2 (JNIEnv *env, jobject, jobject); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfig_rollback__Z (JNIEnv *env, jobject, jboolean); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfig_rollback__ (JNIEnv *env, jobject); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_TDEConfig_groupList (JNIEnv *env, jobject); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfig_reparseConfiguration (JNIEnv *env, jobject); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfig_setFileWriteMode (JNIEnv *env, jobject, jint); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfig_setForceGlobal (JNIEnv *env, jobject, jboolean); -extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_TDEConfig_forceGlobal (JNIEnv *env, jobject); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfig_checkUpdate (JNIEnv *env, jobject, jstring, jstring); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_TDEConfig_copyTo__Ljava_lang_String_2Lorg_kde_koala_TDEConfig_2 (JNIEnv *env, jobject, jstring, jobject); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_TDEConfig_copyTo__Ljava_lang_String_2 (JNIEnv *env, jobject, jstring); -extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_TDEConfig_internalHasGroup (JNIEnv *env, jobject, jstring); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfig_putData__Lorg_kde_koala_KEntryKey_2Lorg_kde_koala_KEntry_2Z (JNIEnv *env, jobject, jobject, jobject, jboolean); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfig_putData__Lorg_kde_koala_KEntryKey_2Lorg_kde_koala_KEntry_2 (JNIEnv *env, jobject, jobject, jobject); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_TDEConfig_lookupData (JNIEnv *env, jobject, jobject); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfig_finalize (JNIEnv *env, jobject); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfig_dispose (JNIEnv *env, jobject); -extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_TDEConfig_isDisposed (JNIEnv *env, jobject); - -#ifdef __cplusplus -} -#endif - -#endif /* __org_kde_koala_TDEConfig__ */ diff --git a/kdejava/koala/kdejava/KConfigBackEnd.cpp b/kdejava/koala/kdejava/KConfigBackEnd.cpp deleted file mode 100644 index 5834b960..00000000 --- a/kdejava/koala/kdejava/KConfigBackEnd.cpp +++ /dev/null @@ -1,85 +0,0 @@ -//Auto-generated by kalyptus. DO NOT EDIT. -#include -#include -#include -#include - -#include -#include -#include - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigBackEnd_changeFileName(JNIEnv* env, jobject obj, jstring _fileName, jstring _resType, jboolean _useKDEGlobals) -{ -static TQString* _qstring__fileName = 0; -static TQCString* _qstring__resType = 0; - ((TDEConfigBackEnd*) QtSupport::getQt(env, obj))->changeFileName((const TQString&)*(TQString*) QtSupport::toTQString(env, _fileName, &_qstring__fileName), (const char*) QtSupport::toCharString(env, _resType, &_qstring__resType), (bool) _useKDEGlobals); - return; -} - -JNIEXPORT jboolean JNICALL -Java_org_kde_koala_TDEConfigBackEnd_checkConfigFilesWritable(JNIEnv* env, jobject obj, jboolean warnUser) -{ - jboolean xret = (jboolean) ((TDEConfigBackEnd*) QtSupport::getQt(env, obj))->checkConfigFilesWritable((bool) warnUser); - return xret; -} - -JNIEXPORT jstring JNICALL -Java_org_kde_koala_TDEConfigBackEnd_fileName(JNIEnv* env, jobject obj) -{ - TQString _qstring; - _qstring = ((TDEConfigBackEnd*) QtSupport::getQt(env, obj))->fileName(); - return QtSupport::fromTQString(env, &_qstring); -} - -JNIEXPORT jint JNICALL -Java_org_kde_koala_TDEConfigBackEnd_getConfigState(JNIEnv* env, jobject obj) -{ - jint xret = (jint) ((TDEConfigBackEnd*) QtSupport::getQt(env, obj))->getConfigState(); - return xret; -} - -JNIEXPORT jboolean JNICALL -Java_org_kde_koala_TDEConfigBackEnd_parseConfigFiles(JNIEnv* env, jobject obj) -{ - jboolean xret = (jboolean) ((TDEConfigBackEnd*) QtSupport::getQt(env, obj))->parseConfigFiles(); - return xret; -} - -JNIEXPORT jstring JNICALL -Java_org_kde_koala_TDEConfigBackEnd_resource(JNIEnv* env, jobject obj) -{ - const char* _qstring; - _qstring = ((TDEConfigBackEnd*) QtSupport::getQt(env, obj))->resource(); - return QtSupport::fromCharString(env, (char *) _qstring); -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigBackEnd_setFileWriteMode(JNIEnv* env, jobject obj, jint mode) -{ - ((TDEConfigBackEnd*) QtSupport::getQt(env, obj))->setFileWriteMode((int) mode); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigBackEnd_setLocaleString(JNIEnv* env, jobject obj, jstring _localeString) -{ -static TQCString* _qcstring__localeString = 0; - ((TDEConfigBackEnd*) QtSupport::getQt(env, obj))->setLocaleString((const TQCString&)*(TQCString*) QtSupport::toTQCString(env, _localeString, &_qcstring__localeString)); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigBackEnd_sync__(JNIEnv* env, jobject obj) -{ - ((TDEConfigBackEnd*) QtSupport::getQt(env, obj))->sync(); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigBackEnd_sync__Z(JNIEnv* env, jobject obj, jboolean bMerge) -{ - ((TDEConfigBackEnd*) QtSupport::getQt(env, obj))->sync((bool) bMerge); - return; -} - diff --git a/kdejava/koala/kdejava/KConfigBackEnd.h b/kdejava/koala/kdejava/KConfigBackEnd.h deleted file mode 100644 index a537a4b8..00000000 --- a/kdejava/koala/kdejava/KConfigBackEnd.h +++ /dev/null @@ -1,28 +0,0 @@ -/* DO NOT EDIT THIS FILE - it is machine generated */ - -#ifndef __org_kde_koala_TDEConfigBackEnd__ -#define __org_kde_koala_TDEConfigBackEnd__ - -#include - -#ifdef __cplusplus -extern "C" -{ -#endif - -extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_TDEConfigBackEnd_parseConfigFiles (JNIEnv *env, jobject); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBackEnd_sync__Z (JNIEnv *env, jobject, jboolean); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBackEnd_sync__ (JNIEnv *env, jobject); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBackEnd_changeFileName (JNIEnv *env, jobject, jstring, jstring, jboolean); -extern JNIEXPORT jint JNICALL Java_org_kde_koala_TDEConfigBackEnd_getConfigState (JNIEnv *env, jobject); -extern JNIEXPORT jstring JNICALL Java_org_kde_koala_TDEConfigBackEnd_fileName (JNIEnv *env, jobject); -extern JNIEXPORT jstring JNICALL Java_org_kde_koala_TDEConfigBackEnd_resource (JNIEnv *env, jobject); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBackEnd_setLocaleString (JNIEnv *env, jobject, jstring); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBackEnd_setFileWriteMode (JNIEnv *env, jobject, jint); -extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_TDEConfigBackEnd_checkConfigFilesWritable (JNIEnv *env, jobject, jboolean); - -#ifdef __cplusplus -} -#endif - -#endif /* __org_kde_koala_TDEConfigBackEnd__ */ diff --git a/kdejava/koala/kdejava/KConfigBase.cpp b/kdejava/koala/kdejava/KConfigBase.cpp deleted file mode 100644 index 7ae6c398..00000000 --- a/kdejava/koala/kdejava/KConfigBase.cpp +++ /dev/null @@ -1,1201 +0,0 @@ -//Auto-generated by kalyptus. DO NOT EDIT. -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -#include -#include -#include - -JNIEXPORT jboolean JNICALL -Java_org_kde_koala_TDEConfigBase_checkConfigFilesWritable(JNIEnv* env, jobject obj, jboolean warnUser) -{ - jboolean xret = (jboolean) ((TDEConfigBase*) QtSupport::getQt(env, obj))->checkConfigFilesWritable((bool) warnUser); - return xret; -} - -JNIEXPORT jstring JNICALL -Java_org_kde_koala_TDEConfigBase_className(JNIEnv* env, jobject obj) -{ - const char* _qstring; - _qstring = ((TDEConfigBase*) QtSupport::getQt(env, obj))->className(); - return QtSupport::fromCharString(env, (char *) _qstring); -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigBase_deleteEntry__Ljava_lang_String_2(JNIEnv* env, jobject obj, jstring pKey) -{ -static TQString* _qstring_pKey = 0; - ((TDEConfigBase*) QtSupport::getQt(env, obj))->deleteEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey)); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigBase_deleteEntry__Ljava_lang_String_2Z(JNIEnv* env, jobject obj, jstring pKey, jboolean bNLS) -{ -static TQString* _qstring_pKey = 0; - ((TDEConfigBase*) QtSupport::getQt(env, obj))->deleteEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (bool) bNLS); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigBase_deleteEntry__Ljava_lang_String_2ZZ(JNIEnv* env, jobject obj, jstring pKey, jboolean bNLS, jboolean bGlobal) -{ -static TQString* _qstring_pKey = 0; - ((TDEConfigBase*) QtSupport::getQt(env, obj))->deleteEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (bool) bNLS, (bool) bGlobal); - return; -} - -JNIEXPORT jboolean JNICALL -Java_org_kde_koala_TDEConfigBase_deleteGroup__Ljava_lang_String_2(JNIEnv* env, jobject obj, jstring group) -{ -static TQString* _qstring_group = 0; - jboolean xret = (jboolean) ((TDEConfigBase*) QtSupport::getQt(env, obj))->deleteGroup((const TQString&)*(TQString*) QtSupport::toTQString(env, group, &_qstring_group)); - return xret; -} - -JNIEXPORT jboolean JNICALL -Java_org_kde_koala_TDEConfigBase_deleteGroup__Ljava_lang_String_2Z(JNIEnv* env, jobject obj, jstring group, jboolean bDeep) -{ -static TQString* _qstring_group = 0; - jboolean xret = (jboolean) ((TDEConfigBase*) QtSupport::getQt(env, obj))->deleteGroup((const TQString&)*(TQString*) QtSupport::toTQString(env, group, &_qstring_group), (bool) bDeep); - return xret; -} - -JNIEXPORT jboolean JNICALL -Java_org_kde_koala_TDEConfigBase_deleteGroup__Ljava_lang_String_2ZZ(JNIEnv* env, jobject obj, jstring group, jboolean bDeep, jboolean bGlobal) -{ -static TQString* _qstring_group = 0; - jboolean xret = (jboolean) ((TDEConfigBase*) QtSupport::getQt(env, obj))->deleteGroup((const TQString&)*(TQString*) QtSupport::toTQString(env, group, &_qstring_group), (bool) bDeep, (bool) bGlobal); - return xret; -} - -JNIEXPORT jboolean JNICALL -Java_org_kde_koala_TDEConfigBase_entryIsImmutable(JNIEnv* env, jobject obj, jstring key) -{ -static TQString* _qstring_key = 0; - jboolean xret = (jboolean) ((TDEConfigBase*) QtSupport::getQt(env, obj))->entryIsImmutable((const TQString&)*(TQString*) QtSupport::toTQString(env, key, &_qstring_key)); - return xret; -} - -JNIEXPORT jint JNICALL -Java_org_kde_koala_TDEConfigBase_getConfigState(JNIEnv* env, jobject obj) -{ - jint xret = (jint) ((TDEConfigBase*) QtSupport::getQt(env, obj))->getConfigState(); - return xret; -} - -JNIEXPORT jboolean JNICALL -Java_org_kde_koala_TDEConfigBase_groupIsImmutable(JNIEnv* env, jobject obj, jstring group) -{ -static TQString* _qstring_group = 0; - jboolean xret = (jboolean) ((TDEConfigBase*) QtSupport::getQt(env, obj))->groupIsImmutable((const TQString&)*(TQString*) QtSupport::toTQString(env, group, &_qstring_group)); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_TDEConfigBase_groupList(JNIEnv* env, jobject obj) -{ - TQStringList _qlist; - _qlist = ((TDEConfigBase*) QtSupport::getQt(env, obj))->groupList(); - return (jobject) QtSupport::arrayWithTQStringList(env, (TQStringList*) &_qlist); -} - -JNIEXPORT jstring JNICALL -Java_org_kde_koala_TDEConfigBase_group(JNIEnv* env, jobject obj) -{ - TQString _qstring; - _qstring = ((TDEConfigBase*) QtSupport::getQt(env, obj))->group(); - return QtSupport::fromTQString(env, &_qstring); -} - -JNIEXPORT jboolean JNICALL -Java_org_kde_koala_TDEConfigBase_hasDefault(JNIEnv* env, jobject obj, jstring key) -{ -static TQString* _qstring_key = 0; - jboolean xret = (jboolean) ((TDEConfigBase*) QtSupport::getQt(env, obj))->hasDefault((const TQString&)*(TQString*) QtSupport::toTQString(env, key, &_qstring_key)); - return xret; -} - -JNIEXPORT jboolean JNICALL -Java_org_kde_koala_TDEConfigBase_hasGroup(JNIEnv* env, jobject obj, jstring group) -{ -static TQString* _qstring_group = 0; - jboolean xret = (jboolean) ((TDEConfigBase*) QtSupport::getQt(env, obj))->hasGroup((const TQString&)*(TQString*) QtSupport::toTQString(env, group, &_qstring_group)); - return xret; -} - -JNIEXPORT jboolean JNICALL -Java_org_kde_koala_TDEConfigBase_hasKey(JNIEnv* env, jobject obj, jstring key) -{ -static TQString* _qstring_key = 0; - jboolean xret = (jboolean) ((TDEConfigBase*) QtSupport::getQt(env, obj))->hasKey((const TQString&)*(TQString*) QtSupport::toTQString(env, key, &_qstring_key)); - return xret; -} - -JNIEXPORT jboolean JNICALL -Java_org_kde_koala_TDEConfigBase_isDirty(JNIEnv* env, jobject obj) -{ - jboolean xret = (jboolean) ((TDEConfigBase*) QtSupport::getQt(env, obj))->isDirty(); - return xret; -} - -JNIEXPORT jboolean JNICALL -Java_org_kde_koala_TDEConfigBase_isDollarExpansion(JNIEnv* env, jobject obj) -{ - jboolean xret = (jboolean) ((TDEConfigBase*) QtSupport::getQt(env, obj))->isDollarExpansion(); - return xret; -} - -JNIEXPORT jboolean JNICALL -Java_org_kde_koala_TDEConfigBase_isImmutable(JNIEnv* env, jobject obj) -{ - jboolean xret = (jboolean) ((TDEConfigBase*) QtSupport::getQt(env, obj))->isImmutable(); - return xret; -} - -JNIEXPORT jboolean JNICALL -Java_org_kde_koala_TDEConfigBase_isReadOnly(JNIEnv* env, jobject obj) -{ - jboolean xret = (jboolean) ((TDEConfigBase*) QtSupport::getQt(env, obj))->isReadOnly(); - return xret; -} - -JNIEXPORT jstring JNICALL -Java_org_kde_koala_TDEConfigBase_locale(JNIEnv* env, jobject obj) -{ - TQString _qstring; - _qstring = ((TDEConfigBase*) QtSupport::getQt(env, obj))->locale(); - return QtSupport::fromTQString(env, &_qstring); -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_TDEConfigBase_metaObject(JNIEnv* env, jobject obj) -{ - jobject xret = QtSupport::objectForQtKey(env, (void*)((TDEConfigBase*) QtSupport::getQt(env, obj))->metaObject(), "org.kde.qt.TQMetaObject"); - return xret; -} - -JNIEXPORT jboolean JNICALL -Java_org_kde_koala_TDEConfigBase_readBoolEntry__Ljava_lang_String_2(JNIEnv* env, jobject obj, jstring pKey) -{ -static TQString* _qstring_pKey = 0; - jboolean xret = (jboolean) ((TDEConfigBase*) QtSupport::getQt(env, obj))->readBoolEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey)); - return xret; -} - -JNIEXPORT jboolean JNICALL -Java_org_kde_koala_TDEConfigBase_readBoolEntry__Ljava_lang_String_2Z(JNIEnv* env, jobject obj, jstring pKey, jboolean bDefault) -{ -static TQString* _qstring_pKey = 0; - jboolean xret = (jboolean) ((TDEConfigBase*) QtSupport::getQt(env, obj))->readBoolEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (bool) bDefault); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_TDEConfigBase_readColorEntry__Ljava_lang_String_2(JNIEnv* env, jobject obj, jstring pKey) -{ -static TQString* _qstring_pKey = 0; - jobject xret = QtSupport::objectForQtKey(env, (void*)new TQColor(((TDEConfigBase*) QtSupport::getQt(env, obj))->readColorEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey))), "org.kde.qt.TQColor", TRUE); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_TDEConfigBase_readColorEntry__Ljava_lang_String_2Lorg_kde_qt_QColor_2(JNIEnv* env, jobject obj, jstring pKey, jobject pDefault) -{ -static TQString* _qstring_pKey = 0; - jobject xret = QtSupport::objectForQtKey(env, (void*)new TQColor(((TDEConfigBase*) QtSupport::getQt(env, obj))->readColorEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQColor*) QtSupport::getQt(env, pDefault))), "org.kde.qt.TQColor", TRUE); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_TDEConfigBase_readDateTimeEntry__Ljava_lang_String_2(JNIEnv* env, jobject obj, jstring pKey) -{ - TQDateTime _qdate; -static TQString* _qstring_pKey = 0; - _qdate = ((TDEConfigBase*) QtSupport::getQt(env, obj))->readDateTimeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey)); - return (jobject) QtSupport::fromTQDateTime(env, (TQDateTime*) &_qdate); -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_TDEConfigBase_readDateTimeEntry__Ljava_lang_String_2Ljava_util_Calendar_2(JNIEnv* env, jobject obj, jstring pKey, jobject pDefault) -{ - TQDateTime _qdate; -static TQString* _qstring_pKey = 0; -static TQDateTime* _qdate_pDefault = 0; - _qdate = ((TDEConfigBase*) QtSupport::getQt(env, obj))->readDateTimeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQDateTime*) QtSupport::toTQDateTime(env, pDefault, &_qdate_pDefault)); - return (jobject) QtSupport::fromTQDateTime(env, (TQDateTime*) &_qdate); -} - -JNIEXPORT jboolean JNICALL -Java_org_kde_koala_TDEConfigBase_readDefaults(JNIEnv* env, jobject obj) -{ - jboolean xret = (jboolean) ((TDEConfigBase*) QtSupport::getQt(env, obj))->readDefaults(); - return xret; -} - -JNIEXPORT jdouble JNICALL -Java_org_kde_koala_TDEConfigBase_readDoubleNumEntry__Ljava_lang_String_2(JNIEnv* env, jobject obj, jstring pKey) -{ -static TQString* _qstring_pKey = 0; - jdouble xret = (jdouble) ((TDEConfigBase*) QtSupport::getQt(env, obj))->readDoubleNumEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey)); - return xret; -} - -JNIEXPORT jdouble JNICALL -Java_org_kde_koala_TDEConfigBase_readDoubleNumEntry__Ljava_lang_String_2D(JNIEnv* env, jobject obj, jstring pKey, jdouble nDefault) -{ -static TQString* _qstring_pKey = 0; - jdouble xret = (jdouble) ((TDEConfigBase*) QtSupport::getQt(env, obj))->readDoubleNumEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (double) nDefault); - return xret; -} - -JNIEXPORT jstring JNICALL -Java_org_kde_koala_TDEConfigBase_readEntryUntranslated__Ljava_lang_String_2(JNIEnv* env, jobject obj, jstring pKey) -{ - TQString _qstring; -static TQString* _qstring_pKey = 0; - _qstring = ((TDEConfigBase*) QtSupport::getQt(env, obj))->readEntryUntranslated((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey)); - return QtSupport::fromTQString(env, &_qstring); -} - -JNIEXPORT jstring JNICALL -Java_org_kde_koala_TDEConfigBase_readEntryUntranslated__Ljava_lang_String_2Ljava_lang_String_2(JNIEnv* env, jobject obj, jstring pKey, jstring aDefault) -{ - TQString _qstring; -static TQString* _qstring_pKey = 0; -static TQString* _qstring_aDefault = 0; - _qstring = ((TDEConfigBase*) QtSupport::getQt(env, obj))->readEntryUntranslated((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQString&)*(TQString*) QtSupport::toTQString(env, aDefault, &_qstring_aDefault)); - return QtSupport::fromTQString(env, &_qstring); -} - -JNIEXPORT jstring JNICALL -Java_org_kde_koala_TDEConfigBase_readEntry__Ljava_lang_String_2(JNIEnv* env, jobject obj, jstring pKey) -{ - TQString _qstring; -static TQString* _qstring_pKey = 0; - _qstring = ((TDEConfigBase*) QtSupport::getQt(env, obj))->readEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey)); - return QtSupport::fromTQString(env, &_qstring); -} - -JNIEXPORT jstring JNICALL -Java_org_kde_koala_TDEConfigBase_readEntry__Ljava_lang_String_2Ljava_lang_String_2(JNIEnv* env, jobject obj, jstring pKey, jstring aDefault) -{ - TQString _qstring; -static TQString* _qstring_pKey = 0; -static TQString* _qstring_aDefault = 0; - _qstring = ((TDEConfigBase*) QtSupport::getQt(env, obj))->readEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQString&)*(TQString*) QtSupport::toTQString(env, aDefault, &_qstring_aDefault)); - return QtSupport::fromTQString(env, &_qstring); -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_TDEConfigBase_readFontEntry__Ljava_lang_String_2(JNIEnv* env, jobject obj, jstring pKey) -{ -static TQString* _qstring_pKey = 0; - jobject xret = QtSupport::objectForQtKey(env, (void*)new TQFont(((TDEConfigBase*) QtSupport::getQt(env, obj))->readFontEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey))), "org.kde.qt.TQFont", TRUE); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_TDEConfigBase_readFontEntry__Ljava_lang_String_2Lorg_kde_qt_QFont_2(JNIEnv* env, jobject obj, jstring pKey, jobject pDefault) -{ -static TQString* _qstring_pKey = 0; - jobject xret = QtSupport::objectForQtKey(env, (void*)new TQFont(((TDEConfigBase*) QtSupport::getQt(env, obj))->readFontEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQFont*) QtSupport::getQt(env, pDefault))), "org.kde.qt.TQFont", TRUE); - return xret; -} - -JNIEXPORT jintArray JNICALL -Java_org_kde_koala_TDEConfigBase_readIntListEntry(JNIEnv* env, jobject obj, jstring pKey) -{ - TQValueList _qintArray; -static TQString* _qstring_pKey = 0; - _qintArray = ((TDEConfigBase*) QtSupport::getQt(env, obj))->readIntListEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey)); - return QtSupport::fromTQIntValueList(env, &_qintArray); -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_TDEConfigBase_readListEntry__Ljava_lang_String_2(JNIEnv* env, jobject obj, jstring pKey) -{ - TQStringList _qlist; -static TQString* _qstring_pKey = 0; - _qlist = ((TDEConfigBase*) QtSupport::getQt(env, obj))->readListEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey)); - return (jobject) QtSupport::arrayWithTQStringList(env, (TQStringList*) &_qlist); -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_TDEConfigBase_readListEntry__Ljava_lang_String_2C(JNIEnv* env, jobject obj, jstring pKey, jchar sep) -{ - TQStringList _qlist; -static TQString* _qstring_pKey = 0; - _qlist = ((TDEConfigBase*) QtSupport::getQt(env, obj))->readListEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (char) sep); - return (jobject) QtSupport::arrayWithTQStringList(env, (TQStringList*) &_qlist); -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_TDEConfigBase_readListEntry__Ljava_lang_String_2_3Ljava_lang_String_2(JNIEnv* env, jobject obj, jstring pKey, jobjectArray aDefault) -{ - TQStringList _qlist; -static TQCString* _qstring_pKey = 0; -static TQStringList* _qlist_aDefault = 0; - _qlist = ((TDEConfigBase*) QtSupport::getQt(env, obj))->readListEntry((const char*) QtSupport::toCharString(env, pKey, &_qstring_pKey), (const TQStringList&)*(TQStringList*) QtSupport::toTQStringList(env, aDefault, &_qlist_aDefault)); - return (jobject) QtSupport::arrayWithTQStringList(env, (TQStringList*) &_qlist); -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_TDEConfigBase_readListEntry__Ljava_lang_String_2_3Ljava_lang_String_2C(JNIEnv* env, jobject obj, jstring pKey, jobjectArray aDefault, jchar sep) -{ - TQStringList _qlist; -static TQCString* _qstring_pKey = 0; -static TQStringList* _qlist_aDefault = 0; - _qlist = ((TDEConfigBase*) QtSupport::getQt(env, obj))->readListEntry((const char*) QtSupport::toCharString(env, pKey, &_qstring_pKey), (const TQStringList&)*(TQStringList*) QtSupport::toTQStringList(env, aDefault, &_qlist_aDefault), (char) sep); - return (jobject) QtSupport::arrayWithTQStringList(env, (TQStringList*) &_qlist); -} - -JNIEXPORT jlong JNICALL -Java_org_kde_koala_TDEConfigBase_readLongNumEntry__Ljava_lang_String_2(JNIEnv* env, jobject obj, jstring pKey) -{ -static TQString* _qstring_pKey = 0; - jlong xret = (jlong) ((TDEConfigBase*) QtSupport::getQt(env, obj))->readLongNumEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey)); - return xret; -} - -JNIEXPORT jlong JNICALL -Java_org_kde_koala_TDEConfigBase_readLongNumEntry__Ljava_lang_String_2J(JNIEnv* env, jobject obj, jstring pKey, jlong nDefault) -{ -static TQString* _qstring_pKey = 0; - jlong xret = (jlong) ((TDEConfigBase*) QtSupport::getQt(env, obj))->readLongNumEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (long) nDefault); - return xret; -} - -JNIEXPORT jlong JNICALL -Java_org_kde_koala_TDEConfigBase_readNum64Entry__Ljava_lang_String_2(JNIEnv* env, jobject obj, jstring pKey) -{ -static TQString* _qstring_pKey = 0; - jlong xret = (jlong) ((TDEConfigBase*) QtSupport::getQt(env, obj))->readNum64Entry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey)); - return xret; -} - -JNIEXPORT jlong JNICALL -Java_org_kde_koala_TDEConfigBase_readNum64Entry__Ljava_lang_String_2J(JNIEnv* env, jobject obj, jstring pKey, jlong nDefault) -{ -static TQString* _qstring_pKey = 0; - jlong xret = (jlong) ((TDEConfigBase*) QtSupport::getQt(env, obj))->readNum64Entry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (TQ_INT64) nDefault); - return xret; -} - -JNIEXPORT jint JNICALL -Java_org_kde_koala_TDEConfigBase_readNumEntry__Ljava_lang_String_2(JNIEnv* env, jobject obj, jstring pKey) -{ -static TQString* _qstring_pKey = 0; - jint xret = (jint) ((TDEConfigBase*) QtSupport::getQt(env, obj))->readNumEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey)); - return xret; -} - -JNIEXPORT jint JNICALL -Java_org_kde_koala_TDEConfigBase_readNumEntry__Ljava_lang_String_2I(JNIEnv* env, jobject obj, jstring pKey, jint nDefault) -{ -static TQString* _qstring_pKey = 0; - jint xret = (jint) ((TDEConfigBase*) QtSupport::getQt(env, obj))->readNumEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (int) nDefault); - return xret; -} - -JNIEXPORT jstring JNICALL -Java_org_kde_koala_TDEConfigBase_readPathEntry__Ljava_lang_String_2(JNIEnv* env, jobject obj, jstring pKey) -{ - TQString _qstring; -static TQString* _qstring_pKey = 0; - _qstring = ((TDEConfigBase*) QtSupport::getQt(env, obj))->readPathEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey)); - return QtSupport::fromTQString(env, &_qstring); -} - -JNIEXPORT jstring JNICALL -Java_org_kde_koala_TDEConfigBase_readPathEntry__Ljava_lang_String_2Ljava_lang_String_2(JNIEnv* env, jobject obj, jstring pKey, jstring aDefault) -{ - TQString _qstring; -static TQString* _qstring_pKey = 0; -static TQString* _qstring_aDefault = 0; - _qstring = ((TDEConfigBase*) QtSupport::getQt(env, obj))->readPathEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQString&)*(TQString*) QtSupport::toTQString(env, aDefault, &_qstring_aDefault)); - return QtSupport::fromTQString(env, &_qstring); -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_TDEConfigBase_readPathListEntry__Ljava_lang_String_2(JNIEnv* env, jobject obj, jstring pKey) -{ - TQStringList _qlist; -static TQString* _qstring_pKey = 0; - _qlist = ((TDEConfigBase*) QtSupport::getQt(env, obj))->readPathListEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey)); - return (jobject) QtSupport::arrayWithTQStringList(env, (TQStringList*) &_qlist); -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_TDEConfigBase_readPathListEntry__Ljava_lang_String_2C(JNIEnv* env, jobject obj, jstring pKey, jchar sep) -{ - TQStringList _qlist; -static TQString* _qstring_pKey = 0; - _qlist = ((TDEConfigBase*) QtSupport::getQt(env, obj))->readPathListEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (char) sep); - return (jobject) QtSupport::arrayWithTQStringList(env, (TQStringList*) &_qlist); -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_TDEConfigBase_readPointEntry__Ljava_lang_String_2(JNIEnv* env, jobject obj, jstring pKey) -{ -static TQString* _qstring_pKey = 0; - jobject xret = QtSupport::objectForQtKey(env, (void*)new TQPoint(((TDEConfigBase*) QtSupport::getQt(env, obj))->readPointEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey))), "org.kde.qt.TQPoint", TRUE); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_TDEConfigBase_readPointEntry__Ljava_lang_String_2Lorg_kde_qt_QPoint_2(JNIEnv* env, jobject obj, jstring pKey, jobject pDefault) -{ -static TQString* _qstring_pKey = 0; - jobject xret = QtSupport::objectForQtKey(env, (void*)new TQPoint(((TDEConfigBase*) QtSupport::getQt(env, obj))->readPointEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQPoint*) QtSupport::getQt(env, pDefault))), "org.kde.qt.TQPoint", TRUE); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_TDEConfigBase_readPropertyEntry(JNIEnv* env, jobject obj, jstring pKey, jobject aDefault) -{ -static TQString* _qstring_pKey = 0; - jobject xret = QtSupport::objectForQtKey(env, (void*)new TQVariant(((TDEConfigBase*) QtSupport::getQt(env, obj))->readPropertyEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQVariant&)*(const TQVariant*) QtSupport::getQt(env, aDefault))), "org.kde.qt.TQVariant", TRUE); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_TDEConfigBase_readRectEntry__Ljava_lang_String_2(JNIEnv* env, jobject obj, jstring pKey) -{ -static TQString* _qstring_pKey = 0; - jobject xret = QtSupport::objectForQtKey(env, (void*)new TQRect(((TDEConfigBase*) QtSupport::getQt(env, obj))->readRectEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey))), "org.kde.qt.TQRect", TRUE); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_TDEConfigBase_readRectEntry__Ljava_lang_String_2Lorg_kde_qt_QRect_2(JNIEnv* env, jobject obj, jstring pKey, jobject pDefault) -{ -static TQString* _qstring_pKey = 0; - jobject xret = QtSupport::objectForQtKey(env, (void*)new TQRect(((TDEConfigBase*) QtSupport::getQt(env, obj))->readRectEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQRect*) QtSupport::getQt(env, pDefault))), "org.kde.qt.TQRect", TRUE); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_TDEConfigBase_readSizeEntry__Ljava_lang_String_2(JNIEnv* env, jobject obj, jstring pKey) -{ -static TQString* _qstring_pKey = 0; - jobject xret = QtSupport::objectForQtKey(env, (void*)new TQSize(((TDEConfigBase*) QtSupport::getQt(env, obj))->readSizeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey))), "org.kde.qt.TQSize", TRUE); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_TDEConfigBase_readSizeEntry__Ljava_lang_String_2Lorg_kde_qt_QSize_2(JNIEnv* env, jobject obj, jstring pKey, jobject pDefault) -{ -static TQString* _qstring_pKey = 0; - jobject xret = QtSupport::objectForQtKey(env, (void*)new TQSize(((TDEConfigBase*) QtSupport::getQt(env, obj))->readSizeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQSize*) QtSupport::getQt(env, pDefault))), "org.kde.qt.TQSize", TRUE); - return xret; -} - -JNIEXPORT jlong JNICALL -Java_org_kde_koala_TDEConfigBase_readUnsignedLongNumEntry__Ljava_lang_String_2(JNIEnv* env, jobject obj, jstring pKey) -{ -static TQString* _qstring_pKey = 0; - jlong xret = (jlong) ((TDEConfigBase*) QtSupport::getQt(env, obj))->readUnsignedLongNumEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey)); - return xret; -} - -JNIEXPORT jlong JNICALL -Java_org_kde_koala_TDEConfigBase_readUnsignedLongNumEntry__Ljava_lang_String_2J(JNIEnv* env, jobject obj, jstring pKey, jlong nDefault) -{ -static TQString* _qstring_pKey = 0; - jlong xret = (jlong) ((TDEConfigBase*) QtSupport::getQt(env, obj))->readUnsignedLongNumEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (unsigned long) nDefault); - return xret; -} - -JNIEXPORT jlong JNICALL -Java_org_kde_koala_TDEConfigBase_readUnsignedNum64Entry__Ljava_lang_String_2(JNIEnv* env, jobject obj, jstring pKey) -{ -static TQString* _qstring_pKey = 0; - jlong xret = (jlong) ((TDEConfigBase*) QtSupport::getQt(env, obj))->readUnsignedNum64Entry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey)); - return xret; -} - -JNIEXPORT jlong JNICALL -Java_org_kde_koala_TDEConfigBase_readUnsignedNum64Entry__Ljava_lang_String_2J(JNIEnv* env, jobject obj, jstring pKey, jlong nDefault) -{ -static TQString* _qstring_pKey = 0; - jlong xret = (jlong) ((TDEConfigBase*) QtSupport::getQt(env, obj))->readUnsignedNum64Entry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (TQ_UINT64) nDefault); - return xret; -} - -JNIEXPORT jint JNICALL -Java_org_kde_koala_TDEConfigBase_readUnsignedNumEntry__Ljava_lang_String_2(JNIEnv* env, jobject obj, jstring pKey) -{ -static TQString* _qstring_pKey = 0; - jint xret = (jint) ((TDEConfigBase*) QtSupport::getQt(env, obj))->readUnsignedNumEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey)); - return xret; -} - -JNIEXPORT jint JNICALL -Java_org_kde_koala_TDEConfigBase_readUnsignedNumEntry__Ljava_lang_String_2I(JNIEnv* env, jobject obj, jstring pKey, jint nDefault) -{ -static TQString* _qstring_pKey = 0; - jint xret = (jint) ((TDEConfigBase*) QtSupport::getQt(env, obj))->readUnsignedNumEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (unsigned int) nDefault); - return xret; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigBase_reparseConfiguration(JNIEnv* env, jobject obj) -{ - ((TDEConfigBase*) QtSupport::getQt(env, obj))->reparseConfiguration(); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigBase_revertToDefault(JNIEnv* env, jobject obj, jstring key) -{ -static TQString* _qstring_key = 0; - ((TDEConfigBase*) QtSupport::getQt(env, obj))->revertToDefault((const TQString&)*(TQString*) QtSupport::toTQString(env, key, &_qstring_key)); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigBase_rollback__(JNIEnv* env, jobject obj) -{ - ((TDEConfigBase*) QtSupport::getQt(env, obj))->rollback(); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigBase_rollback__Z(JNIEnv* env, jobject obj, jboolean bDeep) -{ - ((TDEConfigBase*) QtSupport::getQt(env, obj))->rollback((bool) bDeep); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigBase_setDesktopGroup(JNIEnv* env, jobject obj) -{ - ((TDEConfigBase*) QtSupport::getQt(env, obj))->setDesktopGroup(); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigBase_setDollarExpansion__(JNIEnv* env, jobject obj) -{ - ((TDEConfigBase*) QtSupport::getQt(env, obj))->setDollarExpansion(); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigBase_setDollarExpansion__Z(JNIEnv* env, jobject obj, jboolean _bExpand) -{ - ((TDEConfigBase*) QtSupport::getQt(env, obj))->setDollarExpansion((bool) _bExpand); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigBase_setGroup(JNIEnv* env, jobject obj, jstring group) -{ -static TQString* _qstring_group = 0; - ((TDEConfigBase*) QtSupport::getQt(env, obj))->setGroup((const TQString&)*(TQString*) QtSupport::toTQString(env, group, &_qstring_group)); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigBase_setReadDefaults(JNIEnv* env, jobject obj, jboolean b) -{ - ((TDEConfigBase*) QtSupport::getQt(env, obj))->setReadDefaults((bool) b); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigBase_setReadOnly(JNIEnv* env, jobject obj, jboolean _ro) -{ - ((TDEConfigBase*) QtSupport::getQt(env, obj))->setReadOnly((bool) _ro); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigBase_sync(JNIEnv* env, jobject obj) -{ - ((TDEConfigBase*) QtSupport::getQt(env, obj))->sync(); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2D(JNIEnv* env, jobject obj, jstring pKey, jdouble nValue) -{ -static TQString* _qstring_pKey = 0; - ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (double) nValue); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2DZ(JNIEnv* env, jobject obj, jstring pKey, jdouble nValue, jboolean bPersistent) -{ -static TQString* _qstring_pKey = 0; - ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (double) nValue, (bool) bPersistent); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2DZZ(JNIEnv* env, jobject obj, jstring pKey, jdouble nValue, jboolean bPersistent, jboolean bGlobal) -{ -static TQString* _qstring_pKey = 0; - ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (double) nValue, (bool) bPersistent, (bool) bGlobal); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2DZZC(JNIEnv* env, jobject obj, jstring pKey, jdouble nValue, jboolean bPersistent, jboolean bGlobal, jchar format) -{ -static TQString* _qstring_pKey = 0; - ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (double) nValue, (bool) bPersistent, (bool) bGlobal, (char) format); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2DZZCI(JNIEnv* env, jobject obj, jstring pKey, jdouble nValue, jboolean bPersistent, jboolean bGlobal, jchar format, jint precision) -{ -static TQString* _qstring_pKey = 0; - ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (double) nValue, (bool) bPersistent, (bool) bGlobal, (char) format, (int) precision); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2DZZCIZ(JNIEnv* env, jobject obj, jstring pKey, jdouble nValue, jboolean bPersistent, jboolean bGlobal, jchar format, jint precision, jboolean bNLS) -{ -static TQString* _qstring_pKey = 0; - ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (double) nValue, (bool) bPersistent, (bool) bGlobal, (char) format, (int) precision, (bool) bNLS); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2I(JNIEnv* env, jobject obj, jstring pKey, jint nValue) -{ -static TQString* _qstring_pKey = 0; - ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (int) nValue); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2IZ(JNIEnv* env, jobject obj, jstring pKey, jint nValue, jboolean bPersistent) -{ -static TQString* _qstring_pKey = 0; - ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (int) nValue, (bool) bPersistent); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2IZZ(JNIEnv* env, jobject obj, jstring pKey, jint nValue, jboolean bPersistent, jboolean bGlobal) -{ -static TQString* _qstring_pKey = 0; - ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (int) nValue, (bool) bPersistent, (bool) bGlobal); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2IZZZ(JNIEnv* env, jobject obj, jstring pKey, jint nValue, jboolean bPersistent, jboolean bGlobal, jboolean bNLS) -{ -static TQString* _qstring_pKey = 0; - ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (int) nValue, (bool) bPersistent, (bool) bGlobal, (bool) bNLS); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2J(JNIEnv* env, jobject obj, jstring pKey, jlong nValue) -{ -static TQString* _qstring_pKey = 0; - ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (long) nValue); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2JZ(JNIEnv* env, jobject obj, jstring pKey, jlong nValue, jboolean bPersistent) -{ -static TQString* _qstring_pKey = 0; - ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (long) nValue, (bool) bPersistent); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2JZZ(JNIEnv* env, jobject obj, jstring pKey, jlong nValue, jboolean bPersistent, jboolean bGlobal) -{ -static TQString* _qstring_pKey = 0; - ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (long) nValue, (bool) bPersistent, (bool) bGlobal); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2JZZZ(JNIEnv* env, jobject obj, jstring pKey, jlong nValue, jboolean bPersistent, jboolean bGlobal, jboolean bNLS) -{ -static TQString* _qstring_pKey = 0; - ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (long) nValue, (bool) bPersistent, (bool) bGlobal, (bool) bNLS); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Ljava_lang_String_2(JNIEnv* env, jobject obj, jstring pKey, jstring pValue) -{ -static TQString* _qstring_pKey = 0; -static TQString* _qstring_pValue = 0; - ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQString&)*(TQString*) QtSupport::toTQString(env, pValue, &_qstring_pValue)); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Ljava_lang_String_2Z(JNIEnv* env, jobject obj, jstring pKey, jstring pValue, jboolean bPersistent) -{ -static TQString* _qstring_pKey = 0; -static TQString* _qstring_pValue = 0; - ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQString&)*(TQString*) QtSupport::toTQString(env, pValue, &_qstring_pValue), (bool) bPersistent); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Ljava_lang_String_2ZZ(JNIEnv* env, jobject obj, jstring pKey, jstring pValue, jboolean bPersistent, jboolean bGlobal) -{ -static TQString* _qstring_pKey = 0; -static TQString* _qstring_pValue = 0; - ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQString&)*(TQString*) QtSupport::toTQString(env, pValue, &_qstring_pValue), (bool) bPersistent, (bool) bGlobal); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Ljava_lang_String_2ZZZ(JNIEnv* env, jobject obj, jstring pKey, jstring pValue, jboolean bPersistent, jboolean bGlobal, jboolean bNLS) -{ -static TQString* _qstring_pKey = 0; -static TQString* _qstring_pValue = 0; - ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQString&)*(TQString*) QtSupport::toTQString(env, pValue, &_qstring_pValue), (bool) bPersistent, (bool) bGlobal, (bool) bNLS); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Ljava_util_Calendar_2(JNIEnv* env, jobject obj, jstring pKey, jobject rDateTime) -{ -static TQString* _qstring_pKey = 0; -static TQDateTime* _qdate_rDateTime = 0; - ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQDateTime&)*(TQDateTime*) QtSupport::toTQDateTime(env, rDateTime, &_qdate_rDateTime)); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Ljava_util_Calendar_2Z(JNIEnv* env, jobject obj, jstring pKey, jobject rDateTime, jboolean bPersistent) -{ -static TQString* _qstring_pKey = 0; -static TQDateTime* _qdate_rDateTime = 0; - ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQDateTime&)*(TQDateTime*) QtSupport::toTQDateTime(env, rDateTime, &_qdate_rDateTime), (bool) bPersistent); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Ljava_util_Calendar_2ZZ(JNIEnv* env, jobject obj, jstring pKey, jobject rDateTime, jboolean bPersistent, jboolean bGlobal) -{ -static TQString* _qstring_pKey = 0; -static TQDateTime* _qdate_rDateTime = 0; - ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQDateTime&)*(TQDateTime*) QtSupport::toTQDateTime(env, rDateTime, &_qdate_rDateTime), (bool) bPersistent, (bool) bGlobal); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Ljava_util_Calendar_2ZZZ(JNIEnv* env, jobject obj, jstring pKey, jobject rDateTime, jboolean bPersistent, jboolean bGlobal, jboolean bNLS) -{ -static TQString* _qstring_pKey = 0; -static TQDateTime* _qdate_rDateTime = 0; - ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQDateTime&)*(TQDateTime*) QtSupport::toTQDateTime(env, rDateTime, &_qdate_rDateTime), (bool) bPersistent, (bool) bGlobal, (bool) bNLS); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QColor_2(JNIEnv* env, jobject obj, jstring pKey, jobject rColor) -{ -static TQString* _qstring_pKey = 0; - ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQColor&)*(const TQColor*) QtSupport::getQt(env, rColor)); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QColor_2Z(JNIEnv* env, jobject obj, jstring pKey, jobject rColor, jboolean bPersistent) -{ -static TQString* _qstring_pKey = 0; - ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQColor&)*(const TQColor*) QtSupport::getQt(env, rColor), (bool) bPersistent); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QColor_2ZZ(JNIEnv* env, jobject obj, jstring pKey, jobject rColor, jboolean bPersistent, jboolean bGlobal) -{ -static TQString* _qstring_pKey = 0; - ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQColor&)*(const TQColor*) QtSupport::getQt(env, rColor), (bool) bPersistent, (bool) bGlobal); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QColor_2ZZZ(JNIEnv* env, jobject obj, jstring pKey, jobject rColor, jboolean bPersistent, jboolean bGlobal, jboolean bNLS) -{ -static TQString* _qstring_pKey = 0; - ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQColor&)*(const TQColor*) QtSupport::getQt(env, rColor), (bool) bPersistent, (bool) bGlobal, (bool) bNLS); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QFont_2(JNIEnv* env, jobject obj, jstring pKey, jobject rFont) -{ -static TQString* _qstring_pKey = 0; - ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQFont&)*(const TQFont*) QtSupport::getQt(env, rFont)); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QFont_2Z(JNIEnv* env, jobject obj, jstring pKey, jobject rFont, jboolean bPersistent) -{ -static TQString* _qstring_pKey = 0; - ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQFont&)*(const TQFont*) QtSupport::getQt(env, rFont), (bool) bPersistent); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QFont_2ZZ(JNIEnv* env, jobject obj, jstring pKey, jobject rFont, jboolean bPersistent, jboolean bGlobal) -{ -static TQString* _qstring_pKey = 0; - ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQFont&)*(const TQFont*) QtSupport::getQt(env, rFont), (bool) bPersistent, (bool) bGlobal); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QFont_2ZZZ(JNIEnv* env, jobject obj, jstring pKey, jobject rFont, jboolean bPersistent, jboolean bGlobal, jboolean bNLS) -{ -static TQString* _qstring_pKey = 0; - ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQFont&)*(const TQFont*) QtSupport::getQt(env, rFont), (bool) bPersistent, (bool) bGlobal, (bool) bNLS); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QPoint_2(JNIEnv* env, jobject obj, jstring pKey, jobject rValue) -{ -static TQString* _qstring_pKey = 0; - ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQPoint&)*(const TQPoint*) QtSupport::getQt(env, rValue)); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QPoint_2Z(JNIEnv* env, jobject obj, jstring pKey, jobject rValue, jboolean bPersistent) -{ -static TQString* _qstring_pKey = 0; - ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQPoint&)*(const TQPoint*) QtSupport::getQt(env, rValue), (bool) bPersistent); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QPoint_2ZZ(JNIEnv* env, jobject obj, jstring pKey, jobject rValue, jboolean bPersistent, jboolean bGlobal) -{ -static TQString* _qstring_pKey = 0; - ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQPoint&)*(const TQPoint*) QtSupport::getQt(env, rValue), (bool) bPersistent, (bool) bGlobal); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QPoint_2ZZZ(JNIEnv* env, jobject obj, jstring pKey, jobject rValue, jboolean bPersistent, jboolean bGlobal, jboolean bNLS) -{ -static TQString* _qstring_pKey = 0; - ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQPoint&)*(const TQPoint*) QtSupport::getQt(env, rValue), (bool) bPersistent, (bool) bGlobal, (bool) bNLS); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QRect_2(JNIEnv* env, jobject obj, jstring pKey, jobject rValue) -{ -static TQString* _qstring_pKey = 0; - ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQRect&)*(const TQRect*) QtSupport::getQt(env, rValue)); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QRect_2Z(JNIEnv* env, jobject obj, jstring pKey, jobject rValue, jboolean bPersistent) -{ -static TQString* _qstring_pKey = 0; - ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQRect&)*(const TQRect*) QtSupport::getQt(env, rValue), (bool) bPersistent); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QRect_2ZZ(JNIEnv* env, jobject obj, jstring pKey, jobject rValue, jboolean bPersistent, jboolean bGlobal) -{ -static TQString* _qstring_pKey = 0; - ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQRect&)*(const TQRect*) QtSupport::getQt(env, rValue), (bool) bPersistent, (bool) bGlobal); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QRect_2ZZZ(JNIEnv* env, jobject obj, jstring pKey, jobject rValue, jboolean bPersistent, jboolean bGlobal, jboolean bNLS) -{ -static TQString* _qstring_pKey = 0; - ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQRect&)*(const TQRect*) QtSupport::getQt(env, rValue), (bool) bPersistent, (bool) bGlobal, (bool) bNLS); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QSize_2(JNIEnv* env, jobject obj, jstring pKey, jobject rValue) -{ -static TQString* _qstring_pKey = 0; - ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQSize&)*(const TQSize*) QtSupport::getQt(env, rValue)); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QSize_2Z(JNIEnv* env, jobject obj, jstring pKey, jobject rValue, jboolean bPersistent) -{ -static TQString* _qstring_pKey = 0; - ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQSize&)*(const TQSize*) QtSupport::getQt(env, rValue), (bool) bPersistent); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QSize_2ZZ(JNIEnv* env, jobject obj, jstring pKey, jobject rValue, jboolean bPersistent, jboolean bGlobal) -{ -static TQString* _qstring_pKey = 0; - ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQSize&)*(const TQSize*) QtSupport::getQt(env, rValue), (bool) bPersistent, (bool) bGlobal); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QSize_2ZZZ(JNIEnv* env, jobject obj, jstring pKey, jobject rValue, jboolean bPersistent, jboolean bGlobal, jboolean bNLS) -{ -static TQString* _qstring_pKey = 0; - ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQSize&)*(const TQSize*) QtSupport::getQt(env, rValue), (bool) bPersistent, (bool) bGlobal, (bool) bNLS); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QVariant_2(JNIEnv* env, jobject obj, jstring pKey, jobject rValue) -{ -static TQString* _qstring_pKey = 0; - ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQVariant&)*(const TQVariant*) QtSupport::getQt(env, rValue)); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QVariant_2Z(JNIEnv* env, jobject obj, jstring pKey, jobject rValue, jboolean bPersistent) -{ -static TQString* _qstring_pKey = 0; - ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQVariant&)*(const TQVariant*) QtSupport::getQt(env, rValue), (bool) bPersistent); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QVariant_2ZZ(JNIEnv* env, jobject obj, jstring pKey, jobject rValue, jboolean bPersistent, jboolean bGlobal) -{ -static TQString* _qstring_pKey = 0; - ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQVariant&)*(const TQVariant*) QtSupport::getQt(env, rValue), (bool) bPersistent, (bool) bGlobal); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QVariant_2ZZZ(JNIEnv* env, jobject obj, jstring pKey, jobject rValue, jboolean bPersistent, jboolean bGlobal, jboolean bNLS) -{ -static TQString* _qstring_pKey = 0; - ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQVariant&)*(const TQVariant*) QtSupport::getQt(env, rValue), (bool) bPersistent, (bool) bGlobal, (bool) bNLS); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Z(JNIEnv* env, jobject obj, jstring pKey, jboolean bValue) -{ -static TQString* _qstring_pKey = 0; - ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (bool) bValue); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2ZZ(JNIEnv* env, jobject obj, jstring pKey, jboolean bValue, jboolean bPersistent) -{ -static TQString* _qstring_pKey = 0; - ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (bool) bValue, (bool) bPersistent); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2ZZZ(JNIEnv* env, jobject obj, jstring pKey, jboolean bValue, jboolean bPersistent, jboolean bGlobal) -{ -static TQString* _qstring_pKey = 0; - ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (bool) bValue, (bool) bPersistent, (bool) bGlobal); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2ZZZZ(JNIEnv* env, jobject obj, jstring pKey, jboolean bValue, jboolean bPersistent, jboolean bGlobal, jboolean bNLS) -{ -static TQString* _qstring_pKey = 0; - ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (bool) bValue, (bool) bPersistent, (bool) bGlobal, (bool) bNLS); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2_3I(JNIEnv* env, jobject obj, jstring pKey, jintArray rValue) -{ -static TQString* _qstring_pKey = 0; -static TQValueList* _qlist_rValue = 0; - ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQValueList&) QtSupport::toTQIntValueList(env, rValue, &_qlist_rValue)); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2_3IZ(JNIEnv* env, jobject obj, jstring pKey, jintArray rValue, jboolean bPersistent) -{ -static TQString* _qstring_pKey = 0; -static TQValueList* _qlist_rValue = 0; - ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQValueList&) QtSupport::toTQIntValueList(env, rValue, &_qlist_rValue), (bool) bPersistent); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2_3IZZ(JNIEnv* env, jobject obj, jstring pKey, jintArray rValue, jboolean bPersistent, jboolean bGlobal) -{ -static TQString* _qstring_pKey = 0; -static TQValueList* _qlist_rValue = 0; - ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQValueList&) QtSupport::toTQIntValueList(env, rValue, &_qlist_rValue), (bool) bPersistent, (bool) bGlobal); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2_3IZZZ(JNIEnv* env, jobject obj, jstring pKey, jintArray rValue, jboolean bPersistent, jboolean bGlobal, jboolean bNLS) -{ -static TQString* _qstring_pKey = 0; -static TQValueList* _qlist_rValue = 0; - ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQValueList&) QtSupport::toTQIntValueList(env, rValue, &_qlist_rValue), (bool) bPersistent, (bool) bGlobal, (bool) bNLS); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2_3Ljava_lang_String_2(JNIEnv* env, jobject obj, jstring pKey, jobjectArray rValue) -{ -static TQString* _qstring_pKey = 0; -static TQStrList* _qlist_rValue = 0; - ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQStrList&)*(TQStrList*) QtSupport::toTQStrList(env, rValue, &_qlist_rValue)); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2_3Ljava_lang_String_2C(JNIEnv* env, jobject obj, jstring pKey, jobjectArray rValue, jchar sep) -{ -static TQString* _qstring_pKey = 0; -static TQStrList* _qlist_rValue = 0; - ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQStrList&)*(TQStrList*) QtSupport::toTQStrList(env, rValue, &_qlist_rValue), (char) sep); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2_3Ljava_lang_String_2CZ(JNIEnv* env, jobject obj, jstring pKey, jobjectArray rValue, jchar sep, jboolean bPersistent) -{ -static TQString* _qstring_pKey = 0; -static TQStrList* _qlist_rValue = 0; - ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQStrList&)*(TQStrList*) QtSupport::toTQStrList(env, rValue, &_qlist_rValue), (char) sep, (bool) bPersistent); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2_3Ljava_lang_String_2CZZ(JNIEnv* env, jobject obj, jstring pKey, jobjectArray rValue, jchar sep, jboolean bPersistent, jboolean bGlobal) -{ -static TQString* _qstring_pKey = 0; -static TQStrList* _qlist_rValue = 0; - ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQStrList&)*(TQStrList*) QtSupport::toTQStrList(env, rValue, &_qlist_rValue), (char) sep, (bool) bPersistent, (bool) bGlobal); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2_3Ljava_lang_String_2CZZZ(JNIEnv* env, jobject obj, jstring pKey, jobjectArray rValue, jchar sep, jboolean bPersistent, jboolean bGlobal, jboolean bNLS) -{ -static TQString* _qstring_pKey = 0; -static TQStrList* _qlist_rValue = 0; - ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQStrList&)*(TQStrList*) QtSupport::toTQStrList(env, rValue, &_qlist_rValue), (char) sep, (bool) bPersistent, (bool) bGlobal, (bool) bNLS); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigBase_writePathEntry__Ljava_lang_String_2Ljava_lang_String_2(JNIEnv* env, jobject obj, jstring pKey, jstring path) -{ -static TQString* _qstring_pKey = 0; -static TQString* _qstring_path = 0; - ((TDEConfigBase*) QtSupport::getQt(env, obj))->writePathEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQString&)*(TQString*) QtSupport::toTQString(env, path, &_qstring_path)); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigBase_writePathEntry__Ljava_lang_String_2Ljava_lang_String_2Z(JNIEnv* env, jobject obj, jstring pKey, jstring path, jboolean bPersistent) -{ -static TQString* _qstring_pKey = 0; -static TQString* _qstring_path = 0; - ((TDEConfigBase*) QtSupport::getQt(env, obj))->writePathEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQString&)*(TQString*) QtSupport::toTQString(env, path, &_qstring_path), (bool) bPersistent); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigBase_writePathEntry__Ljava_lang_String_2Ljava_lang_String_2ZZ(JNIEnv* env, jobject obj, jstring pKey, jstring path, jboolean bPersistent, jboolean bGlobal) -{ -static TQString* _qstring_pKey = 0; -static TQString* _qstring_path = 0; - ((TDEConfigBase*) QtSupport::getQt(env, obj))->writePathEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQString&)*(TQString*) QtSupport::toTQString(env, path, &_qstring_path), (bool) bPersistent, (bool) bGlobal); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigBase_writePathEntry__Ljava_lang_String_2Ljava_lang_String_2ZZZ(JNIEnv* env, jobject obj, jstring pKey, jstring path, jboolean bPersistent, jboolean bGlobal, jboolean bNLS) -{ -static TQString* _qstring_pKey = 0; -static TQString* _qstring_path = 0; - ((TDEConfigBase*) QtSupport::getQt(env, obj))->writePathEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQString&)*(TQString*) QtSupport::toTQString(env, path, &_qstring_path), (bool) bPersistent, (bool) bGlobal, (bool) bNLS); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigBase_writePathEntry__Ljava_lang_String_2_3Ljava_lang_String_2(JNIEnv* env, jobject obj, jstring pKey, jobjectArray rValue) -{ -static TQString* _qstring_pKey = 0; -static TQStringList* _qlist_rValue = 0; - ((TDEConfigBase*) QtSupport::getQt(env, obj))->writePathEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQStringList&)*(TQStringList*) QtSupport::toTQStringList(env, rValue, &_qlist_rValue)); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigBase_writePathEntry__Ljava_lang_String_2_3Ljava_lang_String_2C(JNIEnv* env, jobject obj, jstring pKey, jobjectArray rValue, jchar sep) -{ -static TQString* _qstring_pKey = 0; -static TQStringList* _qlist_rValue = 0; - ((TDEConfigBase*) QtSupport::getQt(env, obj))->writePathEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQStringList&)*(TQStringList*) QtSupport::toTQStringList(env, rValue, &_qlist_rValue), (char) sep); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigBase_writePathEntry__Ljava_lang_String_2_3Ljava_lang_String_2CZ(JNIEnv* env, jobject obj, jstring pKey, jobjectArray rValue, jchar sep, jboolean bPersistent) -{ -static TQString* _qstring_pKey = 0; -static TQStringList* _qlist_rValue = 0; - ((TDEConfigBase*) QtSupport::getQt(env, obj))->writePathEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQStringList&)*(TQStringList*) QtSupport::toTQStringList(env, rValue, &_qlist_rValue), (char) sep, (bool) bPersistent); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigBase_writePathEntry__Ljava_lang_String_2_3Ljava_lang_String_2CZZ(JNIEnv* env, jobject obj, jstring pKey, jobjectArray rValue, jchar sep, jboolean bPersistent, jboolean bGlobal) -{ -static TQString* _qstring_pKey = 0; -static TQStringList* _qlist_rValue = 0; - ((TDEConfigBase*) QtSupport::getQt(env, obj))->writePathEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQStringList&)*(TQStringList*) QtSupport::toTQStringList(env, rValue, &_qlist_rValue), (char) sep, (bool) bPersistent, (bool) bGlobal); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigBase_writePathEntry__Ljava_lang_String_2_3Ljava_lang_String_2CZZZ(JNIEnv* env, jobject obj, jstring pKey, jobjectArray rValue, jchar sep, jboolean bPersistent, jboolean bGlobal, jboolean bNLS) -{ -static TQString* _qstring_pKey = 0; -static TQStringList* _qlist_rValue = 0; - ((TDEConfigBase*) QtSupport::getQt(env, obj))->writePathEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQStringList&)*(TQStringList*) QtSupport::toTQStringList(env, rValue, &_qlist_rValue), (char) sep, (bool) bPersistent, (bool) bGlobal, (bool) bNLS); - return; -} - diff --git a/kdejava/koala/kdejava/KConfigBase.h b/kdejava/koala/kdejava/KConfigBase.h deleted file mode 100644 index abfb85d2..00000000 --- a/kdejava/koala/kdejava/KConfigBase.h +++ /dev/null @@ -1,162 +0,0 @@ -/* DO NOT EDIT THIS FILE - it is machine generated */ - -#ifndef __org_kde_koala_TDEConfigBase__ -#define __org_kde_koala_TDEConfigBase__ - -#include - -#ifdef __cplusplus -extern "C" -{ -#endif - -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_TDEConfigBase_metaObject (JNIEnv *env, jobject); -extern JNIEXPORT jstring JNICALL Java_org_kde_koala_TDEConfigBase_className (JNIEnv *env, jobject); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_setGroup (JNIEnv *env, jobject, jstring); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_setDesktopGroup (JNIEnv *env, jobject); -extern JNIEXPORT jstring JNICALL Java_org_kde_koala_TDEConfigBase_group (JNIEnv *env, jobject); -extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_TDEConfigBase_hasGroup (JNIEnv *env, jobject, jstring); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_TDEConfigBase_groupList (JNIEnv *env, jobject); -extern JNIEXPORT jstring JNICALL Java_org_kde_koala_TDEConfigBase_locale (JNIEnv *env, jobject); -extern JNIEXPORT jstring JNICALL Java_org_kde_koala_TDEConfigBase_readEntry__Ljava_lang_String_2Ljava_lang_String_2 (JNIEnv *env, jobject, jstring, jstring); -extern JNIEXPORT jstring JNICALL Java_org_kde_koala_TDEConfigBase_readEntry__Ljava_lang_String_2 (JNIEnv *env, jobject, jstring); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_TDEConfigBase_readPropertyEntry (JNIEnv *env, jobject, jstring, jobject); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_TDEConfigBase_readListEntry__Ljava_lang_String_2C (JNIEnv *env, jobject, jstring, jchar); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_TDEConfigBase_readListEntry__Ljava_lang_String_2 (JNIEnv *env, jobject, jstring); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_TDEConfigBase_readListEntry__Ljava_lang_String_2_3Ljava_lang_String_2C (JNIEnv *env, jobject, jstring, jobjectArray, jchar); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_TDEConfigBase_readListEntry__Ljava_lang_String_2_3Ljava_lang_String_2 (JNIEnv *env, jobject, jstring, jobjectArray); -extern JNIEXPORT jintArray JNICALL Java_org_kde_koala_TDEConfigBase_readIntListEntry (JNIEnv *env, jobject, jstring); -extern JNIEXPORT jstring JNICALL Java_org_kde_koala_TDEConfigBase_readPathEntry__Ljava_lang_String_2Ljava_lang_String_2 (JNIEnv *env, jobject, jstring, jstring); -extern JNIEXPORT jstring JNICALL Java_org_kde_koala_TDEConfigBase_readPathEntry__Ljava_lang_String_2 (JNIEnv *env, jobject, jstring); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_TDEConfigBase_readPathListEntry__Ljava_lang_String_2C (JNIEnv *env, jobject, jstring, jchar); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_TDEConfigBase_readPathListEntry__Ljava_lang_String_2 (JNIEnv *env, jobject, jstring); -extern JNIEXPORT jint JNICALL Java_org_kde_koala_TDEConfigBase_readNumEntry__Ljava_lang_String_2I (JNIEnv *env, jobject, jstring, jint); -extern JNIEXPORT jint JNICALL Java_org_kde_koala_TDEConfigBase_readNumEntry__Ljava_lang_String_2 (JNIEnv *env, jobject, jstring); -extern JNIEXPORT jint JNICALL Java_org_kde_koala_TDEConfigBase_readUnsignedNumEntry__Ljava_lang_String_2I (JNIEnv *env, jobject, jstring, jint); -extern JNIEXPORT jint JNICALL Java_org_kde_koala_TDEConfigBase_readUnsignedNumEntry__Ljava_lang_String_2 (JNIEnv *env, jobject, jstring); -extern JNIEXPORT jlong JNICALL Java_org_kde_koala_TDEConfigBase_readLongNumEntry__Ljava_lang_String_2J (JNIEnv *env, jobject, jstring, jlong); -extern JNIEXPORT jlong JNICALL Java_org_kde_koala_TDEConfigBase_readLongNumEntry__Ljava_lang_String_2 (JNIEnv *env, jobject, jstring); -extern JNIEXPORT jlong JNICALL Java_org_kde_koala_TDEConfigBase_readUnsignedLongNumEntry__Ljava_lang_String_2J (JNIEnv *env, jobject, jstring, jlong); -extern JNIEXPORT jlong JNICALL Java_org_kde_koala_TDEConfigBase_readUnsignedLongNumEntry__Ljava_lang_String_2 (JNIEnv *env, jobject, jstring); -extern JNIEXPORT jlong JNICALL Java_org_kde_koala_TDEConfigBase_readNum64Entry__Ljava_lang_String_2J (JNIEnv *env, jobject, jstring, jlong); -extern JNIEXPORT jlong JNICALL Java_org_kde_koala_TDEConfigBase_readNum64Entry__Ljava_lang_String_2 (JNIEnv *env, jobject, jstring); -extern JNIEXPORT jlong JNICALL Java_org_kde_koala_TDEConfigBase_readUnsignedNum64Entry__Ljava_lang_String_2J (JNIEnv *env, jobject, jstring, jlong); -extern JNIEXPORT jlong JNICALL Java_org_kde_koala_TDEConfigBase_readUnsignedNum64Entry__Ljava_lang_String_2 (JNIEnv *env, jobject, jstring); -extern JNIEXPORT jdouble JNICALL Java_org_kde_koala_TDEConfigBase_readDoubleNumEntry__Ljava_lang_String_2D (JNIEnv *env, jobject, jstring, jdouble); -extern JNIEXPORT jdouble JNICALL Java_org_kde_koala_TDEConfigBase_readDoubleNumEntry__Ljava_lang_String_2 (JNIEnv *env, jobject, jstring); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_TDEConfigBase_readFontEntry__Ljava_lang_String_2Lorg_kde_qt_QFont_2 (JNIEnv *env, jobject, jstring, jobject); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_TDEConfigBase_readFontEntry__Ljava_lang_String_2 (JNIEnv *env, jobject, jstring); -extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_TDEConfigBase_readBoolEntry__Ljava_lang_String_2Z (JNIEnv *env, jobject, jstring, jboolean); -extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_TDEConfigBase_readBoolEntry__Ljava_lang_String_2 (JNIEnv *env, jobject, jstring); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_TDEConfigBase_readRectEntry__Ljava_lang_String_2Lorg_kde_qt_QRect_2 (JNIEnv *env, jobject, jstring, jobject); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_TDEConfigBase_readRectEntry__Ljava_lang_String_2 (JNIEnv *env, jobject, jstring); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_TDEConfigBase_readPointEntry__Ljava_lang_String_2Lorg_kde_qt_QPoint_2 (JNIEnv *env, jobject, jstring, jobject); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_TDEConfigBase_readPointEntry__Ljava_lang_String_2 (JNIEnv *env, jobject, jstring); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_TDEConfigBase_readSizeEntry__Ljava_lang_String_2Lorg_kde_qt_QSize_2 (JNIEnv *env, jobject, jstring, jobject); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_TDEConfigBase_readSizeEntry__Ljava_lang_String_2 (JNIEnv *env, jobject, jstring); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_TDEConfigBase_readColorEntry__Ljava_lang_String_2Lorg_kde_qt_QColor_2 (JNIEnv *env, jobject, jstring, jobject); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_TDEConfigBase_readColorEntry__Ljava_lang_String_2 (JNIEnv *env, jobject, jstring); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_TDEConfigBase_readDateTimeEntry__Ljava_lang_String_2Ljava_util_Calendar_2 (JNIEnv *env, jobject, jstring, jobject); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_TDEConfigBase_readDateTimeEntry__Ljava_lang_String_2 (JNIEnv *env, jobject, jstring); -extern JNIEXPORT jstring JNICALL Java_org_kde_koala_TDEConfigBase_readEntryUntranslated__Ljava_lang_String_2Ljava_lang_String_2 (JNIEnv *env, jobject, jstring, jstring); -extern JNIEXPORT jstring JNICALL Java_org_kde_koala_TDEConfigBase_readEntryUntranslated__Ljava_lang_String_2 (JNIEnv *env, jobject, jstring); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Ljava_lang_String_2ZZZ (JNIEnv *env, jobject, jstring, jstring, jboolean, jboolean, jboolean); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Ljava_lang_String_2ZZ (JNIEnv *env, jobject, jstring, jstring, jboolean, jboolean); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Ljava_lang_String_2Z (JNIEnv *env, jobject, jstring, jstring, jboolean); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Ljava_lang_String_2 (JNIEnv *env, jobject, jstring, jstring); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QVariant_2ZZZ (JNIEnv *env, jobject, jstring, jobject, jboolean, jboolean, jboolean); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QVariant_2ZZ (JNIEnv *env, jobject, jstring, jobject, jboolean, jboolean); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QVariant_2Z (JNIEnv *env, jobject, jstring, jobject, jboolean); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QVariant_2 (JNIEnv *env, jobject, jstring, jobject); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2_3Ljava_lang_String_2CZZZ (JNIEnv *env, jobject, jstring, jobjectArray, jchar, jboolean, jboolean, jboolean); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2_3Ljava_lang_String_2CZZ (JNIEnv *env, jobject, jstring, jobjectArray, jchar, jboolean, jboolean); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2_3Ljava_lang_String_2CZ (JNIEnv *env, jobject, jstring, jobjectArray, jchar, jboolean); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2_3Ljava_lang_String_2C (JNIEnv *env, jobject, jstring, jobjectArray, jchar); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2_3Ljava_lang_String_2 (JNIEnv *env, jobject, jstring, jobjectArray); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2_3IZZZ (JNIEnv *env, jobject, jstring, jintArray, jboolean, jboolean, jboolean); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2_3IZZ (JNIEnv *env, jobject, jstring, jintArray, jboolean, jboolean); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2_3IZ (JNIEnv *env, jobject, jstring, jintArray, jboolean); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2_3I (JNIEnv *env, jobject, jstring, jintArray); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2IZZZ (JNIEnv *env, jobject, jstring, jint, jboolean, jboolean, jboolean); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2IZZ (JNIEnv *env, jobject, jstring, jint, jboolean, jboolean); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2IZ (JNIEnv *env, jobject, jstring, jint, jboolean); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2I (JNIEnv *env, jobject, jstring, jint); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2JZZZ (JNIEnv *env, jobject, jstring, jlong, jboolean, jboolean, jboolean); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2JZZ (JNIEnv *env, jobject, jstring, jlong, jboolean, jboolean); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2JZ (JNIEnv *env, jobject, jstring, jlong, jboolean); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2J (JNIEnv *env, jobject, jstring, jlong); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2DZZCIZ (JNIEnv *env, jobject, jstring, jdouble, jboolean, jboolean, jchar, jint, jboolean); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2DZZCI (JNIEnv *env, jobject, jstring, jdouble, jboolean, jboolean, jchar, jint); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2DZZC (JNIEnv *env, jobject, jstring, jdouble, jboolean, jboolean, jchar); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2DZZ (JNIEnv *env, jobject, jstring, jdouble, jboolean, jboolean); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2DZ (JNIEnv *env, jobject, jstring, jdouble, jboolean); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2D (JNIEnv *env, jobject, jstring, jdouble); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2ZZZZ (JNIEnv *env, jobject, jstring, jboolean, jboolean, jboolean, jboolean); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2ZZZ (JNIEnv *env, jobject, jstring, jboolean, jboolean, jboolean); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2ZZ (JNIEnv *env, jobject, jstring, jboolean, jboolean); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Z (JNIEnv *env, jobject, jstring, jboolean); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QFont_2ZZZ (JNIEnv *env, jobject, jstring, jobject, jboolean, jboolean, jboolean); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QFont_2ZZ (JNIEnv *env, jobject, jstring, jobject, jboolean, jboolean); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QFont_2Z (JNIEnv *env, jobject, jstring, jobject, jboolean); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QFont_2 (JNIEnv *env, jobject, jstring, jobject); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QColor_2ZZZ (JNIEnv *env, jobject, jstring, jobject, jboolean, jboolean, jboolean); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QColor_2ZZ (JNIEnv *env, jobject, jstring, jobject, jboolean, jboolean); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QColor_2Z (JNIEnv *env, jobject, jstring, jobject, jboolean); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QColor_2 (JNIEnv *env, jobject, jstring, jobject); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Ljava_util_Calendar_2ZZZ (JNIEnv *env, jobject, jstring, jobject, jboolean, jboolean, jboolean); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Ljava_util_Calendar_2ZZ (JNIEnv *env, jobject, jstring, jobject, jboolean, jboolean); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Ljava_util_Calendar_2Z (JNIEnv *env, jobject, jstring, jobject, jboolean); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Ljava_util_Calendar_2 (JNIEnv *env, jobject, jstring, jobject); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QRect_2ZZZ (JNIEnv *env, jobject, jstring, jobject, jboolean, jboolean, jboolean); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QRect_2ZZ (JNIEnv *env, jobject, jstring, jobject, jboolean, jboolean); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QRect_2Z (JNIEnv *env, jobject, jstring, jobject, jboolean); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QRect_2 (JNIEnv *env, jobject, jstring, jobject); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QPoint_2ZZZ (JNIEnv *env, jobject, jstring, jobject, jboolean, jboolean, jboolean); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QPoint_2ZZ (JNIEnv *env, jobject, jstring, jobject, jboolean, jboolean); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QPoint_2Z (JNIEnv *env, jobject, jstring, jobject, jboolean); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QPoint_2 (JNIEnv *env, jobject, jstring, jobject); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QSize_2ZZZ (JNIEnv *env, jobject, jstring, jobject, jboolean, jboolean, jboolean); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QSize_2ZZ (JNIEnv *env, jobject, jstring, jobject, jboolean, jboolean); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QSize_2Z (JNIEnv *env, jobject, jstring, jobject, jboolean); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QSize_2 (JNIEnv *env, jobject, jstring, jobject); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writePathEntry__Ljava_lang_String_2Ljava_lang_String_2ZZZ (JNIEnv *env, jobject, jstring, jstring, jboolean, jboolean, jboolean); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writePathEntry__Ljava_lang_String_2Ljava_lang_String_2ZZ (JNIEnv *env, jobject, jstring, jstring, jboolean, jboolean); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writePathEntry__Ljava_lang_String_2Ljava_lang_String_2Z (JNIEnv *env, jobject, jstring, jstring, jboolean); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writePathEntry__Ljava_lang_String_2Ljava_lang_String_2 (JNIEnv *env, jobject, jstring, jstring); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writePathEntry__Ljava_lang_String_2_3Ljava_lang_String_2CZZZ (JNIEnv *env, jobject, jstring, jobjectArray, jchar, jboolean, jboolean, jboolean); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writePathEntry__Ljava_lang_String_2_3Ljava_lang_String_2CZZ (JNIEnv *env, jobject, jstring, jobjectArray, jchar, jboolean, jboolean); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writePathEntry__Ljava_lang_String_2_3Ljava_lang_String_2CZ (JNIEnv *env, jobject, jstring, jobjectArray, jchar, jboolean); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writePathEntry__Ljava_lang_String_2_3Ljava_lang_String_2C (JNIEnv *env, jobject, jstring, jobjectArray, jchar); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writePathEntry__Ljava_lang_String_2_3Ljava_lang_String_2 (JNIEnv *env, jobject, jstring, jobjectArray); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_deleteEntry__Ljava_lang_String_2ZZ (JNIEnv *env, jobject, jstring, jboolean, jboolean); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_deleteEntry__Ljava_lang_String_2Z (JNIEnv *env, jobject, jstring, jboolean); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_deleteEntry__Ljava_lang_String_2 (JNIEnv *env, jobject, jstring); -extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_TDEConfigBase_deleteGroup__Ljava_lang_String_2ZZ (JNIEnv *env, jobject, jstring, jboolean, jboolean); -extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_TDEConfigBase_deleteGroup__Ljava_lang_String_2Z (JNIEnv *env, jobject, jstring, jboolean); -extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_TDEConfigBase_deleteGroup__Ljava_lang_String_2 (JNIEnv *env, jobject, jstring); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_setDollarExpansion__Z (JNIEnv *env, jobject, jboolean); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_setDollarExpansion__ (JNIEnv *env, jobject); -extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_TDEConfigBase_isDollarExpansion (JNIEnv *env, jobject); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_rollback__Z (JNIEnv *env, jobject, jboolean); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_rollback__ (JNIEnv *env, jobject); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_sync (JNIEnv *env, jobject); -extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_TDEConfigBase_isDirty (JNIEnv *env, jobject); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_setReadOnly (JNIEnv *env, jobject, jboolean); -extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_TDEConfigBase_isReadOnly (JNIEnv *env, jobject); -extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_TDEConfigBase_hasKey (JNIEnv *env, jobject, jstring); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_reparseConfiguration (JNIEnv *env, jobject); -extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_TDEConfigBase_isImmutable (JNIEnv *env, jobject); -extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_TDEConfigBase_groupIsImmutable (JNIEnv *env, jobject, jstring); -extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_TDEConfigBase_entryIsImmutable (JNIEnv *env, jobject, jstring); -extern JNIEXPORT jint JNICALL Java_org_kde_koala_TDEConfigBase_getConfigState (JNIEnv *env, jobject); -extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_TDEConfigBase_checkConfigFilesWritable (JNIEnv *env, jobject, jboolean); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_setReadDefaults (JNIEnv *env, jobject, jboolean); -extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_TDEConfigBase_readDefaults (JNIEnv *env, jobject); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_revertToDefault (JNIEnv *env, jobject, jstring); -extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_TDEConfigBase_hasDefault (JNIEnv *env, jobject, jstring); - -#ifdef __cplusplus -} -#endif - -#endif /* __org_kde_koala_TDEConfigBase__ */ diff --git a/kdejava/koala/kdejava/KConfigGroup.cpp b/kdejava/koala/kdejava/KConfigGroup.cpp deleted file mode 100644 index 43bfa969..00000000 --- a/kdejava/koala/kdejava/KConfigGroup.cpp +++ /dev/null @@ -1,160 +0,0 @@ -//Auto-generated by kalyptus. DO NOT EDIT. -#include -#include -#include -#include - -#include -#include -#include - -class TDEConfigGroupJBridge : public TDEConfigGroup -{ -public: - TDEConfigGroupJBridge(TDEConfigBase* arg1,const TQCString& arg2) : TDEConfigGroup(arg1,arg2) {}; - void public_sync() { - TDEConfigGroup::sync(); - return; - } - ~TDEConfigGroupJBridge() {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 sync() { - if (!QtSupport::voidDelegate(this,"org.kde.koala.TDEConfigGroup","sync")) { - TDEConfigGroup::sync(); - } - return; - } - void insertChild(TQObject* arg1) { - if (!QtSupport::eventDelegate(this,"insertChild",(void*)arg1,"org.kde.qt.TQObject")) { - TQObject::insertChild(arg1); - } - return; - } - void parseConfigFiles() { - if (!QtSupport::voidDelegate(this,"org.kde.koala.TDEConfigGroup","parseConfigFiles")) { - TDEConfigBase::parseConfigFiles(); - } - return; - } - bool eventFilter(TQObject* object,TQEvent* event) { - if (!QtSupport::eventFilterDelegate(this,"org.kde.koala.TDEConfigGroup",object,event)) { - return TQObject::eventFilter(object,event); - } else { - return TRUE; - } - } -}; - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigGroup_deleteGroup__(JNIEnv* env, jobject obj) -{ - ((TDEConfigGroup*) QtSupport::getQt(env, obj))->deleteGroup(); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigGroup_deleteGroup__Z(JNIEnv* env, jobject obj, jboolean bGlobal) -{ - ((TDEConfigGroup*) QtSupport::getQt(env, obj))->deleteGroup((bool) bGlobal); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigGroup_dispose(JNIEnv* env, jobject obj) -{ - Java_org_kde_koala_TDEConfigGroup_finalize(env, obj); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigGroup_finalize(JNIEnv* env, jobject obj) -{ - if (QtSupport::allocatedInJavaWorld(env, obj) && ((TDEConfigGroup*)QtSupport::getQt(env, obj))->parent() == 0) { - delete (TDEConfigGroup*)QtSupport::getQt(env, obj); - QtSupport::setQt(env, obj, 0); - } - return; -} - -JNIEXPORT jboolean JNICALL -Java_org_kde_koala_TDEConfigGroup_groupIsImmutable(JNIEnv* env, jobject obj) -{ - jboolean xret = (jboolean) ((TDEConfigGroup*) QtSupport::getQt(env, obj))->groupIsImmutable(); - return xret; -} - -JNIEXPORT jboolean JNICALL -Java_org_kde_koala_TDEConfigGroup_isDisposed(JNIEnv* env, jobject obj) -{ - return (QtSupport::getQt(env, obj) == 0); -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_TDEConfigGroup_lookupData(JNIEnv* env, jobject obj, jobject _key) -{ - jobject xret = QtSupport::objectForQtKey(env, (void*)new KEntry(((TDEConfigGroup*) QtSupport::getQt(env, obj))->lookupData((const KEntryKey&)*(const KEntryKey*) QtSupport::getQt(env, _key))), "org.kde.koala.KEntry", TRUE); - return xret; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigGroup_newTDEConfigGroup(JNIEnv* env, jobject obj, jobject master, jstring group) -{ -static TQCString* _qcstring_group = 0; - if (QtSupport::getQt(env, obj) == 0) { - QtSupport::setQt(env, obj, new TDEConfigGroupJBridge((TDEConfigBase*) QtSupport::getQt(env, master), (const TQCString&)*(TQCString*) QtSupport::toTQCString(env, group, &_qcstring_group))); - QtSupport::setObjectForQtKey(env, obj, QtSupport::getQt(env, obj)); - } - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigGroup_putData__Lorg_kde_koala_KEntryKey_2Lorg_kde_koala_KEntry_2(JNIEnv* env, jobject obj, jobject _key, jobject _data) -{ - ((TDEConfigGroup*) QtSupport::getQt(env, obj))->putData((const KEntryKey&)*(const KEntryKey*) QtSupport::getQt(env, _key), (const KEntry&)*(const KEntry*) QtSupport::getQt(env, _data)); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigGroup_putData__Lorg_kde_koala_KEntryKey_2Lorg_kde_koala_KEntry_2Z(JNIEnv* env, jobject obj, jobject _key, jobject _data, jboolean _checkGroup) -{ - ((TDEConfigGroup*) QtSupport::getQt(env, obj))->putData((const KEntryKey&)*(const KEntryKey*) QtSupport::getQt(env, _key), (const KEntry&)*(const KEntry*) QtSupport::getQt(env, _data), (bool) _checkGroup); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigGroup_setDirty(JNIEnv* env, jobject obj, jboolean b) -{ - ((TDEConfigGroup*) QtSupport::getQt(env, obj))->setDirty((bool) b); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigGroup_sync(JNIEnv* env, jobject obj) -{ - ((TDEConfigGroupJBridge*) QtSupport::getQt(env, obj))->public_sync(); - return; -} - diff --git a/kdejava/koala/kdejava/KConfigGroup.h b/kdejava/koala/kdejava/KConfigGroup.h deleted file mode 100644 index 7c795fa2..00000000 --- a/kdejava/koala/kdejava/KConfigGroup.h +++ /dev/null @@ -1,30 +0,0 @@ -/* DO NOT EDIT THIS FILE - it is machine generated */ - -#ifndef __org_kde_koala_TDEConfigGroup__ -#define __org_kde_koala_TDEConfigGroup__ - -#include - -#ifdef __cplusplus -extern "C" -{ -#endif - -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigGroup_newTDEConfigGroup (JNIEnv *env, jobject, jobject, jstring); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigGroup_deleteGroup__Z (JNIEnv *env, jobject, jboolean); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigGroup_deleteGroup__ (JNIEnv *env, jobject); -extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_TDEConfigGroup_groupIsImmutable (JNIEnv *env, jobject); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigGroup_setDirty (JNIEnv *env, jobject, jboolean); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigGroup_putData__Lorg_kde_koala_KEntryKey_2Lorg_kde_koala_KEntry_2Z (JNIEnv *env, jobject, jobject, jobject, jboolean); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigGroup_putData__Lorg_kde_koala_KEntryKey_2Lorg_kde_koala_KEntry_2 (JNIEnv *env, jobject, jobject, jobject); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_TDEConfigGroup_lookupData (JNIEnv *env, jobject, jobject); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigGroup_sync (JNIEnv *env, jobject); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigGroup_finalize (JNIEnv *env, jobject); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigGroup_dispose (JNIEnv *env, jobject); -extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_TDEConfigGroup_isDisposed (JNIEnv *env, jobject); - -#ifdef __cplusplus -} -#endif - -#endif /* __org_kde_koala_TDEConfigGroup__ */ diff --git a/kdejava/koala/kdejava/KConfigGroupSaver.cpp b/kdejava/koala/kdejava/KConfigGroupSaver.cpp deleted file mode 100644 index 91dc2500..00000000 --- a/kdejava/koala/kdejava/KConfigGroupSaver.cpp +++ /dev/null @@ -1,57 +0,0 @@ -//Auto-generated by kalyptus. DO NOT EDIT. -#include -#include -#include - -#include -#include -#include - -class TDEConfigGroupSaverJBridge : public TDEConfigGroupSaver -{ -public: - TDEConfigGroupSaverJBridge(TDEConfigBase* arg1,TQString arg2) : TDEConfigGroupSaver(arg1,arg2) {}; - ~TDEConfigGroupSaverJBridge() {QtSupport::qtKeyDeleted(this);} -}; - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_TDEConfigGroupSaver_config(JNIEnv* env, jobject obj) -{ - jobject xret = QtSupport::objectForQtKey(env, (void*)((TDEConfigGroupSaver*) QtSupport::getQt(env, obj))->config(), "org.kde.koala.TDEConfigBase"); - return xret; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigGroupSaver_dispose(JNIEnv* env, jobject obj) -{ - Java_org_kde_koala_TDEConfigGroupSaver_finalize(env, obj); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigGroupSaver_finalize(JNIEnv* env, jobject obj) -{ - if (QtSupport::allocatedInJavaWorld(env, obj)) { - delete (TDEConfigGroupSaver*)QtSupport::getQt(env, obj); - QtSupport::setQt(env, obj, 0); - } - return; -} - -JNIEXPORT jboolean JNICALL -Java_org_kde_koala_TDEConfigGroupSaver_isDisposed(JNIEnv* env, jobject obj) -{ - return (QtSupport::getQt(env, obj) == 0); -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigGroupSaver_newTDEConfigGroupSaver(JNIEnv* env, jobject obj, jobject config, jstring group) -{ -static TQString* _qstring_group = 0; - if (QtSupport::getQt(env, obj) == 0) { - QtSupport::setQt(env, obj, new TDEConfigGroupSaverJBridge((TDEConfigBase*) QtSupport::getQt(env, config), (TQString)*(TQString*) QtSupport::toTQString(env, group, &_qstring_group))); - QtSupport::setObjectForQtKey(env, obj, QtSupport::getQt(env, obj)); - } - return; -} - diff --git a/kdejava/koala/kdejava/KConfigGroupSaver.h b/kdejava/koala/kdejava/KConfigGroupSaver.h deleted file mode 100644 index 14a06868..00000000 --- a/kdejava/koala/kdejava/KConfigGroupSaver.h +++ /dev/null @@ -1,23 +0,0 @@ -/* DO NOT EDIT THIS FILE - it is machine generated */ - -#ifndef __org_kde_koala_TDEConfigGroupSaver__ -#define __org_kde_koala_TDEConfigGroupSaver__ - -#include - -#ifdef __cplusplus -extern "C" -{ -#endif - -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigGroupSaver_newTDEConfigGroupSaver (JNIEnv *env, jobject, jobject, jstring); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_TDEConfigGroupSaver_config (JNIEnv *env, jobject); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigGroupSaver_finalize (JNIEnv *env, jobject); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigGroupSaver_dispose (JNIEnv *env, jobject); -extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_TDEConfigGroupSaver_isDisposed (JNIEnv *env, jobject); - -#ifdef __cplusplus -} -#endif - -#endif /* __org_kde_koala_TDEConfigGroupSaver__ */ diff --git a/kdejava/koala/kdejava/KConfigINIBackEnd.cpp b/kdejava/koala/kdejava/KConfigINIBackEnd.cpp deleted file mode 100644 index 585d0e15..00000000 --- a/kdejava/koala/kdejava/KConfigINIBackEnd.cpp +++ /dev/null @@ -1,134 +0,0 @@ -//Auto-generated by kalyptus. DO NOT EDIT. -#include -#include -#include -#include - -#include -#include -#include - -class TDEConfigINIBackEndJBridge : public TDEConfigINIBackEnd -{ -public: - TDEConfigINIBackEndJBridge(TDEConfigBase* arg1,const TQString& arg2,const char* arg3,bool arg4) : TDEConfigINIBackEnd(arg1,arg2,arg3,arg4) {}; - TDEConfigINIBackEndJBridge(TDEConfigBase* arg1,const TQString& arg2,const char* arg3) : TDEConfigINIBackEnd(arg1,arg2,arg3) {}; - void public_sync() { - TDEConfigINIBackEnd::sync(); - return; - } - void protected_parseSingleConfigFile(TQFile& arg1) { - TDEConfigINIBackEnd::parseSingleConfigFile(arg1); - return; - } - bool protected_writeConfigFile(TQString arg1,bool arg2,bool arg3) { - return (bool) TDEConfigINIBackEnd::writeConfigFile(arg1,arg2,arg3); - } - bool protected_writeConfigFile(TQString arg1,bool arg2) { - return (bool) TDEConfigINIBackEnd::writeConfigFile(arg1,arg2); - } - bool protected_writeConfigFile(TQString arg1) { - return (bool) TDEConfigINIBackEnd::writeConfigFile(arg1); - } - ~TDEConfigINIBackEndJBridge() {QtSupport::qtKeyDeleted(this);} -}; - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigINIBackEnd_dispose(JNIEnv* env, jobject obj) -{ - Java_org_kde_koala_TDEConfigINIBackEnd_finalize(env, obj); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigINIBackEnd_finalize(JNIEnv* env, jobject obj) -{ - if (QtSupport::allocatedInJavaWorld(env, obj)) { - delete (TDEConfigINIBackEnd*)QtSupport::getQt(env, obj); - QtSupport::setQt(env, obj, 0); - } - return; -} - -JNIEXPORT jboolean JNICALL -Java_org_kde_koala_TDEConfigINIBackEnd_isDisposed(JNIEnv* env, jobject obj) -{ - return (QtSupport::getQt(env, obj) == 0); -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigINIBackEnd_newTDEConfigINIBackEnd__Lorg_kde_koala_TDEConfigBase_2Ljava_lang_String_2Ljava_lang_String_2(JNIEnv* env, jobject obj, jobject _config, jstring _fileName, jstring _resType) -{ -static TQString* _qstring__fileName = 0; -static TQCString* _qstring__resType = 0; - if (QtSupport::getQt(env, obj) == 0) { - QtSupport::setQt(env, obj, new TDEConfigINIBackEndJBridge((TDEConfigBase*) QtSupport::getQt(env, _config), (const TQString&)*(TQString*) QtSupport::toTQString(env, _fileName, &_qstring__fileName), (const char*) QtSupport::toCharString(env, _resType, &_qstring__resType))); - QtSupport::setObjectForQtKey(env, obj, QtSupport::getQt(env, obj)); - } - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigINIBackEnd_newTDEConfigINIBackEnd__Lorg_kde_koala_TDEConfigBase_2Ljava_lang_String_2Ljava_lang_String_2Z(JNIEnv* env, jobject obj, jobject _config, jstring _fileName, jstring _resType, jboolean _useKDEGlobals) -{ -static TQString* _qstring__fileName = 0; -static TQCString* _qstring__resType = 0; - if (QtSupport::getQt(env, obj) == 0) { - QtSupport::setQt(env, obj, new TDEConfigINIBackEndJBridge((TDEConfigBase*) QtSupport::getQt(env, _config), (const TQString&)*(TQString*) QtSupport::toTQString(env, _fileName, &_qstring__fileName), (const char*) QtSupport::toCharString(env, _resType, &_qstring__resType), (bool) _useKDEGlobals)); - QtSupport::setObjectForQtKey(env, obj, QtSupport::getQt(env, obj)); - } - return; -} - -JNIEXPORT jboolean JNICALL -Java_org_kde_koala_TDEConfigINIBackEnd_parseConfigFiles(JNIEnv* env, jobject obj) -{ - jboolean xret = (jboolean) ((TDEConfigINIBackEnd*) QtSupport::getQt(env, obj))->parseConfigFiles(); - return xret; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigINIBackEnd_parseSingleConfigFile(JNIEnv* env, jobject obj, jobject rFile) -{ - ((TDEConfigINIBackEndJBridge*) QtSupport::getQt(env, obj))->protected_parseSingleConfigFile((TQFile&)*(TQFile*) QtSupport::getQt(env, rFile)); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigINIBackEnd_sync__(JNIEnv* env, jobject obj) -{ - ((TDEConfigINIBackEndJBridge*) QtSupport::getQt(env, obj))->public_sync(); - return; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_TDEConfigINIBackEnd_sync__Z(JNIEnv* env, jobject obj, jboolean bMerge) -{ - ((TDEConfigINIBackEnd*) QtSupport::getQt(env, obj))->sync((bool) bMerge); - return; -} - -JNIEXPORT jboolean JNICALL -Java_org_kde_koala_TDEConfigINIBackEnd_writeConfigFile__Ljava_lang_String_2(JNIEnv* env, jobject obj, jstring filename) -{ -static TQString* _qstring_filename = 0; - jboolean xret = (jboolean) ((TDEConfigINIBackEndJBridge*) QtSupport::getQt(env, obj))->protected_writeConfigFile((TQString)*(TQString*) QtSupport::toTQString(env, filename, &_qstring_filename)); - return xret; -} - -JNIEXPORT jboolean JNICALL -Java_org_kde_koala_TDEConfigINIBackEnd_writeConfigFile__Ljava_lang_String_2Z(JNIEnv* env, jobject obj, jstring filename, jboolean bGlobal) -{ -static TQString* _qstring_filename = 0; - jboolean xret = (jboolean) ((TDEConfigINIBackEndJBridge*) QtSupport::getQt(env, obj))->protected_writeConfigFile((TQString)*(TQString*) QtSupport::toTQString(env, filename, &_qstring_filename), (bool) bGlobal); - return xret; -} - -JNIEXPORT jboolean JNICALL -Java_org_kde_koala_TDEConfigINIBackEnd_writeConfigFile__Ljava_lang_String_2ZZ(JNIEnv* env, jobject obj, jstring filename, jboolean bGlobal, jboolean bMerge) -{ -static TQString* _qstring_filename = 0; - jboolean xret = (jboolean) ((TDEConfigINIBackEndJBridge*) QtSupport::getQt(env, obj))->protected_writeConfigFile((TQString)*(TQString*) QtSupport::toTQString(env, filename, &_qstring_filename), (bool) bGlobal, (bool) bMerge); - return xret; -} - diff --git a/kdejava/koala/kdejava/KConfigINIBackEnd.h b/kdejava/koala/kdejava/KConfigINIBackEnd.h deleted file mode 100644 index 2e5127dc..00000000 --- a/kdejava/koala/kdejava/KConfigINIBackEnd.h +++ /dev/null @@ -1,30 +0,0 @@ -/* DO NOT EDIT THIS FILE - it is machine generated */ - -#ifndef __org_kde_koala_TDEConfigINIBackEnd__ -#define __org_kde_koala_TDEConfigINIBackEnd__ - -#include - -#ifdef __cplusplus -extern "C" -{ -#endif - -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigINIBackEnd_newTDEConfigINIBackEnd__Lorg_kde_koala_TDEConfigBase_2Ljava_lang_String_2Ljava_lang_String_2Z (JNIEnv *env, jobject, jobject, jstring, jstring, jboolean); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigINIBackEnd_newTDEConfigINIBackEnd__Lorg_kde_koala_TDEConfigBase_2Ljava_lang_String_2Ljava_lang_String_2 (JNIEnv *env, jobject, jobject, jstring, jstring); -extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_TDEConfigINIBackEnd_parseConfigFiles (JNIEnv *env, jobject); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigINIBackEnd_sync__Z (JNIEnv *env, jobject, jboolean); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigINIBackEnd_sync__ (JNIEnv *env, jobject); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigINIBackEnd_parseSingleConfigFile (JNIEnv *env, jobject, jobject); -extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_TDEConfigINIBackEnd_writeConfigFile__Ljava_lang_String_2ZZ (JNIEnv *env, jobject, jstring, jboolean, jboolean); -extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_TDEConfigINIBackEnd_writeConfigFile__Ljava_lang_String_2Z (JNIEnv *env, jobject, jstring, jboolean); -extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_TDEConfigINIBackEnd_writeConfigFile__Ljava_lang_String_2 (JNIEnv *env, jobject, jstring); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigINIBackEnd_finalize (JNIEnv *env, jobject); -extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigINIBackEnd_dispose (JNIEnv *env, jobject); -extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_TDEConfigINIBackEnd_isDisposed (JNIEnv *env, jobject); - -#ifdef __cplusplus -} -#endif - -#endif /* __org_kde_koala_TDEConfigINIBackEnd__ */ diff --git a/kdejava/koala/kdejava/KIO.cpp b/kdejava/koala/kdejava/KIO.cpp deleted file mode 100644 index 12aeca9d..00000000 --- a/kdejava/koala/kdejava/KIO.cpp +++ /dev/null @@ -1,1196 +0,0 @@ -//Auto-generated by kalyptus. DO NOT EDIT. -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -#include -#include -#include -#include -#include -#include -#include -#include - -JNIEXPORT jstring JNICALL -Java_org_kde_koala_KIO_buildErrorString(JNIEnv* env, jclass cls, jint errorCode, jstring errorText) -{ - TQString _qstring; - (void) cls; -static TQString* _qstring_errorText = 0; - _qstring = TDEIO::buildErrorString((int) errorCode, (const TQString&)*(TQString*) QtSupport::toTQString(env, errorText, &_qstring_errorText)); - return QtSupport::fromTQString(env, &_qstring); -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_chmod(JNIEnv* env, jclass cls, jobject url, jint permissions) -{ - (void) cls; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::chmod((const KURL&)*(const KURL*) QtSupport::getQt(env, url), (int) permissions), "org.kde.koala.SimpleJob"); - return xret; -} - -JNIEXPORT jstring JNICALL -Java_org_kde_koala_KIO_convertSeconds(JNIEnv* env, jclass cls, jint seconds) -{ - TQString _qstring; - (void) cls; - _qstring = TDEIO::convertSeconds((unsigned int) seconds); - return QtSupport::fromTQString(env, &_qstring); -} - -JNIEXPORT jstring JNICALL -Java_org_kde_koala_KIO_convertSizeFromKB(JNIEnv* env, jclass cls, jlong kbSize) -{ - TQString _qstring; - (void) cls; - _qstring = TDEIO::convertSizeFromKB((TDEIO::filesize_t) kbSize); - return QtSupport::fromTQString(env, &_qstring); -} - -JNIEXPORT jstring JNICALL -Java_org_kde_koala_KIO_convertSizeWithBytes(JNIEnv* env, jclass cls, jlong size) -{ - TQString _qstring; - (void) cls; - _qstring = TDEIO::convertSizeWithBytes((TDEIO::filesize_t) size); - return QtSupport::fromTQString(env, &_qstring); -} - -JNIEXPORT jstring JNICALL -Java_org_kde_koala_KIO_convertSize(JNIEnv* env, jclass cls, jlong size) -{ - TQString _qstring; - (void) cls; - _qstring = TDEIO::convertSize((TDEIO::filesize_t) size); - return QtSupport::fromTQString(env, &_qstring); -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_copyAs__Lorg_kde_koala_KURL_2Lorg_kde_koala_KURL_2(JNIEnv* env, jclass cls, jobject src, jobject dest) -{ - (void) cls; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::copyAs((const KURL&)*(const KURL*) QtSupport::getQt(env, src), (const KURL&)*(const KURL*) QtSupport::getQt(env, dest)), "org.kde.koala.CopyJob"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_copyAs__Lorg_kde_koala_KURL_2Lorg_kde_koala_KURL_2Z(JNIEnv* env, jclass cls, jobject src, jobject dest, jboolean showProgressInfo) -{ - (void) cls; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::copyAs((const KURL&)*(const KURL*) QtSupport::getQt(env, src), (const KURL&)*(const KURL*) QtSupport::getQt(env, dest), (bool) showProgressInfo), "org.kde.koala.CopyJob"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_copy__Ljava_util_ArrayList_2Lorg_kde_koala_KURL_2(JNIEnv* env, jclass cls, jobjectArray src, jobject dest) -{ - (void) cls; -static KURL::List* _qlist_src = 0; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::copy((const KURL::List&)*(KURL::List*) KDESupport::toKURLList(env, src, &_qlist_src), (const KURL&)*(const KURL*) QtSupport::getQt(env, dest)), "org.kde.koala.CopyJob"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_copy__Ljava_util_ArrayList_2Lorg_kde_koala_KURL_2Z(JNIEnv* env, jclass cls, jobjectArray src, jobject dest, jboolean showProgressInfo) -{ - (void) cls; -static KURL::List* _qlist_src = 0; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::copy((const KURL::List&)*(KURL::List*) KDESupport::toKURLList(env, src, &_qlist_src), (const KURL&)*(const KURL*) QtSupport::getQt(env, dest), (bool) showProgressInfo), "org.kde.koala.CopyJob"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_copy__Lorg_kde_koala_KURL_2Lorg_kde_koala_KURL_2(JNIEnv* env, jclass cls, jobject src, jobject dest) -{ - (void) cls; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::copy((const KURL&)*(const KURL*) QtSupport::getQt(env, src), (const KURL&)*(const KURL*) QtSupport::getQt(env, dest)), "org.kde.koala.CopyJob"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_copy__Lorg_kde_koala_KURL_2Lorg_kde_koala_KURL_2Z(JNIEnv* env, jclass cls, jobject src, jobject dest, jboolean showProgressInfo) -{ - (void) cls; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::copy((const KURL&)*(const KURL*) QtSupport::getQt(env, src), (const KURL&)*(const KURL*) QtSupport::getQt(env, dest), (bool) showProgressInfo), "org.kde.koala.CopyJob"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_davPropFind__Lorg_kde_koala_KURL_2Lorg_kde_qt_QDomDocument_2Ljava_lang_String_2(JNIEnv* env, jclass cls, jobject url, jobject properties, jstring depth) -{ - (void) cls; -static TQString* _qstring_depth = 0; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::davPropFind((const KURL&)*(const KURL*) QtSupport::getQt(env, url), (const TQDomDocument&)*(const TQDomDocument*) QtSupport::getQt(env, properties), (TQString)*(TQString*) QtSupport::toTQString(env, depth, &_qstring_depth)), "org.kde.koala.DavJob"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_davPropFind__Lorg_kde_koala_KURL_2Lorg_kde_qt_QDomDocument_2Ljava_lang_String_2Z(JNIEnv* env, jclass cls, jobject url, jobject properties, jstring depth, jboolean showProgressInfo) -{ - (void) cls; -static TQString* _qstring_depth = 0; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::davPropFind((const KURL&)*(const KURL*) QtSupport::getQt(env, url), (const TQDomDocument&)*(const TQDomDocument*) QtSupport::getQt(env, properties), (TQString)*(TQString*) QtSupport::toTQString(env, depth, &_qstring_depth), (bool) showProgressInfo), "org.kde.koala.DavJob"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_davPropPatch__Lorg_kde_koala_KURL_2Lorg_kde_qt_QDomDocument_2(JNIEnv* env, jclass cls, jobject url, jobject properties) -{ - (void) cls; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::davPropPatch((const KURL&)*(const KURL*) QtSupport::getQt(env, url), (const TQDomDocument&)*(const TQDomDocument*) QtSupport::getQt(env, properties)), "org.kde.koala.DavJob"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_davPropPatch__Lorg_kde_koala_KURL_2Lorg_kde_qt_QDomDocument_2Z(JNIEnv* env, jclass cls, jobject url, jobject properties, jboolean showProgressInfo) -{ - (void) cls; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::davPropPatch((const KURL&)*(const KURL*) QtSupport::getQt(env, url), (const TQDomDocument&)*(const TQDomDocument*) QtSupport::getQt(env, properties), (bool) showProgressInfo), "org.kde.koala.DavJob"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_davSearch__Lorg_kde_koala_KURL_2Ljava_lang_String_2Ljava_lang_String_2Ljava_lang_String_2(JNIEnv* env, jclass cls, jobject url, jstring nsURI, jstring qName, jstring query) -{ - (void) cls; -static TQString* _qstring_nsURI = 0; -static TQString* _qstring_qName = 0; -static TQString* _qstring_query = 0; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::davSearch((const KURL&)*(const KURL*) QtSupport::getQt(env, url), (const TQString&)*(TQString*) QtSupport::toTQString(env, nsURI, &_qstring_nsURI), (const TQString&)*(TQString*) QtSupport::toTQString(env, qName, &_qstring_qName), (const TQString&)*(TQString*) QtSupport::toTQString(env, query, &_qstring_query)), "org.kde.koala.DavJob"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_davSearch__Lorg_kde_koala_KURL_2Ljava_lang_String_2Ljava_lang_String_2Ljava_lang_String_2Z(JNIEnv* env, jclass cls, jobject url, jstring nsURI, jstring qName, jstring query, jboolean showProgressInfo) -{ - (void) cls; -static TQString* _qstring_nsURI = 0; -static TQString* _qstring_qName = 0; -static TQString* _qstring_query = 0; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::davSearch((const KURL&)*(const KURL*) QtSupport::getQt(env, url), (const TQString&)*(TQString*) QtSupport::toTQString(env, nsURI, &_qstring_nsURI), (const TQString&)*(TQString*) QtSupport::toTQString(env, qName, &_qstring_qName), (const TQString&)*(TQString*) QtSupport::toTQString(env, query, &_qstring_query), (bool) showProgressInfo), "org.kde.koala.DavJob"); - return xret; -} - -JNIEXPORT jstring JNICALL -Java_org_kde_koala_KIO_decodeFileName(JNIEnv* env, jclass cls, jstring str) -{ - TQString _qstring; - (void) cls; -static TQString* _qstring_str = 0; - _qstring = TDEIO::decodeFileName((const TQString&)*(TQString*) QtSupport::toTQString(env, str, &_qstring_str)); - return QtSupport::fromTQString(env, &_qstring); -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_del__Ljava_util_ArrayList_2(JNIEnv* env, jclass cls, jobjectArray src) -{ - (void) cls; -static KURL::List* _qlist_src = 0; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::del((const KURL::List&)*(KURL::List*) KDESupport::toKURLList(env, src, &_qlist_src)), "org.kde.koala.DeleteJob"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_del__Ljava_util_ArrayList_2Z(JNIEnv* env, jclass cls, jobjectArray src, jboolean shred) -{ - (void) cls; -static KURL::List* _qlist_src = 0; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::del((const KURL::List&)*(KURL::List*) KDESupport::toKURLList(env, src, &_qlist_src), (bool) shred), "org.kde.koala.DeleteJob"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_del__Ljava_util_ArrayList_2ZZ(JNIEnv* env, jclass cls, jobjectArray src, jboolean shred, jboolean showProgressInfo) -{ - (void) cls; -static KURL::List* _qlist_src = 0; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::del((const KURL::List&)*(KURL::List*) KDESupport::toKURLList(env, src, &_qlist_src), (bool) shred, (bool) showProgressInfo), "org.kde.koala.DeleteJob"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_del__Lorg_kde_koala_KURL_2(JNIEnv* env, jclass cls, jobject src) -{ - (void) cls; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::del((const KURL&)*(const KURL*) QtSupport::getQt(env, src)), "org.kde.koala.DeleteJob"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_del__Lorg_kde_koala_KURL_2Z(JNIEnv* env, jclass cls, jobject src, jboolean shred) -{ - (void) cls; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::del((const KURL&)*(const KURL*) QtSupport::getQt(env, src), (bool) shred), "org.kde.koala.DeleteJob"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_del__Lorg_kde_koala_KURL_2ZZ(JNIEnv* env, jclass cls, jobject src, jboolean shred, jboolean showProgressInfo) -{ - (void) cls; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::del((const KURL&)*(const KURL*) QtSupport::getQt(env, src), (bool) shred, (bool) showProgressInfo), "org.kde.koala.DeleteJob"); - return xret; -} - -JNIEXPORT jstring JNICALL -Java_org_kde_koala_KIO_encodeFileName(JNIEnv* env, jclass cls, jstring str) -{ - TQString _qstring; - (void) cls; -static TQString* _qstring_str = 0; - _qstring = TDEIO::encodeFileName((const TQString&)*(TQString*) QtSupport::toTQString(env, str, &_qstring_str)); - return QtSupport::fromTQString(env, &_qstring); -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_fileMetaInfo(JNIEnv* env, jclass cls, jobjectArray items) -{ - (void) cls; -static KFileItemList* _qlist_items = 0; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::fileMetaInfo((const KFileItemList&)*(TQStrList*) KDESupport::toKFileItemList(env, items, &_qlist_items)), "org.kde.koala.MetaInfoJob"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_filePreview__Ljava_util_ArrayList_2I(JNIEnv* env, jclass cls, jobjectArray items, jint width) -{ - (void) cls; -static KFileItemList* _qlist_items = 0; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::filePreview((const KFileItemList&)*(TQStrList*) KDESupport::toKFileItemList(env, items, &_qlist_items), (int) width), "org.kde.koala.PreviewJob"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_filePreview__Ljava_util_ArrayList_2II(JNIEnv* env, jclass cls, jobjectArray items, jint width, jint height) -{ - (void) cls; -static KFileItemList* _qlist_items = 0; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::filePreview((const KFileItemList&)*(TQStrList*) KDESupport::toKFileItemList(env, items, &_qlist_items), (int) width, (int) height), "org.kde.koala.PreviewJob"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_filePreview__Ljava_util_ArrayList_2III(JNIEnv* env, jclass cls, jobjectArray items, jint width, jint height, jint iconSize) -{ - (void) cls; -static KFileItemList* _qlist_items = 0; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::filePreview((const KFileItemList&)*(TQStrList*) KDESupport::toKFileItemList(env, items, &_qlist_items), (int) width, (int) height, (int) iconSize), "org.kde.koala.PreviewJob"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_filePreview__Ljava_util_ArrayList_2IIII(JNIEnv* env, jclass cls, jobjectArray items, jint width, jint height, jint iconSize, jint iconAlpha) -{ - (void) cls; -static KFileItemList* _qlist_items = 0; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::filePreview((const KFileItemList&)*(TQStrList*) KDESupport::toKFileItemList(env, items, &_qlist_items), (int) width, (int) height, (int) iconSize, (int) iconAlpha), "org.kde.koala.PreviewJob"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_filePreview__Ljava_util_ArrayList_2IIIIZ(JNIEnv* env, jclass cls, jobjectArray items, jint width, jint height, jint iconSize, jint iconAlpha, jboolean scale) -{ - (void) cls; -static KFileItemList* _qlist_items = 0; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::filePreview((const KFileItemList&)*(TQStrList*) KDESupport::toKFileItemList(env, items, &_qlist_items), (int) width, (int) height, (int) iconSize, (int) iconAlpha, (bool) scale), "org.kde.koala.PreviewJob"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_filePreview__Ljava_util_ArrayList_2IIIIZZ(JNIEnv* env, jclass cls, jobjectArray items, jint width, jint height, jint iconSize, jint iconAlpha, jboolean scale, jboolean save) -{ - (void) cls; -static KFileItemList* _qlist_items = 0; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::filePreview((const KFileItemList&)*(TQStrList*) KDESupport::toKFileItemList(env, items, &_qlist_items), (int) width, (int) height, (int) iconSize, (int) iconAlpha, (bool) scale, (bool) save), "org.kde.koala.PreviewJob"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_filePreview__Ljava_util_ArrayList_2IIIIZZ_3Ljava_lang_String_2(JNIEnv* env, jclass cls, jobjectArray items, jint width, jint height, jint iconSize, jint iconAlpha, jboolean scale, jboolean save, jobjectArray enabledPlugins) -{ - (void) cls; -static KFileItemList* _qlist_items = 0; -static TQStringList* _qlist_enabledPlugins = 0; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::filePreview((const KFileItemList&)*(TQStrList*) KDESupport::toKFileItemList(env, items, &_qlist_items), (int) width, (int) height, (int) iconSize, (int) iconAlpha, (bool) scale, (bool) save, (const TQStringList*) QtSupport::toTQStringList(env, enabledPlugins, &_qlist_enabledPlugins)), "org.kde.koala.PreviewJob"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_file_1copy__Lorg_kde_koala_KURL_2Lorg_kde_koala_KURL_2(JNIEnv* env, jclass cls, jobject src, jobject dest) -{ - (void) cls; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::file_copy((const KURL&)*(const KURL*) QtSupport::getQt(env, src), (const KURL&)*(const KURL*) QtSupport::getQt(env, dest)), "org.kde.koala.FileCopyJob"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_file_1copy__Lorg_kde_koala_KURL_2Lorg_kde_koala_KURL_2I(JNIEnv* env, jclass cls, jobject src, jobject dest, jint permissions) -{ - (void) cls; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::file_copy((const KURL&)*(const KURL*) QtSupport::getQt(env, src), (const KURL&)*(const KURL*) QtSupport::getQt(env, dest), (int) permissions), "org.kde.koala.FileCopyJob"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_file_1copy__Lorg_kde_koala_KURL_2Lorg_kde_koala_KURL_2IZ(JNIEnv* env, jclass cls, jobject src, jobject dest, jint permissions, jboolean overwrite) -{ - (void) cls; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::file_copy((const KURL&)*(const KURL*) QtSupport::getQt(env, src), (const KURL&)*(const KURL*) QtSupport::getQt(env, dest), (int) permissions, (bool) overwrite), "org.kde.koala.FileCopyJob"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_file_1copy__Lorg_kde_koala_KURL_2Lorg_kde_koala_KURL_2IZZ(JNIEnv* env, jclass cls, jobject src, jobject dest, jint permissions, jboolean overwrite, jboolean resume) -{ - (void) cls; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::file_copy((const KURL&)*(const KURL*) QtSupport::getQt(env, src), (const KURL&)*(const KURL*) QtSupport::getQt(env, dest), (int) permissions, (bool) overwrite, (bool) resume), "org.kde.koala.FileCopyJob"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_file_1copy__Lorg_kde_koala_KURL_2Lorg_kde_koala_KURL_2IZZZ(JNIEnv* env, jclass cls, jobject src, jobject dest, jint permissions, jboolean overwrite, jboolean resume, jboolean showProgressInfo) -{ - (void) cls; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::file_copy((const KURL&)*(const KURL*) QtSupport::getQt(env, src), (const KURL&)*(const KURL*) QtSupport::getQt(env, dest), (int) permissions, (bool) overwrite, (bool) resume, (bool) showProgressInfo), "org.kde.koala.FileCopyJob"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_file_1delete__Lorg_kde_koala_KURL_2(JNIEnv* env, jclass cls, jobject src) -{ - (void) cls; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::file_delete((const KURL&)*(const KURL*) QtSupport::getQt(env, src)), "org.kde.koala.SimpleJob"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_file_1delete__Lorg_kde_koala_KURL_2Z(JNIEnv* env, jclass cls, jobject src, jboolean showProgressInfo) -{ - (void) cls; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::file_delete((const KURL&)*(const KURL*) QtSupport::getQt(env, src), (bool) showProgressInfo), "org.kde.koala.SimpleJob"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_file_1move__Lorg_kde_koala_KURL_2Lorg_kde_koala_KURL_2(JNIEnv* env, jclass cls, jobject src, jobject dest) -{ - (void) cls; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::file_move((const KURL&)*(const KURL*) QtSupport::getQt(env, src), (const KURL&)*(const KURL*) QtSupport::getQt(env, dest)), "org.kde.koala.FileCopyJob"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_file_1move__Lorg_kde_koala_KURL_2Lorg_kde_koala_KURL_2I(JNIEnv* env, jclass cls, jobject src, jobject dest, jint permissions) -{ - (void) cls; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::file_move((const KURL&)*(const KURL*) QtSupport::getQt(env, src), (const KURL&)*(const KURL*) QtSupport::getQt(env, dest), (int) permissions), "org.kde.koala.FileCopyJob"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_file_1move__Lorg_kde_koala_KURL_2Lorg_kde_koala_KURL_2IZ(JNIEnv* env, jclass cls, jobject src, jobject dest, jint permissions, jboolean overwrite) -{ - (void) cls; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::file_move((const KURL&)*(const KURL*) QtSupport::getQt(env, src), (const KURL&)*(const KURL*) QtSupport::getQt(env, dest), (int) permissions, (bool) overwrite), "org.kde.koala.FileCopyJob"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_file_1move__Lorg_kde_koala_KURL_2Lorg_kde_koala_KURL_2IZZ(JNIEnv* env, jclass cls, jobject src, jobject dest, jint permissions, jboolean overwrite, jboolean resume) -{ - (void) cls; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::file_move((const KURL&)*(const KURL*) QtSupport::getQt(env, src), (const KURL&)*(const KURL*) QtSupport::getQt(env, dest), (int) permissions, (bool) overwrite, (bool) resume), "org.kde.koala.FileCopyJob"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_file_1move__Lorg_kde_koala_KURL_2Lorg_kde_koala_KURL_2IZZZ(JNIEnv* env, jclass cls, jobject src, jobject dest, jint permissions, jboolean overwrite, jboolean resume, jboolean showProgressInfo) -{ - (void) cls; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::file_move((const KURL&)*(const KURL*) QtSupport::getQt(env, src), (const KURL&)*(const KURL*) QtSupport::getQt(env, dest), (int) permissions, (bool) overwrite, (bool) resume, (bool) showProgressInfo), "org.kde.koala.FileCopyJob"); - return xret; -} - -JNIEXPORT jstring JNICALL -Java_org_kde_koala_KIO_findDeviceMountPoint(JNIEnv* env, jclass cls, jstring device) -{ - TQString _qstring; - (void) cls; -static TQString* _qstring_device = 0; - _qstring = TDEIO::findDeviceMountPoint((const TQString&)*(TQString*) QtSupport::toTQString(env, device, &_qstring_device)); - return QtSupport::fromTQString(env, &_qstring); -} - -JNIEXPORT jstring JNICALL -Java_org_kde_koala_KIO_findPathMountPoint(JNIEnv* env, jclass cls, jstring filename) -{ - TQString _qstring; - (void) cls; -static TQString* _qstring_filename = 0; - _qstring = TDEIO::findPathMountPoint((const TQString&)*(TQString*) QtSupport::toTQString(env, filename, &_qstring_filename)); - return QtSupport::fromTQString(env, &_qstring); -} - -JNIEXPORT jstring JNICALL -Java_org_kde_koala_KIO_getCacheControlString(JNIEnv* env, jclass cls, jint cacheControl) -{ - TQString _qstring; - (void) cls; - _qstring = TDEIO::getCacheControlString((TDEIO::CacheControl) cacheControl); - return QtSupport::fromTQString(env, &_qstring); -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_get__Lorg_kde_koala_KURL_2(JNIEnv* env, jclass cls, jobject url) -{ - (void) cls; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::get((const KURL&)*(const KURL*) QtSupport::getQt(env, url)), "org.kde.koala.TransferJob"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_get__Lorg_kde_koala_KURL_2Z(JNIEnv* env, jclass cls, jobject url, jboolean reload) -{ - (void) cls; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::get((const KURL&)*(const KURL*) QtSupport::getQt(env, url), (bool) reload), "org.kde.koala.TransferJob"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_get__Lorg_kde_koala_KURL_2ZZ(JNIEnv* env, jclass cls, jobject url, jboolean reload, jboolean showProgressInfo) -{ - (void) cls; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::get((const KURL&)*(const KURL*) QtSupport::getQt(env, url), (bool) reload, (bool) showProgressInfo), "org.kde.koala.TransferJob"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_http_1post__Lorg_kde_koala_KURL_2_3B(JNIEnv* env, jclass cls, jobject url, jbyteArray postData) -{ - (void) cls; -static TQByteArray* _qbyteArray_postData = 0; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::http_post((const KURL&)*(const KURL*) QtSupport::getQt(env, url), (const TQByteArray&)*(TQByteArray*) QtSupport::toTQByteArray(env, postData, &_qbyteArray_postData)), "org.kde.koala.TransferJob"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_http_1post__Lorg_kde_koala_KURL_2_3BZ(JNIEnv* env, jclass cls, jobject url, jbyteArray postData, jboolean showProgressInfo) -{ - (void) cls; -static TQByteArray* _qbyteArray_postData = 0; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::http_post((const KURL&)*(const KURL*) QtSupport::getQt(env, url), (const TQByteArray&)*(TQByteArray*) QtSupport::toTQByteArray(env, postData, &_qbyteArray_postData), (bool) showProgressInfo), "org.kde.koala.TransferJob"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_http_1update_1cache(JNIEnv* env, jclass cls, jobject url, jboolean no_cache, jint expireDate) -{ - (void) cls; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::http_update_cache((const KURL&)*(const KURL*) QtSupport::getQt(env, url), (bool) no_cache, (time_t) expireDate), "org.kde.koala.SimpleJob"); - return xret; -} - -JNIEXPORT jboolean JNICALL -Java_org_kde_koala_KIO_isClipboardEmpty(JNIEnv* env, jclass cls) -{ - (void) cls; - (void) env; - jboolean xret = (jboolean) TDEIO::isClipboardEmpty(); - return xret; -} - -JNIEXPORT jstring JNICALL -Java_org_kde_koala_KIO_itemsSummaryString(JNIEnv* env, jclass cls, jint items, jint files, jint dirs, jlong size, jboolean showSize) -{ - TQString _qstring; - (void) cls; - _qstring = TDEIO::itemsSummaryString((uint) items, (uint) files, (uint) dirs, (TDEIO::filesize_t) size, (bool) showSize); - return QtSupport::fromTQString(env, &_qstring); -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_linkAs__Lorg_kde_koala_KURL_2Lorg_kde_koala_KURL_2(JNIEnv* env, jclass cls, jobject src, jobject dest) -{ - (void) cls; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::linkAs((const KURL&)*(const KURL*) QtSupport::getQt(env, src), (const KURL&)*(const KURL*) QtSupport::getQt(env, dest)), "org.kde.koala.CopyJob"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_linkAs__Lorg_kde_koala_KURL_2Lorg_kde_koala_KURL_2Z(JNIEnv* env, jclass cls, jobject src, jobject dest, jboolean showProgressInfo) -{ - (void) cls; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::linkAs((const KURL&)*(const KURL*) QtSupport::getQt(env, src), (const KURL&)*(const KURL*) QtSupport::getQt(env, dest), (bool) showProgressInfo), "org.kde.koala.CopyJob"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_link__Ljava_util_ArrayList_2Lorg_kde_koala_KURL_2(JNIEnv* env, jclass cls, jobjectArray src, jobject destDir) -{ - (void) cls; -static KURL::List* _qlist_src = 0; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::link((const KURL::List&)*(KURL::List*) KDESupport::toKURLList(env, src, &_qlist_src), (const KURL&)*(const KURL*) QtSupport::getQt(env, destDir)), "org.kde.koala.CopyJob"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_link__Ljava_util_ArrayList_2Lorg_kde_koala_KURL_2Z(JNIEnv* env, jclass cls, jobjectArray src, jobject destDir, jboolean showProgressInfo) -{ - (void) cls; -static KURL::List* _qlist_src = 0; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::link((const KURL::List&)*(KURL::List*) KDESupport::toKURLList(env, src, &_qlist_src), (const KURL&)*(const KURL*) QtSupport::getQt(env, destDir), (bool) showProgressInfo), "org.kde.koala.CopyJob"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_link__Lorg_kde_koala_KURL_2Lorg_kde_koala_KURL_2(JNIEnv* env, jclass cls, jobject src, jobject destDir) -{ - (void) cls; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::link((const KURL&)*(const KURL*) QtSupport::getQt(env, src), (const KURL&)*(const KURL*) QtSupport::getQt(env, destDir)), "org.kde.koala.CopyJob"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_link__Lorg_kde_koala_KURL_2Lorg_kde_koala_KURL_2Z(JNIEnv* env, jclass cls, jobject src, jobject destDir, jboolean showProgressInfo) -{ - (void) cls; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::link((const KURL&)*(const KURL*) QtSupport::getQt(env, src), (const KURL&)*(const KURL*) QtSupport::getQt(env, destDir), (bool) showProgressInfo), "org.kde.koala.CopyJob"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_listDir__Lorg_kde_koala_KURL_2(JNIEnv* env, jclass cls, jobject url) -{ - (void) cls; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::listDir((const KURL&)*(const KURL*) QtSupport::getQt(env, url)), "org.kde.koala.ListJob"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_listDir__Lorg_kde_koala_KURL_2Z(JNIEnv* env, jclass cls, jobject url, jboolean showProgressInfo) -{ - (void) cls; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::listDir((const KURL&)*(const KURL*) QtSupport::getQt(env, url), (bool) showProgressInfo), "org.kde.koala.ListJob"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_listDir__Lorg_kde_koala_KURL_2ZZ(JNIEnv* env, jclass cls, jobject url, jboolean showProgressInfo, jboolean includeHidden) -{ - (void) cls; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::listDir((const KURL&)*(const KURL*) QtSupport::getQt(env, url), (bool) showProgressInfo, (bool) includeHidden), "org.kde.koala.ListJob"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_listRecursive__Lorg_kde_koala_KURL_2(JNIEnv* env, jclass cls, jobject url) -{ - (void) cls; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::listRecursive((const KURL&)*(const KURL*) QtSupport::getQt(env, url)), "org.kde.koala.ListJob"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_listRecursive__Lorg_kde_koala_KURL_2Z(JNIEnv* env, jclass cls, jobject url, jboolean showProgressInfo) -{ - (void) cls; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::listRecursive((const KURL&)*(const KURL*) QtSupport::getQt(env, url), (bool) showProgressInfo), "org.kde.koala.ListJob"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_listRecursive__Lorg_kde_koala_KURL_2ZZ(JNIEnv* env, jclass cls, jobject url, jboolean showProgressInfo, jboolean includeHidden) -{ - (void) cls; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::listRecursive((const KURL&)*(const KURL*) QtSupport::getQt(env, url), (bool) showProgressInfo, (bool) includeHidden), "org.kde.koala.ListJob"); - return xret; -} - -JNIEXPORT jboolean JNICALL -Java_org_kde_koala_KIO_manually_1mounted(JNIEnv* env, jclass cls, jstring filename) -{ - (void) cls; -static TQString* _qstring_filename = 0; - jboolean xret = (jboolean) TDEIO::manually_mounted((const TQString&)*(TQString*) QtSupport::toTQString(env, filename, &_qstring_filename)); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_mimetype__Lorg_kde_koala_KURL_2(JNIEnv* env, jclass cls, jobject url) -{ - (void) cls; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::mimetype((const KURL&)*(const KURL*) QtSupport::getQt(env, url)), "org.kde.koala.MimetypeJob"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_mimetype__Lorg_kde_koala_KURL_2Z(JNIEnv* env, jclass cls, jobject url, jboolean showProgressInfo) -{ - (void) cls; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::mimetype((const KURL&)*(const KURL*) QtSupport::getQt(env, url), (bool) showProgressInfo), "org.kde.koala.MimetypeJob"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_mkdir__Lorg_kde_koala_KURL_2(JNIEnv* env, jclass cls, jobject url) -{ - (void) cls; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::mkdir((const KURL&)*(const KURL*) QtSupport::getQt(env, url)), "org.kde.koala.SimpleJob"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_mkdir__Lorg_kde_koala_KURL_2I(JNIEnv* env, jclass cls, jobject url, jint permissions) -{ - (void) cls; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::mkdir((const KURL&)*(const KURL*) QtSupport::getQt(env, url), (int) permissions), "org.kde.koala.SimpleJob"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_mount__ZLjava_lang_String_2Ljava_lang_String_2Ljava_lang_String_2(JNIEnv* env, jclass cls, jboolean ro, jstring fstype, jstring dev, jstring point) -{ - (void) cls; -static TQCString* _qstring_fstype = 0; -static TQString* _qstring_dev = 0; -static TQString* _qstring_point = 0; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::mount((bool) ro, (const char*) QtSupport::toCharString(env, fstype, &_qstring_fstype), (const TQString&)*(TQString*) QtSupport::toTQString(env, dev, &_qstring_dev), (const TQString&)*(TQString*) QtSupport::toTQString(env, point, &_qstring_point)), "org.kde.koala.SimpleJob"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_mount__ZLjava_lang_String_2Ljava_lang_String_2Ljava_lang_String_2Z(JNIEnv* env, jclass cls, jboolean ro, jstring fstype, jstring dev, jstring point, jboolean showProgressInfo) -{ - (void) cls; -static TQCString* _qstring_fstype = 0; -static TQString* _qstring_dev = 0; -static TQString* _qstring_point = 0; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::mount((bool) ro, (const char*) QtSupport::toCharString(env, fstype, &_qstring_fstype), (const TQString&)*(TQString*) QtSupport::toTQString(env, dev, &_qstring_dev), (const TQString&)*(TQString*) QtSupport::toTQString(env, point, &_qstring_point), (bool) showProgressInfo), "org.kde.koala.SimpleJob"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_moveAs__Lorg_kde_koala_KURL_2Lorg_kde_koala_KURL_2(JNIEnv* env, jclass cls, jobject src, jobject dest) -{ - (void) cls; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::moveAs((const KURL&)*(const KURL*) QtSupport::getQt(env, src), (const KURL&)*(const KURL*) QtSupport::getQt(env, dest)), "org.kde.koala.CopyJob"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_moveAs__Lorg_kde_koala_KURL_2Lorg_kde_koala_KURL_2Z(JNIEnv* env, jclass cls, jobject src, jobject dest, jboolean showProgressInfo) -{ - (void) cls; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::moveAs((const KURL&)*(const KURL*) QtSupport::getQt(env, src), (const KURL&)*(const KURL*) QtSupport::getQt(env, dest), (bool) showProgressInfo), "org.kde.koala.CopyJob"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_move__Ljava_util_ArrayList_2Lorg_kde_koala_KURL_2(JNIEnv* env, jclass cls, jobjectArray src, jobject dest) -{ - (void) cls; -static KURL::List* _qlist_src = 0; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::move((const KURL::List&)*(KURL::List*) KDESupport::toKURLList(env, src, &_qlist_src), (const KURL&)*(const KURL*) QtSupport::getQt(env, dest)), "org.kde.koala.CopyJob"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_move__Ljava_util_ArrayList_2Lorg_kde_koala_KURL_2Z(JNIEnv* env, jclass cls, jobjectArray src, jobject dest, jboolean showProgressInfo) -{ - (void) cls; -static KURL::List* _qlist_src = 0; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::move((const KURL::List&)*(KURL::List*) KDESupport::toKURLList(env, src, &_qlist_src), (const KURL&)*(const KURL*) QtSupport::getQt(env, dest), (bool) showProgressInfo), "org.kde.koala.CopyJob"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_move__Lorg_kde_koala_KURL_2Lorg_kde_koala_KURL_2(JNIEnv* env, jclass cls, jobject src, jobject dest) -{ - (void) cls; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::move((const KURL&)*(const KURL*) QtSupport::getQt(env, src), (const KURL&)*(const KURL*) QtSupport::getQt(env, dest)), "org.kde.koala.CopyJob"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_move__Lorg_kde_koala_KURL_2Lorg_kde_koala_KURL_2Z(JNIEnv* env, jclass cls, jobject src, jobject dest, jboolean showProgressInfo) -{ - (void) cls; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::move((const KURL&)*(const KURL*) QtSupport::getQt(env, src), (const KURL&)*(const KURL*) QtSupport::getQt(env, dest), (bool) showProgressInfo), "org.kde.koala.CopyJob"); - return xret; -} - -JNIEXPORT jstring JNICALL -Java_org_kde_koala_KIO_number(JNIEnv* env, jclass cls, jlong size) -{ - TQString _qstring; - (void) cls; - _qstring = TDEIO::number((TDEIO::filesize_t) size); - return QtSupport::fromTQString(env, &_qstring); -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_op_1read(JNIEnv* env, jclass cls, jobject s, jobject a) -{ - (void) cls; - jobject xret = QtSupport::objectForQtKey(env, (void*)(TQDataStream *) &TDEIO::operator>>((TQDataStream&)*(TQDataStream*) QtSupport::getQt(env, s), (TDEIO::AuthInfo&)*(TDEIO::AuthInfo*) QtSupport::getQt(env, a)), "org.kde.qt.TQDataStream"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_op_1write(JNIEnv* env, jclass cls, jobject s, jobject a) -{ - (void) cls; - jobject xret = QtSupport::objectForQtKey(env, (void*)(TQDataStream *) &TDEIO::operator<<((TQDataStream&)*(TQDataStream*) QtSupport::getQt(env, s), (const TDEIO::AuthInfo&)*(const TDEIO::AuthInfo*) QtSupport::getQt(env, a)), "org.kde.qt.TQDataStream"); - return xret; -} - -JNIEXPORT jint JNICALL -Java_org_kde_koala_KIO_open_1RenameDlg__Ljava_lang_String_2Ljava_lang_String_2Ljava_lang_String_2ILjava_lang_StringBuffer_2(JNIEnv* env, jclass cls, jstring caption, jstring src, jstring dest, jint mode, jobject newDestPath) -{ - (void) cls; -static TQString* _qstring_caption = 0; -static TQString* _qstring_src = 0; -static TQString* _qstring_dest = 0; -static TQString* _qstring_newDestPath = 0; - jint xret = (jint) TDEIO::open_RenameDlg((const TQString&)*(TQString*) QtSupport::toTQString(env, caption, &_qstring_caption), (const TQString&)*(TQString*) QtSupport::toTQString(env, src, &_qstring_src), (const TQString&)*(TQString*) QtSupport::toTQString(env, dest, &_qstring_dest), (TDEIO::RenameDlg_Mode) mode, (TQString&)*(TQString*) QtSupport::toTQStringFromStringBuffer(env, newDestPath, &_qstring_newDestPath)); - QtSupport::fromTQStringToStringBuffer(env, _qstring_newDestPath, newDestPath); - return xret; -} - -JNIEXPORT jint JNICALL -Java_org_kde_koala_KIO_open_1RenameDlg__Ljava_lang_String_2Ljava_lang_String_2Ljava_lang_String_2ILjava_lang_StringBuffer_2J(JNIEnv* env, jclass cls, jstring caption, jstring src, jstring dest, jint mode, jobject newDestPath, jlong sizeSrc) -{ - (void) cls; -static TQString* _qstring_caption = 0; -static TQString* _qstring_src = 0; -static TQString* _qstring_dest = 0; -static TQString* _qstring_newDestPath = 0; - jint xret = (jint) TDEIO::open_RenameDlg((const TQString&)*(TQString*) QtSupport::toTQString(env, caption, &_qstring_caption), (const TQString&)*(TQString*) QtSupport::toTQString(env, src, &_qstring_src), (const TQString&)*(TQString*) QtSupport::toTQString(env, dest, &_qstring_dest), (TDEIO::RenameDlg_Mode) mode, (TQString&)*(TQString*) QtSupport::toTQStringFromStringBuffer(env, newDestPath, &_qstring_newDestPath), (TDEIO::filesize_t) sizeSrc); - QtSupport::fromTQStringToStringBuffer(env, _qstring_newDestPath, newDestPath); - return xret; -} - -JNIEXPORT jint JNICALL -Java_org_kde_koala_KIO_open_1RenameDlg__Ljava_lang_String_2Ljava_lang_String_2Ljava_lang_String_2ILjava_lang_StringBuffer_2JJ(JNIEnv* env, jclass cls, jstring caption, jstring src, jstring dest, jint mode, jobject newDestPath, jlong sizeSrc, jlong sizeDest) -{ - (void) cls; -static TQString* _qstring_caption = 0; -static TQString* _qstring_src = 0; -static TQString* _qstring_dest = 0; -static TQString* _qstring_newDestPath = 0; - jint xret = (jint) TDEIO::open_RenameDlg((const TQString&)*(TQString*) QtSupport::toTQString(env, caption, &_qstring_caption), (const TQString&)*(TQString*) QtSupport::toTQString(env, src, &_qstring_src), (const TQString&)*(TQString*) QtSupport::toTQString(env, dest, &_qstring_dest), (TDEIO::RenameDlg_Mode) mode, (TQString&)*(TQString*) QtSupport::toTQStringFromStringBuffer(env, newDestPath, &_qstring_newDestPath), (TDEIO::filesize_t) sizeSrc, (TDEIO::filesize_t) sizeDest); - QtSupport::fromTQStringToStringBuffer(env, _qstring_newDestPath, newDestPath); - return xret; -} - -JNIEXPORT jint JNICALL -Java_org_kde_koala_KIO_open_1RenameDlg__Ljava_lang_String_2Ljava_lang_String_2Ljava_lang_String_2ILjava_lang_StringBuffer_2JJI(JNIEnv* env, jclass cls, jstring caption, jstring src, jstring dest, jint mode, jobject newDestPath, jlong sizeSrc, jlong sizeDest, jint ctimeSrc) -{ - (void) cls; -static TQString* _qstring_caption = 0; -static TQString* _qstring_src = 0; -static TQString* _qstring_dest = 0; -static TQString* _qstring_newDestPath = 0; - jint xret = (jint) TDEIO::open_RenameDlg((const TQString&)*(TQString*) QtSupport::toTQString(env, caption, &_qstring_caption), (const TQString&)*(TQString*) QtSupport::toTQString(env, src, &_qstring_src), (const TQString&)*(TQString*) QtSupport::toTQString(env, dest, &_qstring_dest), (TDEIO::RenameDlg_Mode) mode, (TQString&)*(TQString*) QtSupport::toTQStringFromStringBuffer(env, newDestPath, &_qstring_newDestPath), (TDEIO::filesize_t) sizeSrc, (TDEIO::filesize_t) sizeDest, (time_t) ctimeSrc); - QtSupport::fromTQStringToStringBuffer(env, _qstring_newDestPath, newDestPath); - return xret; -} - -JNIEXPORT jint JNICALL -Java_org_kde_koala_KIO_open_1RenameDlg__Ljava_lang_String_2Ljava_lang_String_2Ljava_lang_String_2ILjava_lang_StringBuffer_2JJII(JNIEnv* env, jclass cls, jstring caption, jstring src, jstring dest, jint mode, jobject newDestPath, jlong sizeSrc, jlong sizeDest, jint ctimeSrc, jint ctimeDest) -{ - (void) cls; -static TQString* _qstring_caption = 0; -static TQString* _qstring_src = 0; -static TQString* _qstring_dest = 0; -static TQString* _qstring_newDestPath = 0; - jint xret = (jint) TDEIO::open_RenameDlg((const TQString&)*(TQString*) QtSupport::toTQString(env, caption, &_qstring_caption), (const TQString&)*(TQString*) QtSupport::toTQString(env, src, &_qstring_src), (const TQString&)*(TQString*) QtSupport::toTQString(env, dest, &_qstring_dest), (TDEIO::RenameDlg_Mode) mode, (TQString&)*(TQString*) QtSupport::toTQStringFromStringBuffer(env, newDestPath, &_qstring_newDestPath), (TDEIO::filesize_t) sizeSrc, (TDEIO::filesize_t) sizeDest, (time_t) ctimeSrc, (time_t) ctimeDest); - QtSupport::fromTQStringToStringBuffer(env, _qstring_newDestPath, newDestPath); - return xret; -} - -JNIEXPORT jint JNICALL -Java_org_kde_koala_KIO_open_1RenameDlg__Ljava_lang_String_2Ljava_lang_String_2Ljava_lang_String_2ILjava_lang_StringBuffer_2JJIII(JNIEnv* env, jclass cls, jstring caption, jstring src, jstring dest, jint mode, jobject newDestPath, jlong sizeSrc, jlong sizeDest, jint ctimeSrc, jint ctimeDest, jint mtimeSrc) -{ - (void) cls; -static TQString* _qstring_caption = 0; -static TQString* _qstring_src = 0; -static TQString* _qstring_dest = 0; -static TQString* _qstring_newDestPath = 0; - jint xret = (jint) TDEIO::open_RenameDlg((const TQString&)*(TQString*) QtSupport::toTQString(env, caption, &_qstring_caption), (const TQString&)*(TQString*) QtSupport::toTQString(env, src, &_qstring_src), (const TQString&)*(TQString*) QtSupport::toTQString(env, dest, &_qstring_dest), (TDEIO::RenameDlg_Mode) mode, (TQString&)*(TQString*) QtSupport::toTQStringFromStringBuffer(env, newDestPath, &_qstring_newDestPath), (TDEIO::filesize_t) sizeSrc, (TDEIO::filesize_t) sizeDest, (time_t) ctimeSrc, (time_t) ctimeDest, (time_t) mtimeSrc); - QtSupport::fromTQStringToStringBuffer(env, _qstring_newDestPath, newDestPath); - return xret; -} - -JNIEXPORT jint JNICALL -Java_org_kde_koala_KIO_open_1RenameDlg__Ljava_lang_String_2Ljava_lang_String_2Ljava_lang_String_2ILjava_lang_StringBuffer_2JJIIII(JNIEnv* env, jclass cls, jstring caption, jstring src, jstring dest, jint mode, jobject newDestPath, jlong sizeSrc, jlong sizeDest, jint ctimeSrc, jint ctimeDest, jint mtimeSrc, jint mtimeDest) -{ - (void) cls; -static TQString* _qstring_caption = 0; -static TQString* _qstring_src = 0; -static TQString* _qstring_dest = 0; -static TQString* _qstring_newDestPath = 0; - jint xret = (jint) TDEIO::open_RenameDlg((const TQString&)*(TQString*) QtSupport::toTQString(env, caption, &_qstring_caption), (const TQString&)*(TQString*) QtSupport::toTQString(env, src, &_qstring_src), (const TQString&)*(TQString*) QtSupport::toTQString(env, dest, &_qstring_dest), (TDEIO::RenameDlg_Mode) mode, (TQString&)*(TQString*) QtSupport::toTQStringFromStringBuffer(env, newDestPath, &_qstring_newDestPath), (TDEIO::filesize_t) sizeSrc, (TDEIO::filesize_t) sizeDest, (time_t) ctimeSrc, (time_t) ctimeDest, (time_t) mtimeSrc, (time_t) mtimeDest); - QtSupport::fromTQStringToStringBuffer(env, _qstring_newDestPath, newDestPath); - return xret; -} - -JNIEXPORT jint JNICALL -Java_org_kde_koala_KIO_open_1SkipDlg__Z(JNIEnv* env, jclass cls, jboolean _multi) -{ - (void) cls; - (void) env; - jint xret = (jint) TDEIO::open_SkipDlg((bool) _multi); - return xret; -} - -JNIEXPORT jint JNICALL -Java_org_kde_koala_KIO_open_1SkipDlg__ZLjava_lang_String_2(JNIEnv* env, jclass cls, jboolean _multi, jstring _error_text) -{ - (void) cls; -static TQString* _qstring__error_text = 0; - jint xret = (jint) TDEIO::open_SkipDlg((bool) _multi, (const TQString&)*(TQString*) QtSupport::toTQString(env, _error_text, &_qstring__error_text)); - return xret; -} - -JNIEXPORT jint JNICALL -Java_org_kde_koala_KIO_parseCacheControl(JNIEnv* env, jclass cls, jstring cacheControl) -{ - (void) cls; -static TQString* _qstring_cacheControl = 0; - jint xret = (jint) TDEIO::parseCacheControl((const TQString&)*(TQString*) QtSupport::toTQString(env, cacheControl, &_qstring_cacheControl)); - return xret; -} - -JNIEXPORT jstring JNICALL -Java_org_kde_koala_KIO_pasteActionText(JNIEnv* env, jclass cls) -{ - TQString _qstring; - (void) cls; - _qstring = TDEIO::pasteActionText(); - return QtSupport::fromTQString(env, &_qstring); -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_pasteClipboard__Lorg_kde_koala_KURL_2(JNIEnv* env, jclass cls, jobject destURL) -{ - (void) cls; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::pasteClipboard((const KURL&)*(const KURL*) QtSupport::getQt(env, destURL)), "org.kde.koala.Job"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_pasteClipboard__Lorg_kde_koala_KURL_2Z(JNIEnv* env, jclass cls, jobject destURL, jboolean move) -{ - (void) cls; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::pasteClipboard((const KURL&)*(const KURL*) QtSupport::getQt(env, destURL), (bool) move), "org.kde.koala.Job"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_pasteDataAsync__Lorg_kde_koala_KURL_2_3B(JNIEnv* env, jclass cls, jobject destURL, jbyteArray data) -{ - (void) cls; -static TQByteArray* _qbyteArray_data = 0; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::pasteDataAsync((const KURL&)*(const KURL*) QtSupport::getQt(env, destURL), (const TQByteArray&)*(TQByteArray*) QtSupport::toTQByteArray(env, data, &_qbyteArray_data)), "org.kde.koala.CopyJob"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_pasteDataAsync__Lorg_kde_koala_KURL_2_3BLjava_lang_String_2(JNIEnv* env, jclass cls, jobject destURL, jbyteArray data, jstring dialogText) -{ - (void) cls; -static TQByteArray* _qbyteArray_data = 0; -static TQString* _qstring_dialogText = 0; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::pasteDataAsync((const KURL&)*(const KURL*) QtSupport::getQt(env, destURL), (const TQByteArray&)*(TQByteArray*) QtSupport::toTQByteArray(env, data, &_qbyteArray_data), (const TQString&)*(TQString*) QtSupport::toTQString(env, dialogText, &_qstring_dialogText)), "org.kde.koala.CopyJob"); - return xret; -} - -JNIEXPORT void JNICALL -Java_org_kde_koala_KIO_pasteData(JNIEnv* env, jclass cls, jobject destURL, jbyteArray data) -{ - (void) cls; -static TQByteArray* _qbyteArray_data = 0; - TDEIO::pasteData((const KURL&)*(const KURL*) QtSupport::getQt(env, destURL), (const TQByteArray&)*(TQByteArray*) QtSupport::toTQByteArray(env, data, &_qbyteArray_data)); - return; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_pasteMimeSource__Lorg_kde_qt_QMimeSourceInterface_2Lorg_kde_koala_KURL_2Ljava_lang_String_2Lorg_kde_qt_QWidget_2(JNIEnv* env, jclass cls, jobject data, jobject destURL, jstring dialogText, jobject widget) -{ - (void) cls; -static TQString* _qstring_dialogText = 0; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::pasteMimeSource((TQMimeSource*) QtSupport::mimeSource(env, data), (const KURL&)*(const KURL*) QtSupport::getQt(env, destURL), (const TQString&)*(TQString*) QtSupport::toTQString(env, dialogText, &_qstring_dialogText), (TQWidget*) QtSupport::getQt(env, widget)), "org.kde.koala.CopyJob"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_pasteMimeSource__Lorg_kde_qt_QMimeSourceInterface_2Lorg_kde_koala_KURL_2Ljava_lang_String_2Lorg_kde_qt_QWidget_2Z(JNIEnv* env, jclass cls, jobject data, jobject destURL, jstring dialogText, jobject widget, jboolean clipboard) -{ - (void) cls; -static TQString* _qstring_dialogText = 0; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::pasteMimeSource((TQMimeSource*) QtSupport::mimeSource(env, data), (const KURL&)*(const KURL*) QtSupport::getQt(env, destURL), (const TQString&)*(TQString*) QtSupport::toTQString(env, dialogText, &_qstring_dialogText), (TQWidget*) QtSupport::getQt(env, widget), (bool) clipboard), "org.kde.koala.CopyJob"); - return xret; -} - -JNIEXPORT jboolean JNICALL -Java_org_kde_koala_KIO_probably_1slow_1mounted(JNIEnv* env, jclass cls, jstring filename) -{ - (void) cls; -static TQString* _qstring_filename = 0; - jboolean xret = (jboolean) TDEIO::probably_slow_mounted((const TQString&)*(TQString*) QtSupport::toTQString(env, filename, &_qstring_filename)); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_put__Lorg_kde_koala_KURL_2IZZ(JNIEnv* env, jclass cls, jobject url, jint permissions, jboolean overwrite, jboolean resume) -{ - (void) cls; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::put((const KURL&)*(const KURL*) QtSupport::getQt(env, url), (int) permissions, (bool) overwrite, (bool) resume), "org.kde.koala.TransferJob"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_put__Lorg_kde_koala_KURL_2IZZZ(JNIEnv* env, jclass cls, jobject url, jint permissions, jboolean overwrite, jboolean resume, jboolean showProgressInfo) -{ - (void) cls; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::put((const KURL&)*(const KURL*) QtSupport::getQt(env, url), (int) permissions, (bool) overwrite, (bool) resume, (bool) showProgressInfo), "org.kde.koala.TransferJob"); - return xret; -} - -JNIEXPORT jbyteArray JNICALL -Java_org_kde_koala_KIO_rawErrorDetail__ILjava_lang_String_2(JNIEnv* env, jclass cls, jint errorCode, jstring errorText) -{ - TQByteArray _qbyteArray; - (void) cls; -static TQString* _qstring_errorText = 0; - _qbyteArray = TDEIO::rawErrorDetail((int) errorCode, (const TQString&)*(TQString*) QtSupport::toTQString(env, errorText, &_qstring_errorText)); - return QtSupport::fromTQByteArray(env, &_qbyteArray); -} - -JNIEXPORT jbyteArray JNICALL -Java_org_kde_koala_KIO_rawErrorDetail__ILjava_lang_String_2Lorg_kde_koala_KURL_2(JNIEnv* env, jclass cls, jint errorCode, jstring errorText, jobject reqUrl) -{ - TQByteArray _qbyteArray; - (void) cls; -static TQString* _qstring_errorText = 0; - _qbyteArray = TDEIO::rawErrorDetail((int) errorCode, (const TQString&)*(TQString*) QtSupport::toTQString(env, errorText, &_qstring_errorText), (const KURL*) QtSupport::getQt(env, reqUrl)); - return QtSupport::fromTQByteArray(env, &_qbyteArray); -} - -JNIEXPORT jbyteArray JNICALL -Java_org_kde_koala_KIO_rawErrorDetail__ILjava_lang_String_2Lorg_kde_koala_KURL_2I(JNIEnv* env, jclass cls, jint errorCode, jstring errorText, jobject reqUrl, jint method) -{ - TQByteArray _qbyteArray; - (void) cls; -static TQString* _qstring_errorText = 0; - _qbyteArray = TDEIO::rawErrorDetail((int) errorCode, (const TQString&)*(TQString*) QtSupport::toTQString(env, errorText, &_qstring_errorText), (const KURL*) QtSupport::getQt(env, reqUrl), (int) method); - return QtSupport::fromTQByteArray(env, &_qbyteArray); -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_rename(JNIEnv* env, jclass cls, jobject src, jobject dest, jboolean overwrite) -{ - (void) cls; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::rename((const KURL&)*(const KURL*) QtSupport::getQt(env, src), (const KURL&)*(const KURL*) QtSupport::getQt(env, dest), (bool) overwrite), "org.kde.koala.SimpleJob"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_rmdir(JNIEnv* env, jclass cls, jobject url) -{ - (void) cls; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::rmdir((const KURL&)*(const KURL*) QtSupport::getQt(env, url)), "org.kde.koala.SimpleJob"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_special__Lorg_kde_koala_KURL_2_3B(JNIEnv* env, jclass cls, jobject url, jbyteArray data) -{ - (void) cls; -static TQByteArray* _qbyteArray_data = 0; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::special((const KURL&)*(const KURL*) QtSupport::getQt(env, url), (const TQByteArray&)*(TQByteArray*) QtSupport::toTQByteArray(env, data, &_qbyteArray_data)), "org.kde.koala.SimpleJob"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_special__Lorg_kde_koala_KURL_2_3BZ(JNIEnv* env, jclass cls, jobject url, jbyteArray data, jboolean showProgressInfo) -{ - (void) cls; -static TQByteArray* _qbyteArray_data = 0; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::special((const KURL&)*(const KURL*) QtSupport::getQt(env, url), (const TQByteArray&)*(TQByteArray*) QtSupport::toTQByteArray(env, data, &_qbyteArray_data), (bool) showProgressInfo), "org.kde.koala.SimpleJob"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_stat__Lorg_kde_koala_KURL_2(JNIEnv* env, jclass cls, jobject url) -{ - (void) cls; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::stat((const KURL&)*(const KURL*) QtSupport::getQt(env, url)), "org.kde.koala.StatJob"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_stat__Lorg_kde_koala_KURL_2Z(JNIEnv* env, jclass cls, jobject url, jboolean showProgressInfo) -{ - (void) cls; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::stat((const KURL&)*(const KURL*) QtSupport::getQt(env, url), (bool) showProgressInfo), "org.kde.koala.StatJob"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_stat__Lorg_kde_koala_KURL_2ZS(JNIEnv* env, jclass cls, jobject url, jboolean sideIsSource, jshort details) -{ - (void) cls; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::stat((const KURL&)*(const KURL*) QtSupport::getQt(env, url), (bool) sideIsSource, (short int) details), "org.kde.koala.StatJob"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_stat__Lorg_kde_koala_KURL_2ZSZ(JNIEnv* env, jclass cls, jobject url, jboolean sideIsSource, jshort details, jboolean showProgressInfo) -{ - (void) cls; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::stat((const KURL&)*(const KURL*) QtSupport::getQt(env, url), (bool) sideIsSource, (short int) details, (bool) showProgressInfo), "org.kde.koala.StatJob"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_storedGet__Lorg_kde_koala_KURL_2(JNIEnv* env, jclass cls, jobject url) -{ - (void) cls; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::storedGet((const KURL&)*(const KURL*) QtSupport::getQt(env, url)), "org.kde.koala.StoredTransferJob"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_storedGet__Lorg_kde_koala_KURL_2Z(JNIEnv* env, jclass cls, jobject url, jboolean reload) -{ - (void) cls; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::storedGet((const KURL&)*(const KURL*) QtSupport::getQt(env, url), (bool) reload), "org.kde.koala.StoredTransferJob"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_storedGet__Lorg_kde_koala_KURL_2ZZ(JNIEnv* env, jclass cls, jobject url, jboolean reload, jboolean showProgressInfo) -{ - (void) cls; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::storedGet((const KURL&)*(const KURL*) QtSupport::getQt(env, url), (bool) reload, (bool) showProgressInfo), "org.kde.koala.StoredTransferJob"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_storedPut___3BLorg_kde_koala_KURL_2IZZ(JNIEnv* env, jclass cls, jbyteArray arr, jobject url, jint permissions, jboolean overwrite, jboolean resume) -{ - (void) cls; -static TQByteArray* _qbyteArray_arr = 0; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::storedPut((const TQByteArray&)*(TQByteArray*) QtSupport::toTQByteArray(env, arr, &_qbyteArray_arr), (const KURL&)*(const KURL*) QtSupport::getQt(env, url), (int) permissions, (bool) overwrite, (bool) resume), "org.kde.koala.StoredTransferJob"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_storedPut___3BLorg_kde_koala_KURL_2IZZZ(JNIEnv* env, jclass cls, jbyteArray arr, jobject url, jint permissions, jboolean overwrite, jboolean resume, jboolean showProgressInfo) -{ - (void) cls; -static TQByteArray* _qbyteArray_arr = 0; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::storedPut((const TQByteArray&)*(TQByteArray*) QtSupport::toTQByteArray(env, arr, &_qbyteArray_arr), (const KURL&)*(const KURL*) QtSupport::getQt(env, url), (int) permissions, (bool) overwrite, (bool) resume, (bool) showProgressInfo), "org.kde.koala.StoredTransferJob"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_symlink__Ljava_lang_String_2Lorg_kde_koala_KURL_2Z(JNIEnv* env, jclass cls, jstring target, jobject dest, jboolean overwrite) -{ - (void) cls; -static TQString* _qstring_target = 0; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::symlink((const TQString&)*(TQString*) QtSupport::toTQString(env, target, &_qstring_target), (const KURL&)*(const KURL*) QtSupport::getQt(env, dest), (bool) overwrite), "org.kde.koala.SimpleJob"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_symlink__Ljava_lang_String_2Lorg_kde_koala_KURL_2ZZ(JNIEnv* env, jclass cls, jstring target, jobject dest, jboolean overwrite, jboolean showProgressInfo) -{ - (void) cls; -static TQString* _qstring_target = 0; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::symlink((const TQString&)*(TQString*) QtSupport::toTQString(env, target, &_qstring_target), (const KURL&)*(const KURL*) QtSupport::getQt(env, dest), (bool) overwrite, (bool) showProgressInfo), "org.kde.koala.SimpleJob"); - return xret; -} - -JNIEXPORT jboolean JNICALL -Java_org_kde_koala_KIO_testFileSystemFlag(JNIEnv* env, jclass cls, jstring filename, jint flag) -{ - (void) cls; -static TQString* _qstring_filename = 0; - jboolean xret = (jboolean) TDEIO::testFileSystemFlag((const TQString&)*(TQString*) QtSupport::toTQString(env, filename, &_qstring_filename), (TDEIO::FileSystemFlag) flag); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_trash__Ljava_util_ArrayList_2(JNIEnv* env, jclass cls, jobjectArray src) -{ - (void) cls; -static KURL::List* _qlist_src = 0; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::trash((const KURL::List&)*(KURL::List*) KDESupport::toKURLList(env, src, &_qlist_src)), "org.kde.koala.CopyJob"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_trash__Ljava_util_ArrayList_2Z(JNIEnv* env, jclass cls, jobjectArray src, jboolean showProgressInfo) -{ - (void) cls; -static KURL::List* _qlist_src = 0; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::trash((const KURL::List&)*(KURL::List*) KDESupport::toKURLList(env, src, &_qlist_src), (bool) showProgressInfo), "org.kde.koala.CopyJob"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_trash__Lorg_kde_koala_KURL_2(JNIEnv* env, jclass cls, jobject src) -{ - (void) cls; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::trash((const KURL&)*(const KURL*) QtSupport::getQt(env, src)), "org.kde.koala.CopyJob"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_trash__Lorg_kde_koala_KURL_2Z(JNIEnv* env, jclass cls, jobject src, jboolean showProgressInfo) -{ - (void) cls; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::trash((const KURL&)*(const KURL*) QtSupport::getQt(env, src), (bool) showProgressInfo), "org.kde.koala.CopyJob"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_unmount__Ljava_lang_String_2(JNIEnv* env, jclass cls, jstring point) -{ - (void) cls; -static TQString* _qstring_point = 0; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::unmount((const TQString&)*(TQString*) QtSupport::toTQString(env, point, &_qstring_point)), "org.kde.koala.SimpleJob"); - return xret; -} - -JNIEXPORT jobject JNICALL -Java_org_kde_koala_KIO_unmount__Ljava_lang_String_2Z(JNIEnv* env, jclass cls, jstring point, jboolean showProgressInfo) -{ - (void) cls; -static TQString* _qstring_point = 0; - jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::unmount((const TQString&)*(TQString*) QtSupport::toTQString(env, point, &_qstring_point), (bool) showProgressInfo), "org.kde.koala.SimpleJob"); - return xret; -} - -JNIEXPORT jstring JNICALL -Java_org_kde_koala_KIO_unsupportedActionErrorString(JNIEnv* env, jclass cls, jstring protocol, jint cmd) -{ - TQString _qstring; - (void) cls; -static TQString* _qstring_protocol = 0; - _qstring = TDEIO::unsupportedActionErrorString((const TQString&)*(TQString*) QtSupport::toTQString(env, protocol, &_qstring_protocol), (int) cmd); - return QtSupport::fromTQString(env, &_qstring); -} - diff --git a/kdejava/koala/kdejava/KIO.h b/kdejava/koala/kdejava/KIO.h deleted file mode 100644 index 2da9ca8b..00000000 --- a/kdejava/koala/kdejava/KIO.h +++ /dev/null @@ -1,150 +0,0 @@ -/* DO NOT EDIT THIS FILE - it is machine generated */ - -#ifndef __org_kde_koala_KIO__ -#define __org_kde_koala_KIO__ - -#include - -#ifdef __cplusplus -extern "C" -{ -#endif - -extern JNIEXPORT jint JNICALL Java_org_kde_koala_KIO_open_1SkipDlg__ZLjava_lang_String_2 (JNIEnv *env, jclass, jboolean, jstring); -extern JNIEXPORT jint JNICALL Java_org_kde_koala_KIO_open_1SkipDlg__Z (JNIEnv *env, jclass, jboolean); -extern JNIEXPORT jint JNICALL Java_org_kde_koala_KIO_open_1RenameDlg__Ljava_lang_String_2Ljava_lang_String_2Ljava_lang_String_2ILjava_lang_StringBuffer_2JJIIII (JNIEnv *env, jclass, jstring, jstring, jstring, jint, jobject, jlong, jlong, jint, jint, jint, jint); -extern JNIEXPORT jint JNICALL Java_org_kde_koala_KIO_open_1RenameDlg__Ljava_lang_String_2Ljava_lang_String_2Ljava_lang_String_2ILjava_lang_StringBuffer_2JJIII (JNIEnv *env, jclass, jstring, jstring, jstring, jint, jobject, jlong, jlong, jint, jint, jint); -extern JNIEXPORT jint JNICALL Java_org_kde_koala_KIO_open_1RenameDlg__Ljava_lang_String_2Ljava_lang_String_2Ljava_lang_String_2ILjava_lang_StringBuffer_2JJII (JNIEnv *env, jclass, jstring, jstring, jstring, jint, jobject, jlong, jlong, jint, jint); -extern JNIEXPORT jint JNICALL Java_org_kde_koala_KIO_open_1RenameDlg__Ljava_lang_String_2Ljava_lang_String_2Ljava_lang_String_2ILjava_lang_StringBuffer_2JJI (JNIEnv *env, jclass, jstring, jstring, jstring, jint, jobject, jlong, jlong, jint); -extern JNIEXPORT jint JNICALL Java_org_kde_koala_KIO_open_1RenameDlg__Ljava_lang_String_2Ljava_lang_String_2Ljava_lang_String_2ILjava_lang_StringBuffer_2JJ (JNIEnv *env, jclass, jstring, jstring, jstring, jint, jobject, jlong, jlong); -extern JNIEXPORT jint JNICALL Java_org_kde_koala_KIO_open_1RenameDlg__Ljava_lang_String_2Ljava_lang_String_2Ljava_lang_String_2ILjava_lang_StringBuffer_2J (JNIEnv *env, jclass, jstring, jstring, jstring, jint, jobject, jlong); -extern JNIEXPORT jint JNICALL Java_org_kde_koala_KIO_open_1RenameDlg__Ljava_lang_String_2Ljava_lang_String_2Ljava_lang_String_2ILjava_lang_StringBuffer_2 (JNIEnv *env, jclass, jstring, jstring, jstring, jint, jobject); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_op_1write (JNIEnv *env, jclass, jobject, jobject); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_op_1read (JNIEnv *env, jclass, jobject, jobject); -extern JNIEXPORT jstring JNICALL Java_org_kde_koala_KIO_convertSize (JNIEnv *env, jclass, jlong); -extern JNIEXPORT jstring JNICALL Java_org_kde_koala_KIO_convertSizeWithBytes (JNIEnv *env, jclass, jlong); -extern JNIEXPORT jstring JNICALL Java_org_kde_koala_KIO_number (JNIEnv *env, jclass, jlong); -extern JNIEXPORT jstring JNICALL Java_org_kde_koala_KIO_convertSizeFromKB (JNIEnv *env, jclass, jlong); -extern JNIEXPORT jstring JNICALL Java_org_kde_koala_KIO_convertSeconds (JNIEnv *env, jclass, jint); -extern JNIEXPORT jstring JNICALL Java_org_kde_koala_KIO_itemsSummaryString (JNIEnv *env, jclass, jint, jint, jint, jlong, jboolean); -extern JNIEXPORT jstring JNICALL Java_org_kde_koala_KIO_encodeFileName (JNIEnv *env, jclass, jstring); -extern JNIEXPORT jstring JNICALL Java_org_kde_koala_KIO_decodeFileName (JNIEnv *env, jclass, jstring); -extern JNIEXPORT jstring JNICALL Java_org_kde_koala_KIO_buildErrorString (JNIEnv *env, jclass, jint, jstring); -extern JNIEXPORT jbyteArray JNICALL Java_org_kde_koala_KIO_rawErrorDetail__ILjava_lang_String_2Lorg_kde_koala_KURL_2I (JNIEnv *env, jclass, jint, jstring, jobject, jint); -extern JNIEXPORT jbyteArray JNICALL Java_org_kde_koala_KIO_rawErrorDetail__ILjava_lang_String_2Lorg_kde_koala_KURL_2 (JNIEnv *env, jclass, jint, jstring, jobject); -extern JNIEXPORT jbyteArray JNICALL Java_org_kde_koala_KIO_rawErrorDetail__ILjava_lang_String_2 (JNIEnv *env, jclass, jint, jstring); -extern JNIEXPORT jstring JNICALL Java_org_kde_koala_KIO_unsupportedActionErrorString (JNIEnv *env, jclass, jstring, jint); -extern JNIEXPORT jint JNICALL Java_org_kde_koala_KIO_parseCacheControl (JNIEnv *env, jclass, jstring); -extern JNIEXPORT jstring JNICALL Java_org_kde_koala_KIO_getCacheControlString (JNIEnv *env, jclass, jint); -extern JNIEXPORT jstring JNICALL Java_org_kde_koala_KIO_findDeviceMountPoint (JNIEnv *env, jclass, jstring); -extern JNIEXPORT jstring JNICALL Java_org_kde_koala_KIO_findPathMountPoint (JNIEnv *env, jclass, jstring); -extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_KIO_probably_1slow_1mounted (JNIEnv *env, jclass, jstring); -extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_KIO_manually_1mounted (JNIEnv *env, jclass, jstring); -extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_KIO_testFileSystemFlag (JNIEnv *env, jclass, jstring, jint); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_filePreview__Ljava_util_ArrayList_2IIIIZZ_3Ljava_lang_String_2 (JNIEnv *env, jclass, jobject, jint, jint, jint, jint, jboolean, jboolean, jobjectArray); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_filePreview__Ljava_util_ArrayList_2IIIIZZ (JNIEnv *env, jclass, jobject, jint, jint, jint, jint, jboolean, jboolean); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_filePreview__Ljava_util_ArrayList_2IIIIZ (JNIEnv *env, jclass, jobject, jint, jint, jint, jint, jboolean); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_filePreview__Ljava_util_ArrayList_2IIII (JNIEnv *env, jclass, jobject, jint, jint, jint, jint); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_filePreview__Ljava_util_ArrayList_2III (JNIEnv *env, jclass, jobject, jint, jint, jint); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_filePreview__Ljava_util_ArrayList_2II (JNIEnv *env, jclass, jobject, jint, jint); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_filePreview__Ljava_util_ArrayList_2I (JNIEnv *env, jclass, jobject, jint); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_davPropFind__Lorg_kde_koala_KURL_2Lorg_kde_qt_QDomDocument_2Ljava_lang_String_2Z (JNIEnv *env, jclass, jobject, jobject, jstring, jboolean); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_davPropFind__Lorg_kde_koala_KURL_2Lorg_kde_qt_QDomDocument_2Ljava_lang_String_2 (JNIEnv *env, jclass, jobject, jobject, jstring); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_davPropPatch__Lorg_kde_koala_KURL_2Lorg_kde_qt_QDomDocument_2Z (JNIEnv *env, jclass, jobject, jobject, jboolean); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_davPropPatch__Lorg_kde_koala_KURL_2Lorg_kde_qt_QDomDocument_2 (JNIEnv *env, jclass, jobject, jobject); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_davSearch__Lorg_kde_koala_KURL_2Ljava_lang_String_2Ljava_lang_String_2Ljava_lang_String_2Z (JNIEnv *env, jclass, jobject, jstring, jstring, jstring, jboolean); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_davSearch__Lorg_kde_koala_KURL_2Ljava_lang_String_2Ljava_lang_String_2Ljava_lang_String_2 (JNIEnv *env, jclass, jobject, jstring, jstring, jstring); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_fileMetaInfo (JNIEnv *env, jclass, jobject); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_mkdir__Lorg_kde_koala_KURL_2I (JNIEnv *env, jclass, jobject, jint); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_mkdir__Lorg_kde_koala_KURL_2 (JNIEnv *env, jclass, jobject); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_rmdir (JNIEnv *env, jclass, jobject); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_chmod (JNIEnv *env, jclass, jobject, jint); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_rename (JNIEnv *env, jclass, jobject, jobject, jboolean); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_symlink__Ljava_lang_String_2Lorg_kde_koala_KURL_2ZZ (JNIEnv *env, jclass, jstring, jobject, jboolean, jboolean); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_symlink__Ljava_lang_String_2Lorg_kde_koala_KURL_2Z (JNIEnv *env, jclass, jstring, jobject, jboolean); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_special__Lorg_kde_koala_KURL_2_3BZ (JNIEnv *env, jclass, jobject, jbyteArray, jboolean); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_special__Lorg_kde_koala_KURL_2_3B (JNIEnv *env, jclass, jobject, jbyteArray); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_mount__ZLjava_lang_String_2Ljava_lang_String_2Ljava_lang_String_2Z (JNIEnv *env, jclass, jboolean, jstring, jstring, jstring, jboolean); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_mount__ZLjava_lang_String_2Ljava_lang_String_2Ljava_lang_String_2 (JNIEnv *env, jclass, jboolean, jstring, jstring, jstring); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_unmount__Ljava_lang_String_2Z (JNIEnv *env, jclass, jstring, jboolean); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_unmount__Ljava_lang_String_2 (JNIEnv *env, jclass, jstring); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_http_1update_1cache (JNIEnv *env, jclass, jobject, jboolean, jint); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_stat__Lorg_kde_koala_KURL_2Z (JNIEnv *env, jclass, jobject, jboolean); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_stat__Lorg_kde_koala_KURL_2 (JNIEnv *env, jclass, jobject); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_stat__Lorg_kde_koala_KURL_2ZSZ (JNIEnv *env, jclass, jobject, jboolean, jshort, jboolean); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_stat__Lorg_kde_koala_KURL_2ZS (JNIEnv *env, jclass, jobject, jboolean, jshort); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_get__Lorg_kde_koala_KURL_2ZZ (JNIEnv *env, jclass, jobject, jboolean, jboolean); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_get__Lorg_kde_koala_KURL_2Z (JNIEnv *env, jclass, jobject, jboolean); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_get__Lorg_kde_koala_KURL_2 (JNIEnv *env, jclass, jobject); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_put__Lorg_kde_koala_KURL_2IZZZ (JNIEnv *env, jclass, jobject, jint, jboolean, jboolean, jboolean); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_put__Lorg_kde_koala_KURL_2IZZ (JNIEnv *env, jclass, jobject, jint, jboolean, jboolean); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_http_1post__Lorg_kde_koala_KURL_2_3BZ (JNIEnv *env, jclass, jobject, jbyteArray, jboolean); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_http_1post__Lorg_kde_koala_KURL_2_3B (JNIEnv *env, jclass, jobject, jbyteArray); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_storedGet__Lorg_kde_koala_KURL_2ZZ (JNIEnv *env, jclass, jobject, jboolean, jboolean); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_storedGet__Lorg_kde_koala_KURL_2Z (JNIEnv *env, jclass, jobject, jboolean); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_storedGet__Lorg_kde_koala_KURL_2 (JNIEnv *env, jclass, jobject); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_storedPut___3BLorg_kde_koala_KURL_2IZZZ (JNIEnv *env, jclass, jbyteArray, jobject, jint, jboolean, jboolean, jboolean); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_storedPut___3BLorg_kde_koala_KURL_2IZZ (JNIEnv *env, jclass, jbyteArray, jobject, jint, jboolean, jboolean); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_mimetype__Lorg_kde_koala_KURL_2Z (JNIEnv *env, jclass, jobject, jboolean); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_mimetype__Lorg_kde_koala_KURL_2 (JNIEnv *env, jclass, jobject); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_file_1copy__Lorg_kde_koala_KURL_2Lorg_kde_koala_KURL_2IZZZ (JNIEnv *env, jclass, jobject, jobject, jint, jboolean, jboolean, jboolean); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_file_1copy__Lorg_kde_koala_KURL_2Lorg_kde_koala_KURL_2IZZ (JNIEnv *env, jclass, jobject, jobject, jint, jboolean, jboolean); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_file_1copy__Lorg_kde_koala_KURL_2Lorg_kde_koala_KURL_2IZ (JNIEnv *env, jclass, jobject, jobject, jint, jboolean); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_file_1copy__Lorg_kde_koala_KURL_2Lorg_kde_koala_KURL_2I (JNIEnv *env, jclass, jobject, jobject, jint); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_file_1copy__Lorg_kde_koala_KURL_2Lorg_kde_koala_KURL_2 (JNIEnv *env, jclass, jobject, jobject); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_file_1move__Lorg_kde_koala_KURL_2Lorg_kde_koala_KURL_2IZZZ (JNIEnv *env, jclass, jobject, jobject, jint, jboolean, jboolean, jboolean); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_file_1move__Lorg_kde_koala_KURL_2Lorg_kde_koala_KURL_2IZZ (JNIEnv *env, jclass, jobject, jobject, jint, jboolean, jboolean); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_file_1move__Lorg_kde_koala_KURL_2Lorg_kde_koala_KURL_2IZ (JNIEnv *env, jclass, jobject, jobject, jint, jboolean); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_file_1move__Lorg_kde_koala_KURL_2Lorg_kde_koala_KURL_2I (JNIEnv *env, jclass, jobject, jobject, jint); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_file_1move__Lorg_kde_koala_KURL_2Lorg_kde_koala_KURL_2 (JNIEnv *env, jclass, jobject, jobject); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_file_1delete__Lorg_kde_koala_KURL_2Z (JNIEnv *env, jclass, jobject, jboolean); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_file_1delete__Lorg_kde_koala_KURL_2 (JNIEnv *env, jclass, jobject); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_listDir__Lorg_kde_koala_KURL_2ZZ (JNIEnv *env, jclass, jobject, jboolean, jboolean); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_listDir__Lorg_kde_koala_KURL_2Z (JNIEnv *env, jclass, jobject, jboolean); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_listDir__Lorg_kde_koala_KURL_2 (JNIEnv *env, jclass, jobject); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_listRecursive__Lorg_kde_koala_KURL_2ZZ (JNIEnv *env, jclass, jobject, jboolean, jboolean); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_listRecursive__Lorg_kde_koala_KURL_2Z (JNIEnv *env, jclass, jobject, jboolean); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_listRecursive__Lorg_kde_koala_KURL_2 (JNIEnv *env, jclass, jobject); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_copy__Lorg_kde_koala_KURL_2Lorg_kde_koala_KURL_2Z (JNIEnv *env, jclass, jobject, jobject, jboolean); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_copy__Lorg_kde_koala_KURL_2Lorg_kde_koala_KURL_2 (JNIEnv *env, jclass, jobject, jobject); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_copyAs__Lorg_kde_koala_KURL_2Lorg_kde_koala_KURL_2Z (JNIEnv *env, jclass, jobject, jobject, jboolean); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_copyAs__Lorg_kde_koala_KURL_2Lorg_kde_koala_KURL_2 (JNIEnv *env, jclass, jobject, jobject); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_copy__Ljava_util_ArrayList_2Lorg_kde_koala_KURL_2Z (JNIEnv *env, jclass, jobject, jobject, jboolean); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_copy__Ljava_util_ArrayList_2Lorg_kde_koala_KURL_2 (JNIEnv *env, jclass, jobject, jobject); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_move__Lorg_kde_koala_KURL_2Lorg_kde_koala_KURL_2Z (JNIEnv *env, jclass, jobject, jobject, jboolean); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_move__Lorg_kde_koala_KURL_2Lorg_kde_koala_KURL_2 (JNIEnv *env, jclass, jobject, jobject); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_moveAs__Lorg_kde_koala_KURL_2Lorg_kde_koala_KURL_2Z (JNIEnv *env, jclass, jobject, jobject, jboolean); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_moveAs__Lorg_kde_koala_KURL_2Lorg_kde_koala_KURL_2 (JNIEnv *env, jclass, jobject, jobject); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_move__Ljava_util_ArrayList_2Lorg_kde_koala_KURL_2Z (JNIEnv *env, jclass, jobject, jobject, jboolean); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_move__Ljava_util_ArrayList_2Lorg_kde_koala_KURL_2 (JNIEnv *env, jclass, jobject, jobject); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_link__Lorg_kde_koala_KURL_2Lorg_kde_koala_KURL_2Z (JNIEnv *env, jclass, jobject, jobject, jboolean); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_link__Lorg_kde_koala_KURL_2Lorg_kde_koala_KURL_2 (JNIEnv *env, jclass, jobject, jobject); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_link__Ljava_util_ArrayList_2Lorg_kde_koala_KURL_2Z (JNIEnv *env, jclass, jobject, jobject, jboolean); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_link__Ljava_util_ArrayList_2Lorg_kde_koala_KURL_2 (JNIEnv *env, jclass, jobject, jobject); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_linkAs__Lorg_kde_koala_KURL_2Lorg_kde_koala_KURL_2Z (JNIEnv *env, jclass, jobject, jobject, jboolean); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_linkAs__Lorg_kde_koala_KURL_2Lorg_kde_koala_KURL_2 (JNIEnv *env, jclass, jobject, jobject); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_trash__Lorg_kde_koala_KURL_2Z (JNIEnv *env, jclass, jobject, jboolean); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_trash__Lorg_kde_koala_KURL_2 (JNIEnv *env, jclass, jobject); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_trash__Ljava_util_ArrayList_2Z (JNIEnv *env, jclass, jobject, jboolean); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_trash__Ljava_util_ArrayList_2 (JNIEnv *env, jclass, jobject); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_del__Lorg_kde_koala_KURL_2ZZ (JNIEnv *env, jclass, jobject, jboolean, jboolean); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_del__Lorg_kde_koala_KURL_2Z (JNIEnv *env, jclass, jobject, jboolean); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_del__Lorg_kde_koala_KURL_2 (JNIEnv *env, jclass, jobject); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_del__Ljava_util_ArrayList_2ZZ (JNIEnv *env, jclass, jobject, jboolean, jboolean); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_del__Ljava_util_ArrayList_2Z (JNIEnv *env, jclass, jobject, jboolean); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_del__Ljava_util_ArrayList_2 (JNIEnv *env, jclass, jobject); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_pasteClipboard__Lorg_kde_koala_KURL_2Z (JNIEnv *env, jclass, jobject, jboolean); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_pasteClipboard__Lorg_kde_koala_KURL_2 (JNIEnv *env, jclass, jobject); -extern JNIEXPORT void JNICALL Java_org_kde_koala_KIO_pasteData (JNIEnv *env, jclass, jobject, jbyteArray); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_pasteDataAsync__Lorg_kde_koala_KURL_2_3B (JNIEnv *env, jclass, jobject, jbyteArray); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_pasteDataAsync__Lorg_kde_koala_KURL_2_3BLjava_lang_String_2 (JNIEnv *env, jclass, jobject, jbyteArray, jstring); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_pasteMimeSource__Lorg_kde_qt_QMimeSourceInterface_2Lorg_kde_koala_KURL_2Ljava_lang_String_2Lorg_kde_qt_QWidget_2Z (JNIEnv *env, jclass, jobject, jobject, jstring, jobject, jboolean); -extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_pasteMimeSource__Lorg_kde_qt_QMimeSourceInterface_2Lorg_kde_koala_KURL_2Ljava_lang_String_2Lorg_kde_qt_QWidget_2 (JNIEnv *env, jclass, jobject, jobject, jstring, jobject); -extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_KIO_isClipboardEmpty (JNIEnv *env, jclass); -extern JNIEXPORT jstring JNICALL Java_org_kde_koala_KIO_pasteActionText (JNIEnv *env, jclass); - -#ifdef __cplusplus -} -#endif - -#endif /* __org_kde_koala_KIO__ */ diff --git a/kdejava/koala/kdejava/Makefile.am b/kdejava/koala/kdejava/Makefile.am index 4e90f916..d2df9c4f 100644 --- a/kdejava/koala/kdejava/Makefile.am +++ b/kdejava/koala/kdejava/Makefile.am @@ -8,10 +8,10 @@ jnilocdir = $(libdir)/jni AM_LDFLAGS = -libkdejava_la_SOURCES = StoredTransferJob.cpp BrowserRun.cpp BrowserHostExtension.cpp WindowArgs.cpp URLArgs.cpp PartManager.cpp KNamedCommand.cpp KSSLCertBox.cpp TextEvent.cpp StatusBarExtension.cpp SkipDlg.cpp SessionData.cpp RangeException.cpp Plugin.cpp PasswordDialog.cpp PartBase.cpp Notation.cpp MutationEvent.cpp MultiGetJob.cpp LiveConnectExtension.cpp LinkStyle.cpp KZipFileEntry.cpp KZip.cpp KXMLGUI.cpp KWindowInfo.cpp KWidgetAction.cpp KURLBarItemDialog.cpp KTempDir.cpp KSyntaxHighlighter.cpp KSSLSigners.cpp KSSLPKCS7.cpp KSSLKeyGen.cpp KSSLCertificateFactory.cpp KSSLCertificateCache.cpp KSSLCertDlg.cpp KSpellingHighlighter.cpp KSMIMECrypto.cpp KSimpleFileFilter.cpp KShell.cpp KServiceSeparator.cpp KRegExpEditorInterface.cpp KPluginSelector.cpp KPassivePopup.cpp KPanelAppMenu.cpp KOCRDialog.cpp KMountPoint.cpp KMimeTypeValidator.cpp KMimeTypeResolverHelper.cpp KMimeTypeResolverBase.cpp KMD5.cpp KKeyNative.cpp KIDNA.cpp KFontRequester.cpp KFileShare.cpp KFilePlugin.cpp KDockArea.cpp KDiskFreeSp.cpp KDCOPServiceStarter.cpp KCustomMenuEditor.cpp KCPUInfo.cpp TDEConfigGroup.cpp KCMultiDialog.cpp TDECModuleLoader.cpp TDECModuleInfo.cpp KCalendarSystemFactory.cpp KAr.cpp KActiveLabel.cpp KActionShortcutList.cpp KAccelShortcutList.cpp HTMLFormCollection.cpp HistoryProvider.cpp Factory.cpp EventException.cpp Entity.cpp DOMImplementation.cpp DOMException.cpp CSSValueList.cpp CSSUnknownRule.cpp CSSStyleRule.cpp CSSPageRule.cpp CSSMediaRule.cpp CSSImportRule.cpp CSSFontFaceRule.cpp CSSCharsetRule.cpp KInputDialog.cpp KAsyncIO.cpp Observer.cpp RenameDlg.cpp KDirLister.cpp KBufferedIO.cpp AuthInfo.cpp SlaveInterface.cpp SlaveBase.cpp KShellProcess.cpp KMimeMagicResult.cpp KMimeMagic.cpp KFloatValidator.cpp KEdit.cpp DefaultProgress.cpp KURLComboRequester.cpp KToggleToolBarAction.cpp KTimeWidget.cpp KTextEdit.cpp KTabWidget.cpp KTabBar.cpp KStringListValidator.cpp KPasteTextAction.cpp KMdiToolViewAccessor.cpp KMdiWin32IconButton.cpp KMdiViewCloseEvent.cpp KMdiTaskBar.cpp KMdiTaskBarButton.cpp KMdiMainFrm.cpp KMdi.cpp KMdiChildView.cpp KMdiChildFrmResizeEndEvent.cpp KMdiChildFrmResizeBeginEvent.cpp KMdiChildFrmMoveEvent.cpp KMdiChildFrmDragEndEvent.cpp KMdiChildFrmDragBeginEvent.cpp KMdiChildFrm.cpp KMdiChildFrmCaption.cpp KMdiChildArea.cpp KKeyButton.cpp KDoubleValidator.cpp KCatalogue.cpp UIEvent.cpp PreviewJob.cpp Node.cpp MetaInfoJob.cpp KURLBarListBox.cpp KURLBarItem.cpp KURLBar.cpp KToggleFullScreenAction.cpp KSSLX509V3.cpp KSSLSession.cpp KSSLCertChain.cpp KShortcutList.cpp KSharedConfig.cpp KMimeSourceFactory.cpp KFileMetaInfoGroup.cpp KCalendarSystem.cpp EventListener.cpp DomShared.cpp Document.cpp DavJob.cpp CustomNodeFilter.cpp CSSRuleList.cpp CSSRule.cpp AbstractView.cpp KReplaceDialog.cpp KReplace.cpp KProgressDialog.cpp KPrintAction.cpp KMultiTabBarTab.cpp KMultiTabBar.cpp KMultiTabBarButton.cpp KFindDialog.cpp KFind.cpp KDateTimeWidget.cpp KArrowButton.cpp KRecentFilesAction.cpp KListAction.cpp KSSLCertDlgRet.cpp KDE.cpp KValueSelector.cpp KPaletteTable.cpp KHSSelector.cpp KColorPatch.cpp KColorDialog.cpp KColorCells.cpp KColor.cpp KURLPixmapProvider.cpp KDockWidget.cpp KDockTabGroup.cpp KDockManager.cpp KDockMainWindow.cpp KKeySequence.cpp ProgressBase.cpp StatusbarProgress.cpp Scheduler.cpp KIO.cpp KKey.cpp KShortcut.cpp KWordWrap.cpp KMultipleDrag.cpp KFileTreeViewToolTip.cpp KFileTreeViewItem.cpp KFileTreeView.cpp KFileTreeBranch.cpp KFileFilterCombo.cpp KEMailSettings.cpp KDirSelectDialog.cpp KDateWidget.cpp KDataToolInfo.cpp KDataToolAction.cpp KDataTool.cpp KStdGuiItem.cpp KIconViewItem.cpp KGuiItem.cpp KFileMetaInfoItem.cpp KFileMetaInfo.cpp KDialogBase.cpp KArchiveFile.cpp KArchiveEntry.cpp KSSLPKCS12.cpp KArchiveDirectory.cpp KTar.cpp KArchive.cpp KListViewItem.cpp KTipDialog.cpp KTipDatabase.cpp KDEJavaSlot.cpp KToolBarPopupAction.cpp KSqueezedTextLabel.cpp KScanDialog.cpp KPushButton.cpp KPreviewWidgetBase.cpp KPixmapSplitter.cpp KPanelExtension.cpp KMacroCommand.cpp KFontCombo.cpp KFilterDev.cpp KFilterBase.cpp KEditListBox.cpp KDialogQueue.cpp KCompletionBox.cpp KCommandHistory.cpp KCommand.cpp KCodecs.cpp KAboutTranslator.cpp KAboutContributor.cpp Slave.cpp Connection.cpp TransferJob.cpp StatJob.cpp SimpleJob.cpp MimetypeJob.cpp ListJob.cpp KDirSize.cpp KDirNotify.cpp Job.cpp FileCopyJob.cpp DeleteJob.cpp CopyJob.cpp CharacterData.cpp TreeWalker.cpp Text.cpp Range.cpp ProcessingInstruction.cpp NodeIterator.cpp NodeFilter.cpp EntityReference.cpp Comment.cpp CDATASection.cpp MainWindow.cpp DockMainWindow.cpp Attr.cpp HTMLUListElement.cpp HTMLTitleElement.cpp HTMLTextAreaElement.cpp HTMLTableSectionElement.cpp HTMLTableRowElement.cpp HTMLTableElement.cpp HTMLTableColElement.cpp HTMLTableCellElement.cpp HTMLTableCaptionElement.cpp HTMLStyleElement.cpp HTMLSelectElement.cpp HTMLScriptElement.cpp HTMLQuoteElement.cpp HTMLPreElement.cpp HTMLParamElement.cpp HTMLParagraphElement.cpp HTMLOptionElement.cpp HTMLOptGroupElement.cpp HTMLObjectElement.cpp HTMLOListElement.cpp HTMLModElement.cpp HTMLMetaElement.cpp HTMLMenuElement.cpp HTMLMapElement.cpp HTMLLinkElement.cpp HTMLLegendElement.cpp HTMLLabelElement.cpp HTMLLIElement.cpp HTMLIsIndexElement.cpp HTMLInputElement.cpp HTMLImageElement.cpp HTMLIFrameElement.cpp HTMLHtmlElement.cpp HTMLHeadingElement.cpp HTMLHeadElement.cpp HTMLHRElement.cpp HTMLFrameSetElement.cpp HTMLFrameElement.cpp HTMLFormElement.cpp HTMLFontElement.cpp HTMLFieldSetElement.cpp HTMLElement.cpp HTMLDivElement.cpp HTMLDirectoryElement.cpp HTMLDListElement.cpp HTMLCollection.cpp HTMLButtonElement.cpp HTMLBodyElement.cpp HTMLBlockquoteElement.cpp HTMLBaseFontElement.cpp HTMLBaseElement.cpp HTMLBRElement.cpp HTMLAreaElement.cpp HTMLAppletElement.cpp HTMLAnchorElement.cpp Element.cpp Rect.cpp RGBColor.cpp Counter.cpp CSSValue.cpp CSSStyleDeclaration.cpp CSSPrimitiveValue.cpp CSSException.cpp StyleSheet.cpp CSSStyleSheet.cpp NamedNodeMap.cpp HTMLDocument.cpp DocumentType.cpp DocumentStyle.cpp DocumentFragment.cpp ReadWritePart.cpp PartSelectEvent.cpp PartActivateEvent.cpp OpenURLEvent.cpp MouseEvent.cpp GUIActivateEvent.cpp Event.cpp KDESupport.cpp NetAccess.cpp ReadOnlyPart.cpp Part.cpp KXYSelector.cpp KXMLGUIFactory.cpp KXMLGUIClient.cpp KXMLGUIBuilder.cpp KWritePermsIcon.cpp KWizard.cpp KUniqueApplication.cpp KURLRequesterDlg.cpp KURLRequester.cpp KURLLabel.cpp KURLDrag.cpp KURLCompletion.cpp KURLComboBox.cpp KURL.cpp KURIFilterPlugin.cpp KURIFilterData.cpp KURIFilter.cpp KTrader.cpp KToolBarSeparator.cpp KToolBarRadioGroup.cpp KToolBarButton.cpp KToolBar.cpp KToggleAction.cpp KTextBrowser.cpp KTempFile.cpp KTabCtl.cpp KSystemTray.cpp KSycocaEntry.cpp KSycoca.cpp KStringHandler.cpp KStdAction.cpp KStdAccel.cpp KStatusBarLabel.cpp KStatusBar.cpp KStaticDeleterBase.cpp KStandardDirs.cpp KSpellDlg.cpp KSpellConfig.cpp KSpell.cpp KSimpleConfig.cpp KShred.cpp KShellCompletion.cpp KShared.cpp KSessionManaged.cpp KServiceTypeProfile.cpp KServiceType.cpp KServiceOffer.cpp KServiceGroup.cpp KService.cpp KSeparator.cpp KSelector.cpp KSelectAction.cpp KSaveFile.cpp KSSLX509Map.cpp KSSLSettings.cpp KSSLPeerInfo.cpp KSSLInfoDlg.cpp KSSLConnectionInfo.cpp KSSLCertificateHome.cpp KSSLCertificate.cpp KSSL.cpp KRun.cpp KRuler.cpp KRootProp.cpp KRootPixmap.cpp KRootPermsIcon.cpp KRestrictedLine.cpp KRecentDocument.cpp KRandomSequence.cpp KRadioAction.cpp KRFCDate.cpp KProtocolManager.cpp KProtocolInfo.cpp KProgress.cpp TDEProcessRunner.cpp TDEProcessController.cpp TDEProcess.cpp KProcIO.cpp KPopupTitle.cpp KPopupMenu.cpp KPopupFrame.cpp KPixmapProvider.cpp KPixmapIO.cpp KPixmapEffect.cpp KPixmap.cpp KPasswordEdit.cpp KPasswordDialog.cpp KPanelMenu.cpp KPanelApplet.cpp KPalette.cpp KOpenWithDlg.cpp KNumInput.cpp KNotifyClient.cpp KMimeType.cpp KMessageBox.cpp KMenuBar.cpp KMainWindow.cpp KLocale.cpp KListView.cpp KListBox.cpp KLineEdit.cpp KLibLoader.cpp KLibFactory.cpp KLed.cpp KKeyDialog.cpp KKeyChooser.cpp KJanusWidget.cpp KIntValidator.cpp KIntSpinBox.cpp KIntNumInput.cpp TDEInstance.cpp KImageIO.cpp KImageEffect.cpp KIconView.cpp KIconLoader.cpp KIconEffect.cpp KIconDialog.cpp KIconCanvas.cpp KIconButton.cpp KIPC.cpp KHistoryCombo.cpp KHelpMenu.cpp KHTMLView.cpp KHTMLSettings.cpp KHTMLPart.cpp KGradientSelector.cpp TDEGlobal.cpp TDEGlobalSettings.cpp TDEGlobalAccel.cpp KFontSizeAction.cpp KFontDialog.cpp KFontChooser.cpp KFontAction.cpp KFolderType.cpp KFileViewSignaler.cpp KFileView.cpp KFilePreview.cpp KFileListViewItem.cpp KFileItem.cpp KFileIconViewItem.cpp KFileIconView.cpp KFileFilter.cpp KFileDialog.cpp KFileDetailView.cpp KFile.cpp KExecMimeType.cpp KEntryKey.cpp KEntry.cpp KEditToolbarWidget.cpp KEditToolbar.cpp KEdReplace.cpp KEdGotoLine.cpp KEdFind.cpp KDualColorButton.cpp KDoubleNumInput.cpp KDockWidgetHeaderDrag.cpp KDockWidgetHeader.cpp KDockWidgetAbstractHeaderDrag.cpp KDockWidgetAbstractHeader.cpp KDirWatch.cpp KDirOperator.cpp KDialog.cpp KDesktopFile.cpp KDateValidator.cpp KDateTable.cpp KDatePicker.cpp KDEDesktopMimeType.cpp KDCOPPropertyProxy.cpp KDCOPActionProxy.cpp KCursor.cpp KContextMenuManager.cpp TDEConfigINIBackEnd.cpp TDEConfigGroupSaver.cpp TDEConfigBase.cpp TDEConfigBackEnd.cpp TDEConfig.cpp KCompletionBase.cpp KCompletion.cpp KComboBox.cpp KCombiView.cpp KColorDrag.cpp KColorCombo.cpp KColorButton.cpp TDECmdLineArgs.cpp KCharsets.cpp KCharSelectTable.cpp KCharSelect.cpp TDECModule.cpp KButtonBox.cpp KBugReport.cpp KAuthIcon.cpp KAudioPlayer.cpp TDEApplication.cpp KAnimWidget.cpp KActionSeparator.cpp KActionMenu.cpp KActionCollection.cpp KAction.cpp KAccel.cpp KAboutWidget.cpp KAboutPerson.cpp KAboutKDE.cpp KAboutDialog.cpp TDEAboutData.cpp KAboutContainer.cpp KAboutApplication.cpp DCOPObjectProxy.cpp DCOPObject.cpp DCOPClient.cpp BrowserExtension.cpp +libkdejava_la_SOURCES = StoredTransferJob.cpp BrowserRun.cpp BrowserHostExtension.cpp WindowArgs.cpp URLArgs.cpp PartManager.cpp KNamedCommand.cpp KSSLCertBox.cpp TextEvent.cpp StatusBarExtension.cpp SkipDlg.cpp SessionData.cpp RangeException.cpp Plugin.cpp PasswordDialog.cpp PartBase.cpp Notation.cpp MutationEvent.cpp MultiGetJob.cpp LiveConnectExtension.cpp LinkStyle.cpp KZipFileEntry.cpp KZip.cpp KXMLGUI.cpp KWindowInfo.cpp KWidgetAction.cpp KURLBarItemDialog.cpp KTempDir.cpp KSyntaxHighlighter.cpp KSSLSigners.cpp KSSLPKCS7.cpp KSSLKeyGen.cpp KSSLCertificateFactory.cpp KSSLCertificateCache.cpp KSSLCertDlg.cpp KSpellingHighlighter.cpp KSMIMECrypto.cpp KSimpleFileFilter.cpp KShell.cpp KServiceSeparator.cpp KRegExpEditorInterface.cpp KPluginSelector.cpp KPassivePopup.cpp KPanelAppMenu.cpp KOCRDialog.cpp KMountPoint.cpp KMimeTypeValidator.cpp KMimeTypeResolverHelper.cpp KMimeTypeResolverBase.cpp KMD5.cpp KKeyNative.cpp KIDNA.cpp KFontRequester.cpp KFileShare.cpp KFilePlugin.cpp KDockArea.cpp KDiskFreeSp.cpp KDCOPServiceStarter.cpp KCustomMenuEditor.cpp KCPUInfo.cpp TDEConfigGroup.cpp KCMultiDialog.cpp TDECModuleLoader.cpp TDECModuleInfo.cpp KCalendarSystemFactory.cpp KAr.cpp KActiveLabel.cpp KActionShortcutList.cpp KAccelShortcutList.cpp HTMLFormCollection.cpp HistoryProvider.cpp Factory.cpp EventException.cpp Entity.cpp DOMImplementation.cpp DOMException.cpp CSSValueList.cpp CSSUnknownRule.cpp CSSStyleRule.cpp CSSPageRule.cpp CSSMediaRule.cpp CSSImportRule.cpp CSSFontFaceRule.cpp CSSCharsetRule.cpp KInputDialog.cpp KAsyncIO.cpp Observer.cpp RenameDlg.cpp KDirLister.cpp TDEBufferedIO.cpp AuthInfo.cpp SlaveInterface.cpp SlaveBase.cpp KShellProcess.cpp KMimeMagicResult.cpp KMimeMagic.cpp KFloatValidator.cpp KEdit.cpp DefaultProgress.cpp KURLComboRequester.cpp KToggleToolBarAction.cpp KTimeWidget.cpp KTextEdit.cpp KTabWidget.cpp KTabBar.cpp KStringListValidator.cpp KPasteTextAction.cpp KMdiToolViewAccessor.cpp KMdiWin32IconButton.cpp KMdiViewCloseEvent.cpp KMdiTaskBar.cpp KMdiTaskBarButton.cpp KMdiMainFrm.cpp KMdi.cpp KMdiChildView.cpp KMdiChildFrmResizeEndEvent.cpp KMdiChildFrmResizeBeginEvent.cpp KMdiChildFrmMoveEvent.cpp KMdiChildFrmDragEndEvent.cpp KMdiChildFrmDragBeginEvent.cpp KMdiChildFrm.cpp KMdiChildFrmCaption.cpp KMdiChildArea.cpp KKeyButton.cpp KDoubleValidator.cpp KCatalogue.cpp UIEvent.cpp PreviewJob.cpp Node.cpp MetaInfoJob.cpp KURLBarListBox.cpp KURLBarItem.cpp KURLBar.cpp KToggleFullScreenAction.cpp KSSLX509V3.cpp KSSLSession.cpp KSSLCertChain.cpp KShortcutList.cpp KSharedConfig.cpp KMimeSourceFactory.cpp KFileMetaInfoGroup.cpp KCalendarSystem.cpp EventListener.cpp DomShared.cpp Document.cpp DavJob.cpp CustomNodeFilter.cpp CSSRuleList.cpp CSSRule.cpp AbstractView.cpp KReplaceDialog.cpp KReplace.cpp KProgressDialog.cpp KPrintAction.cpp KMultiTabBarTab.cpp KMultiTabBar.cpp KMultiTabBarButton.cpp KFindDialog.cpp KFind.cpp KDateTimeWidget.cpp KArrowButton.cpp KRecentFilesAction.cpp KListAction.cpp KSSLCertDlgRet.cpp KDE.cpp KValueSelector.cpp KPaletteTable.cpp KHSSelector.cpp KColorPatch.cpp KColorDialog.cpp KColorCells.cpp KColor.cpp KURLPixmapProvider.cpp KDockWidget.cpp KDockTabGroup.cpp KDockManager.cpp KDockMainWindow.cpp KKeySequence.cpp ProgressBase.cpp StatusbarProgress.cpp Scheduler.cpp KIO.cpp KKey.cpp KShortcut.cpp KWordWrap.cpp KMultipleDrag.cpp KFileTreeViewToolTip.cpp KFileTreeViewItem.cpp KFileTreeView.cpp KFileTreeBranch.cpp KFileFilterCombo.cpp KEMailSettings.cpp KDirSelectDialog.cpp KDateWidget.cpp KDataToolInfo.cpp KDataToolAction.cpp KDataTool.cpp KStdGuiItem.cpp KIconViewItem.cpp KGuiItem.cpp KFileMetaInfoItem.cpp KFileMetaInfo.cpp KDialogBase.cpp KArchiveFile.cpp KArchiveEntry.cpp KSSLPKCS12.cpp KArchiveDirectory.cpp KTar.cpp KArchive.cpp KListViewItem.cpp KTipDialog.cpp KTipDatabase.cpp KDEJavaSlot.cpp KToolBarPopupAction.cpp KSqueezedTextLabel.cpp KScanDialog.cpp KPushButton.cpp KPreviewWidgetBase.cpp KPixmapSplitter.cpp KPanelExtension.cpp KMacroCommand.cpp KFontCombo.cpp KFilterDev.cpp KFilterBase.cpp KEditListBox.cpp KDialogQueue.cpp KCompletionBox.cpp KCommandHistory.cpp KCommand.cpp KCodecs.cpp KAboutTranslator.cpp KAboutContributor.cpp Slave.cpp Connection.cpp TransferJob.cpp StatJob.cpp SimpleJob.cpp MimetypeJob.cpp ListJob.cpp KDirSize.cpp KDirNotify.cpp Job.cpp FileCopyJob.cpp DeleteJob.cpp CopyJob.cpp CharacterData.cpp TreeWalker.cpp Text.cpp Range.cpp ProcessingInstruction.cpp NodeIterator.cpp NodeFilter.cpp EntityReference.cpp Comment.cpp CDATASection.cpp MainWindow.cpp DockMainWindow.cpp Attr.cpp HTMLUListElement.cpp HTMLTitleElement.cpp HTMLTextAreaElement.cpp HTMLTableSectionElement.cpp HTMLTableRowElement.cpp HTMLTableElement.cpp HTMLTableColElement.cpp HTMLTableCellElement.cpp HTMLTableCaptionElement.cpp HTMLStyleElement.cpp HTMLSelectElement.cpp HTMLScriptElement.cpp HTMLQuoteElement.cpp HTMLPreElement.cpp HTMLParamElement.cpp HTMLParagraphElement.cpp HTMLOptionElement.cpp HTMLOptGroupElement.cpp HTMLObjectElement.cpp HTMLOListElement.cpp HTMLModElement.cpp HTMLMetaElement.cpp HTMLMenuElement.cpp HTMLMapElement.cpp HTMLLinkElement.cpp HTMLLegendElement.cpp HTMLLabelElement.cpp HTMLLIElement.cpp HTMLIsIndexElement.cpp HTMLInputElement.cpp HTMLImageElement.cpp HTMLIFrameElement.cpp HTMLHtmlElement.cpp HTMLHeadingElement.cpp HTMLHeadElement.cpp HTMLHRElement.cpp HTMLFrameSetElement.cpp HTMLFrameElement.cpp HTMLFormElement.cpp HTMLFontElement.cpp HTMLFieldSetElement.cpp HTMLElement.cpp HTMLDivElement.cpp HTMLDirectoryElement.cpp HTMLDListElement.cpp HTMLCollection.cpp HTMLButtonElement.cpp HTMLBodyElement.cpp HTMLBlockquoteElement.cpp HTMLBaseFontElement.cpp HTMLBaseElement.cpp HTMLBRElement.cpp HTMLAreaElement.cpp HTMLAppletElement.cpp HTMLAnchorElement.cpp Element.cpp Rect.cpp RGBColor.cpp Counter.cpp CSSValue.cpp CSSStyleDeclaration.cpp CSSPrimitiveValue.cpp CSSException.cpp StyleSheet.cpp CSSStyleSheet.cpp NamedNodeMap.cpp HTMLDocument.cpp DocumentType.cpp DocumentStyle.cpp DocumentFragment.cpp ReadWritePart.cpp PartSelectEvent.cpp PartActivateEvent.cpp OpenURLEvent.cpp MouseEvent.cpp GUIActivateEvent.cpp Event.cpp KDESupport.cpp NetAccess.cpp ReadOnlyPart.cpp Part.cpp KXYSelector.cpp KXMLGUIFactory.cpp KXMLGUIClient.cpp KXMLGUIBuilder.cpp KWritePermsIcon.cpp KWizard.cpp KUniqueApplication.cpp KURLRequesterDlg.cpp KURLRequester.cpp KURLLabel.cpp KURLDrag.cpp KURLCompletion.cpp KURLComboBox.cpp KURL.cpp KURIFilterPlugin.cpp KURIFilterData.cpp KURIFilter.cpp KTrader.cpp KToolBarSeparator.cpp KToolBarRadioGroup.cpp KToolBarButton.cpp KToolBar.cpp KToggleAction.cpp KTextBrowser.cpp KTempFile.cpp KTabCtl.cpp KSystemTray.cpp KSycocaEntry.cpp KSycoca.cpp KStringHandler.cpp KStdAction.cpp KStdAccel.cpp KStatusBarLabel.cpp KStatusBar.cpp KStaticDeleterBase.cpp KStandardDirs.cpp KSpellDlg.cpp KSpellConfig.cpp KSpell.cpp KSimpleConfig.cpp KShred.cpp KShellCompletion.cpp KShared.cpp KSessionManaged.cpp KServiceTypeProfile.cpp KServiceType.cpp KServiceOffer.cpp KServiceGroup.cpp KService.cpp KSeparator.cpp KSelector.cpp KSelectAction.cpp KSaveFile.cpp KSSLX509Map.cpp KSSLSettings.cpp KSSLPeerInfo.cpp KSSLInfoDlg.cpp KSSLConnectionInfo.cpp KSSLCertificateHome.cpp KSSLCertificate.cpp KSSL.cpp KRun.cpp KRuler.cpp KRootProp.cpp KRootPixmap.cpp KRootPermsIcon.cpp KRestrictedLine.cpp KRecentDocument.cpp KRandomSequence.cpp KRadioAction.cpp KRFCDate.cpp KProtocolManager.cpp KProtocolInfo.cpp KProgress.cpp TDEProcessRunner.cpp TDEProcessController.cpp TDEProcess.cpp KProcIO.cpp KPopupTitle.cpp KPopupMenu.cpp KPopupFrame.cpp KPixmapProvider.cpp KPixmapIO.cpp KPixmapEffect.cpp KPixmap.cpp KPasswordEdit.cpp KPasswordDialog.cpp KPanelMenu.cpp KPanelApplet.cpp KPalette.cpp KOpenWithDlg.cpp KNumInput.cpp KNotifyClient.cpp KMimeType.cpp KMessageBox.cpp KMenuBar.cpp KMainWindow.cpp KLocale.cpp KListView.cpp KListBox.cpp KLineEdit.cpp KLibLoader.cpp KLibFactory.cpp KLed.cpp KKeyDialog.cpp KKeyChooser.cpp KJanusWidget.cpp KIntValidator.cpp KIntSpinBox.cpp KIntNumInput.cpp TDEInstance.cpp KImageIO.cpp KImageEffect.cpp KIconView.cpp KIconLoader.cpp KIconEffect.cpp KIconDialog.cpp KIconCanvas.cpp KIconButton.cpp KIPC.cpp KHistoryCombo.cpp KHelpMenu.cpp KHTMLView.cpp KHTMLSettings.cpp KHTMLPart.cpp KGradientSelector.cpp TDEGlobal.cpp TDEGlobalSettings.cpp TDEGlobalAccel.cpp KFontSizeAction.cpp KFontDialog.cpp KFontChooser.cpp KFontAction.cpp KFolderType.cpp KFileViewSignaler.cpp KFileView.cpp KFilePreview.cpp KFileListViewItem.cpp KFileItem.cpp KFileIconViewItem.cpp KFileIconView.cpp KFileFilter.cpp KFileDialog.cpp KFileDetailView.cpp KFile.cpp KExecMimeType.cpp KEntryKey.cpp KEntry.cpp KEditToolbarWidget.cpp KEditToolbar.cpp KEdReplace.cpp KEdGotoLine.cpp KEdFind.cpp KDualColorButton.cpp KDoubleNumInput.cpp KDockWidgetHeaderDrag.cpp KDockWidgetHeader.cpp KDockWidgetAbstractHeaderDrag.cpp KDockWidgetAbstractHeader.cpp KDirWatch.cpp KDirOperator.cpp KDialog.cpp KDesktopFile.cpp KDateValidator.cpp KDateTable.cpp KDatePicker.cpp KDEDesktopMimeType.cpp KDCOPPropertyProxy.cpp KDCOPActionProxy.cpp KCursor.cpp KContextMenuManager.cpp TDEConfigINIBackEnd.cpp TDEConfigGroupSaver.cpp TDEConfigBase.cpp TDEConfigBackEnd.cpp TDEConfig.cpp KCompletionBase.cpp KCompletion.cpp KComboBox.cpp KCombiView.cpp KColorDrag.cpp KColorCombo.cpp KColorButton.cpp TDECmdLineArgs.cpp KCharsets.cpp KCharSelectTable.cpp KCharSelect.cpp TDECModule.cpp KButtonBox.cpp KBugReport.cpp KAuthIcon.cpp KAudioPlayer.cpp TDEApplication.cpp KAnimWidget.cpp KActionSeparator.cpp KActionMenu.cpp KActionCollection.cpp KAction.cpp KAccel.cpp KAboutWidget.cpp KAboutPerson.cpp KAboutKDE.cpp KAboutDialog.cpp TDEAboutData.cpp KAboutContainer.cpp KAboutApplication.cpp DCOPObjectProxy.cpp DCOPObject.cpp DCOPClient.cpp BrowserExtension.cpp -EXTRA_DIST = BrowserExtension.h DCOPClient.h DCOPObject.h DCOPObjectInterface.h DCOPObjectProxy.h KAboutApplication.h KAboutContainer.h TDEAboutData.h KAboutDialog.h KAboutKDE.h KAboutPerson.h KAboutWidget.h KAccel.h KAction.h KActionCollection.h KActionMenu.h KActionSeparator.h KAnimWidget.h TDEApplication.h KAudioPlayer.h KAuthIcon.h KBugReport.h KButtonBox.h TDECModule.h KCharSelect.h KCharSelectTable.h KCharsets.h TDECmdLineArgs.h KColorButton.h KColorCombo.h KColorDrag.h KCombiView.h KComboBox.h KCompletion.h KCompletionBase.h KCompletionBaseInterface.h TDEConfig.h TDEConfigBackEnd.h TDEConfigBase.h TDEConfigGroupSaver.h TDEConfigINIBackEnd.h KContextMenuManager.h KCursor.h KDCOPActionProxy.h KDCOPPropertyProxy.h KDEDesktopMimeType.h KDateInternalMonthPicker.h KDateInternalYearSelector.h KDatePicker.h KDateTable.h KDateValidator.h KDesktopFile.h KDialog.h KDialogBase.h KDirOperator.h KDirWatch.h KDockWidgetAbstractHeader.h KDockWidgetAbstractHeaderDrag.h KDockWidgetHeader.h KDockWidgetHeaderDrag.h KDoubleNumInput.h KDualColorButton.h KEdFind.h KEdGotoLine.h KEdReplace.h KEditToolbar.h KEditToolbarWidget.h KEntry.h KEntryKey.h KExecMimeType.h KFile.h KFileDetailView.h KFileDialog.h KFileFilter.h KFileIconView.h KFileIconViewItem.h KFileItem.h KFileListViewItem.h KFilePreview.h KFileView.h KFileViewInterface.h KFileViewSignaler.h KFolderType.h KFontAction.h KFontChooser.h KFontDialog.h KFontSizeAction.h TDEGlobal.h TDEGlobalAccel.h TDEGlobalSettings.h KGradientSelector.h KHTMLPart.h KHTMLSettings.h KHTMLView.h KHelpMenu.h KHistoryCombo.h KIPC.h KIconButton.h KIconCanvas.h KIconDialog.h KIconEffect.h KIconLoader.h KIconView.h KImageEffect.h KImageIO.h TDEInstance.h TDEInstanceInterface.h KIntNumInput.h KIntSpinBox.h KIntValidator.h KJanusWidget.h KKeyChooser.h KKeyDialog.h KLed.h KLibFactory.h KLibLoader.h KLineEdit.h KListBox.h KListView.h KLocale.h KMainWindow.h KMenuBar.h KMessageBox.h KMimeType.h KNotifyClient.h KNumInput.h KOpenWithDlg.h KPalette.h KPanelApplet.h KPanelMenu.h KPasswordDialog.h KPasswordEdit.h KPixmap.h KPixmapEffect.h KPixmapIO.h KPixmapProvider.h KPopupFrame.h KPopupMenu.h KPopupTitle.h KProcIO.h TDEProcess.h TDEProcessController.h TDEProcessRunner.h KProgress.h KProtocolInfo.h KProtocolManager.h KRFCDate.h KRadioAction.h KRandomSequence.h KRecentDocument.h KRestrictedLine.h KRootPermsIcon.h KRootPixmap.h KRootProp.h KRuler.h KRun.h KSSL.h KSSLCertificate.h KSSLCertificateHome.h KSSLConnectionInfo.h KSSLInfoDlg.h KSSLPeerInfo.h KSSLSettings.h KSSLX509Map.h KSaveFile.h KSelectAction.h KSelector.h KSeparator.h KService.h KServiceGroup.h KServiceOffer.h KServiceType.h KServiceTypeProfile.h KSessionManaged.h KShared.h KShellCompletion.h KShred.h KSimpleConfig.h KSpell.h KSpellConfig.h KSpellDlg.h KStandardDirs.h KStaticDeleterBase.h KStatusBar.h KStatusBarLabel.h KStdAccel.h KStdAction.h KStringHandler.h KSycoca.h KSycocaEntry.h KSystemTray.h KTabCtl.h KTempFile.h KTextBrowser.h KToggleAction.h KToolBar.h KToolBarButton.h KToolBarRadioGroup.h KToolBarSeparator.h KTrader.h KURIFilter.h KURIFilterData.h KURIFilterPlugin.h KURL.h KURLComboBox.h KURLCompletion.h KURLDrag.h KURLLabel.h KURLRequester.h KURLRequesterDlg.h KUniqueApplication.h KWizard.h KWritePermsIcon.h KXMLGUIBuilder.h KXMLGUIBuilderInterface.h KXMLGUIClient.h KXMLGUIClientInterface.h KXMLGUIFactory.h KXYSelector.h Part.h PartBaseInterface.h ReadOnlyPart.h BrowserExtension.cpp DCOPClient.cpp DCOPObject.cpp DCOPObjectProxy.cpp KAboutApplication.cpp KAboutContainer.cpp TDEAboutData.cpp KAboutDialog.cpp KAboutKDE.cpp KAboutPerson.cpp KAboutWidget.cpp KAccel.cpp KAction.cpp KActionCollection.cpp KActionMenu.cpp KActionSeparator.cpp KAnimWidget.cpp TDEApplication.cpp KAudioPlayer.cpp KAuthIcon.cpp KBugReport.cpp KButtonBox.cpp TDECModule.cpp KCharSelect.cpp KCharSelectTable.cpp KCharsets.cpp TDECmdLineArgs.cpp KColorButton.cpp KColorCombo.cpp KColorDrag.cpp KCombiView.cpp KComboBox.cpp KCompletion.cpp KCompletionBase.cpp TDEConfig.cpp TDEConfigBackEnd.cpp TDEConfigBase.cpp TDEConfigGroupSaver.cpp TDEConfigINIBackEnd.cpp KContextMenuManager.cpp KCursor.cpp KDCOPActionProxy.cpp KDCOPPropertyProxy.cpp KDEDesktopMimeType.cpp KDatePicker.cpp KDateTable.cpp KDateValidator.cpp KDesktopFile.cpp KDialog.cpp KDirOperator.cpp KDirWatch.cpp KDockWidgetAbstractHeader.cpp KDockWidgetAbstractHeaderDrag.cpp KDockWidgetHeader.cpp KDockWidgetHeaderDrag.cpp KDoubleNumInput.cpp KDualColorButton.cpp KEdFind.cpp KEdGotoLine.cpp KEdReplace.cpp KEditToolbar.cpp KEditToolbarWidget.cpp KEntry.cpp KEntryKey.cpp KExecMimeType.cpp KFile.cpp KFileDetailView.cpp KFileDialog.cpp KFileFilter.cpp KFileIconView.cpp KFileIconViewItem.cpp KFileItem.cpp KFileListViewItem.cpp KFilePreview.cpp KFileView.cpp KFileViewSignaler.cpp KFolderType.cpp KFontAction.cpp KFontChooser.cpp KFontDialog.cpp KFontSizeAction.cpp TDEGlobal.cpp TDEGlobalAccel.cpp TDEGlobalSettings.cpp KGradientSelector.cpp KHTMLPart.cpp KHTMLSettings.cpp KHTMLView.cpp KHelpMenu.cpp KHistoryCombo.cpp KIPC.cpp KIconButton.cpp KIconCanvas.cpp KIconDialog.cpp KIconEffect.cpp KIconLoader.cpp KIconView.cpp KImageEffect.cpp KImageIO.cpp TDEInstance.cpp KIntNumInput.cpp KIntSpinBox.cpp KIntValidator.cpp KJanusWidget.cpp KKeyChooser.cpp KKeyDialog.cpp KLed.cpp KLibFactory.cpp KLibLoader.cpp KLineEdit.cpp KListBox.cpp KListView.cpp KLocale.cpp KMainWindow.cpp KMenuBar.cpp KMessageBox.cpp KMimeType.cpp KNotifyClient.cpp KNumInput.cpp KOpenWithDlg.cpp KPalette.cpp KPanelApplet.cpp KPanelMenu.cpp KPasswordDialog.cpp KPasswordEdit.cpp KPixmap.cpp KPixmapEffect.cpp KPixmapIO.cpp KPixmapProvider.cpp KPopupFrame.cpp KPopupMenu.cpp KPopupTitle.cpp KProcIO.cpp TDEProcess.cpp TDEProcessController.cpp TDEProcessRunner.cpp KProgress.cpp KProtocolInfo.cpp KProtocolManager.cpp KRFCDate.cpp KRadioAction.cpp KRandomSequence.cpp KRecentDocument.cpp KRestrictedLine.cpp KRootPermsIcon.cpp KRootPixmap.cpp KRootProp.cpp KRuler.cpp KRun.cpp KSSL.cpp KSSLCertificate.cpp KSSLCertificateHome.cpp KSSLConnectionInfo.cpp KSSLInfoDlg.cpp KSSLPeerInfo.cpp KSSLSettings.cpp KSSLX509Map.cpp KSaveFile.cpp KSelectAction.cpp KSelector.cpp KSeparator.cpp KService.cpp KServiceGroup.cpp KServiceOffer.cpp KServiceType.cpp KServiceTypeProfile.cpp KSessionManaged.cpp KShared.cpp KShellCompletion.cpp KShred.cpp KSimpleConfig.cpp KSpell.cpp KSpellConfig.cpp KSpellDlg.cpp KStandardDirs.cpp KStaticDeleterBase.cpp KStatusBar.cpp KStatusBarLabel.cpp KStdAccel.cpp KStdAction.cpp KStringHandler.cpp KSycoca.cpp KSycocaEntry.cpp KSystemTray.cpp KTabCtl.cpp KTempFile.cpp KTextBrowser.cpp KToggleAction.cpp KToolBar.cpp KToolBarButton.cpp KToolBarRadioGroup.cpp KToolBarSeparator.cpp KTrader.cpp KURIFilter.cpp KURIFilterData.cpp KURIFilterPlugin.cpp KURL.cpp KURLComboBox.cpp KURLCompletion.cpp KURLDrag.cpp KURLLabel.cpp KURLRequester.cpp KURLRequesterDlg.cpp KUniqueApplication.cpp KWizard.cpp KWritePermsIcon.cpp KXMLGUIBuilder.cpp KXMLGUIClient.cpp KXMLGUIFactory.cpp KXYSelector.cpp Part.cpp ReadOnlyPart.cpp NetAccess.cpp NetAccess.h KDESupport.cpp Event.cpp GUIActivateEvent.cpp MouseEvent.cpp OpenURLEvent.cpp PartActivateEvent.cpp PartSelectEvent.cpp ReadWritePart.cpp DocumentFragment.cpp DocumentStyle.cpp DocumentType.cpp HTMLDocument.cpp NamedNodeMap.cpp CSSStyleSheet.cpp StyleSheet.cpp CSSException.cpp CSSPrimitiveValue.cpp CSSStyleDeclaration.cpp CSSValue.cpp Counter.cpp RGBColor.cpp Rect.cpp Element.cpp HTMLAnchorElement.cpp HTMLAppletElement.cpp HTMLAreaElement.cpp HTMLBRElement.cpp HTMLBaseElement.cpp HTMLBaseFontElement.cpp HTMLBlockquoteElement.cpp HTMLBodyElement.cpp HTMLButtonElement.cpp HTMLCollection.cpp HTMLDListElement.cpp HTMLDirectoryElement.cpp HTMLDivElement.cpp HTMLElement.cpp HTMLFieldSetElement.cpp HTMLFontElement.cpp HTMLFormElement.cpp HTMLFrameElement.cpp HTMLFrameSetElement.cpp HTMLHRElement.cpp HTMLHeadElement.cpp HTMLHeadingElement.cpp HTMLHtmlElement.cpp HTMLIFrameElement.cpp HTMLImageElement.cpp HTMLInputElement.cpp HTMLIsIndexElement.cpp HTMLLIElement.cpp HTMLLabelElement.cpp HTMLLegendElement.cpp HTMLLinkElement.cpp HTMLMapElement.cpp HTMLMenuElement.cpp HTMLMetaElement.cpp HTMLModElement.cpp HTMLOListElement.cpp HTMLObjectElement.cpp HTMLOptGroupElement.cpp HTMLOptionElement.cpp HTMLParagraphElement.cpp HTMLParamElement.cpp HTMLPreElement.cpp HTMLQuoteElement.cpp HTMLScriptElement.cpp HTMLSelectElement.cpp HTMLStyleElement.cpp HTMLTableCaptionElement.cpp HTMLTableCellElement.cpp HTMLTableColElement.cpp HTMLTableElement.cpp HTMLTableRowElement.cpp HTMLTableSectionElement.cpp HTMLTextAreaElement.cpp HTMLTitleElement.cpp HTMLUListElement.cpp Attr.cpp Attr.h CSSException.h CSSPrimitiveValue.h CSSStyleDeclaration.h CSSStyleSheet.h CSSValue.h Counter.h DocumentFragment.h DocumentStyle.h DocumentType.h Element.h Event.h GUIActivateEvent.h HTMLAnchorElement.h HTMLAppletElement.h HTMLAreaElement.h HTMLBRElement.h HTMLBaseElement.h HTMLBaseFontElement.h HTMLBlockquoteElement.h HTMLBodyElement.h HTMLButtonElement.h HTMLCollection.h HTMLDListElement.h HTMLDirectoryElement.h HTMLDivElement.h HTMLDocument.h HTMLElement.h HTMLFieldSetElement.h HTMLFontElement.h HTMLFormElement.h HTMLFrameElement.h HTMLFrameSetElement.h HTMLHRElement.h HTMLHeadElement.h HTMLHeadingElement.h HTMLHtmlElement.h HTMLIFrameElement.h HTMLImageElement.h HTMLInputElement.h HTMLIsIndexElement.h HTMLLIElement.h HTMLLabelElement.h HTMLLegendElement.h HTMLLinkElement.h HTMLMapElement.h HTMLMenuElement.h HTMLMetaElement.h HTMLModElement.h HTMLOListElement.h HTMLObjectElement.h HTMLOptGroupElement.h HTMLOptionElement.h HTMLParagraphElement.h HTMLParamElement.h HTMLPreElement.h HTMLQuoteElement.h HTMLScriptElement.h HTMLSelectElement.h HTMLStyleElement.h HTMLTableCaptionElement.h HTMLTableCellElement.h HTMLTableColElement.h HTMLTableElement.h HTMLTableRowElement.h HTMLTableSectionElement.h HTMLTextAreaElement.h HTMLTitleElement.h HTMLUListElement.h MouseEvent.h NamedNodeMap.h OpenURLEvent.h PartActivateEvent.h PartSelectEvent.h RGBColor.h ReadWritePart.h Rect.h StyleSheet.h DockMainWindow.cpp MainWindow.cpp DockMainWindow.h MainWindow.h CDATASection.cpp Comment.cpp EntityReference.cpp NodeFilter.cpp NodeIterator.cpp ProcessingInstruction.cpp Range.cpp Text.cpp TreeWalker.cpp CharacterData.cpp CDATASection.h CharacterData.h Comment.h EntityReference.h NodeFilter.h NodeIterator.h ProcessingInstruction.h Range.h Text.h TreeWalker.h CopyJob.cpp DeleteJob.cpp FileCopyJob.cpp Job.cpp KDirNotify.cpp KDirSize.cpp ListJob.cpp MimetypeJob.cpp SimpleJob.cpp StatJob.cpp TransferJob.cpp Connection.cpp Slave.cpp Connection.h CopyJob.h DeleteJob.h FileCopyJob.h Job.h KDirNotify.h KDirSize.h ListJob.h MimetypeJob.h SimpleJob.h Slave.h StatJob.h TransferJob.h KAboutContributor.cpp KAboutContributor.h KAboutTranslator.cpp KAboutTranslator.h KCodecs.cpp KCodecs.h KCommand.cpp KCommand.h KCommandHistory.cpp KCommandHistory.h KCompletionBox.cpp KCompletionBox.h KDialogQueue.cpp KDialogQueue.h KEditListBox.cpp KEditListBox.h KFilterBase.cpp KFilterBase.h KFilterDev.cpp KFilterDev.h KFontCombo.cpp KFontCombo.h KMacroCommand.cpp KMacroCommand.h KPanelExtension.cpp KPanelExtension.h KPixmapSplitter.cpp KPixmapSplitter.h KPreviewWidgetBase.cpp KPreviewWidgetBase.h KPushButton.cpp KPushButton.h KScanDialog.cpp KScanDialog.h KSqueezedTextLabel.cpp KSqueezedTextLabel.h KToolBarPopupAction.cpp KToolBarPopupAction.h KDEJavaSlot.cpp KDEJavaSlot.h KTipDatabase.cpp KTipDialog.cpp KTipDatabase.h KTipDialog.h ASConsumer.java KListViewItem.cpp KListViewItem.h KArchive.cpp KArchive.h KTar.cpp KTar.h KArchiveDirectory.cpp KSSLPKCS12.cpp KArchiveDirectory.h KSSLPKCS12.h KArchiveEntry.cpp KArchiveFile.cpp KArchiveEntry.h KArchiveFile.h KDialogBase.cpp KFileMetaInfo.cpp KFileMetaInfo.h KFileMetaInfoItem.cpp KFileMetaInfoItem.h KGuiItem.cpp KGuiItem.h KIconViewItem.cpp KIconViewItem.h KStdGuiItem.cpp KStdGuiItem.h KDataTool.cpp KDataToolAction.cpp KDataToolInfo.cpp KDateWidget.cpp KDirSelectDialog.cpp KEMailSettings.cpp KFileFilterCombo.cpp KFileTreeBranch.cpp KFileTreeView.cpp KFileTreeViewItem.cpp KFileTreeViewToolTip.cpp KMultipleDrag.cpp KWordWrap.cpp KDataTool.h KDataToolAction.h KDataToolInfo.h KDateWidget.h KDirSelectDialog.h KFileTreeBranch.h KFileTreeView.h KFileTreeViewItem.h KFileTreeViewToolTip.h KEMailSettings.h KFileFilterCombo.h KMultipleDrag.h KWordWrap.h KShortcut.cpp KKey.cpp KKey.h KShortcut.h KIO.cpp KIO.h Scheduler.cpp Scheduler.h StatusbarProgress.cpp StatusbarProgress.h ProgressBase.cpp ProgressBase.h KKeySequence.cpp KKeySequence.h KDockMainWindow.cpp KDockMainWindow.h KDockManager.cpp KDockManager.h KDockTabGroup.cpp KDockTabGroup.h KDockWidget.cpp KDockWidget.h KURLPixmapProvider.cpp KURLPixmapProvider.h KColor.cpp KColor.h KColorCells.cpp KColorCells.h KColorDialog.cpp KColorDialog.h KColorPatch.cpp KColorPatch.h KHSSelector.cpp KHSSelector.h KPaletteTable.cpp KPaletteTable.h KValueSelector.cpp KValueSelector.h KDE.cpp KDE.h KSSLCertDlgRet.cpp KSSLCertDlgRet.h KListAction.cpp KListAction.h KRecentFilesAction.cpp KRecentFilesAction.h KArrowButton.cpp KArrowButton.h KDateTimeWidget.cpp KDateTimeWidget.h KFind.cpp KFindDialog.cpp KFindDialog.h KFind.h KMultiTabBarButton.cpp KMultiTabBarButton.h KMultiTabBar.cpp KMultiTabBar.h KMultiTabBarTab.cpp KMultiTabBarTab.h KPrintAction.cpp KPrintAction.h KProgressDialog.cpp KProgressDialog.h KReplace.cpp KReplaceDialog.cpp KReplaceDialog.h KReplace.h AbstractView.cpp AbstractView.h CSSRule.cpp CSSRule.h CSSRuleList.cpp CSSRuleList.h CustomNodeFilter.cpp CustomNodeFilter.h DavJob.cpp DavJob.h Document.cpp Document.h DomShared.cpp DomShared.h EventListener.cpp EventListener.h KCalendarSystem.cpp KCalendarSystem.h KFileMetaInfoGroup.cpp KFileMetaInfoGroup.h KMimeSourceFactory.cpp KMimeSourceFactory.h KSharedConfig.cpp KSharedConfig.h KShortcutList.cpp KShortcutList.h KSSLCertBox.h KSSLCertBox.java KSSLCertChain.cpp KSSLCertChain.h KSSLSession.cpp KSSLSession.h KSSLX509V3.cpp KSSLX509V3.h KToggleFullScreenAction.cpp KToggleFullScreenAction.h KURLBar.cpp KURLBar.h KURLBarItem.cpp KURLBarItem.h KURLBarListBox.cpp KURLBarListBox.h MetaInfoJob.cpp MetaInfoJob.h Node.cpp Node.h PreviewJob.cpp PreviewJob.h UIEvent.cpp UIEvent.h KCatalogue.cpp KCatalogue.h KDoubleValidator.cpp KDoubleValidator.h KKeyButton.cpp KKeyButton.h KMdiToolViewAccessor.cpp KMdiToolViewAccessor.h KMdiChildArea.cpp KMdiChildArea.h KMdiChildFrmCaption.cpp KMdiChildFrmCaption.h KMdiChildFrm.cpp KMdiChildFrmDragBeginEvent.cpp KMdiChildFrmDragBeginEvent.h KMdiChildFrmDragEndEvent.cpp KMdiChildFrmDragEndEvent.h KMdiChildFrm.h KMdiChildFrmMoveEvent.cpp KMdiChildFrmMoveEvent.h KMdiChildFrmResizeBeginEvent.cpp KMdiChildFrmResizeBeginEvent.h KMdiChildFrmResizeEndEvent.cpp KMdiChildFrmResizeEndEvent.h KMdiChildView.cpp KMdiChildView.h KMdi.cpp KMdi.h KMdiMainFrm.cpp KMdiMainFrm.h KMdiTaskBarButton.cpp KMdiTaskBarButton.h KMdiTaskBar.cpp KMdiTaskBar.h KMdiViewCloseEvent.cpp KMdiViewCloseEvent.h KMdiWin32IconButton.cpp KMdiWin32IconButton.h KPasteTextAction.cpp KPasteTextAction.h KStringListValidator.cpp KStringListValidator.h KTabBar.cpp KTabBar.h KTabWidget.cpp KTabWidget.h KTextEdit.cpp KTextEdit.h KTimeWidget.cpp KTimeWidget.h KToggleToolBarAction.cpp KToggleToolBarAction.h KURLComboRequester.cpp KURLComboRequester.h DefaultProgress.h SlaveBase.h DefaultProgress.cpp KEdit.cpp KEdit.h KFloatValidator.cpp KFloatValidator.h KMimeMagic.cpp KMimeMagic.h KMimeMagicResult.cpp KMimeMagicResult.h KShellProcess.cpp KShellProcess.h SlaveBase.cpp SlaveInterface.cpp SlaveInterface.h AuthInfo.cpp KBufferedIO.cpp KDirLister.cpp RenameDlg.cpp Observer.cpp KAsyncIO.cpp AuthInfo.h KAsyncIO.h KBufferedIO.h KDirLister.h Observer.h RenameDlg.h KInputDialog.cpp KInputDialog.h CSSCharsetRule.cpp CSSCharsetRule.h CSSFontFaceRule.cpp CSSFontFaceRule.h CSSImportRule.cpp CSSImportRule.h CSSMediaRule.cpp CSSMediaRule.h CSSPageRule.cpp CSSPageRule.h CSSStyleRule.cpp CSSStyleRule.h CSSUnknownRule.cpp CSSUnknownRule.h CSSValueList.cpp CSSValueList.h DOMException.cpp DOMException.h DOMImplementation.cpp DOMImplementation.h Entity.cpp Entity.h EventException.cpp EventException.h Factory.cpp Factory.h HistoryProvider.cpp HistoryProvider.h HTMLFormCollection.cpp HTMLFormCollection.h KAccelShortcutList.cpp KAccelShortcutList.h KActionShortcutList.cpp KActionShortcutList.h KActiveLabel.cpp KActiveLabel.h KAr.cpp KAr.h KCalendarSystemFactory.cpp KCalendarSystemFactory.h TDECModuleInfo.cpp TDECModuleInfo.h TDECModuleLoader.cpp TDECModuleLoader.h KCMultiDialog.cpp KCMultiDialog.h TDEConfigGroup.cpp TDEConfigGroup.h KCPUInfo.cpp KCPUInfo.h KCustomMenuEditor.cpp KCustomMenuEditor.h KDCOPServiceStarter.cpp KDCOPServiceStarter.h KDiskFreeSp.cpp KDiskFreeSp.h KDockArea.cpp KDockArea.h KFilePlugin.cpp KFilePlugin.h KFileShare.cpp KFileShare.h KFontRequester.cpp KFontRequester.h KIDNA.cpp KIDNA.h KKeyNative.cpp KKeyNative.h KMD5.cpp KMD5.h KMimeTypeResolverBase.cpp KMimeTypeResolverBase.h KMimeTypeResolverHelper.cpp KMimeTypeResolverHelper.h KMimeTypeValidator.cpp KMimeTypeValidator.h KMountPoint.cpp KMountPoint.h KOCRDialog.cpp KOCRDialog.h KPanelAppMenu.cpp KPanelAppMenu.h KPassivePopup.cpp KPassivePopup.h KPluginSelector.cpp KPluginSelector.h KRegExpEditorInterface.cpp KRegExpEditorInterface.h KServiceSeparator.cpp KServiceSeparator.h KShell.cpp KShell.h KSimpleFileFilter.cpp KSimpleFileFilter.h KSMIMECrypto.cpp KSMIMECrypto.h KSpellingHighlighter.cpp KSpellingHighlighter.h KSSLCertDlg.cpp KSSLCertDlg.h KSSLCertificateCache.cpp KSSLCertificateCache.h KSSLCertificateFactory.cpp KSSLCertificateFactory.h KSSLKeyGen.cpp KSSLKeyGen.h KSSLPKCS7.cpp KSSLPKCS7.h KSSLSigners.cpp KSSLSigners.h KSyntaxHighlighter.cpp KSyntaxHighlighter.h KTempDir.cpp KTempDir.h KURLBarItemDialog.cpp KURLBarItemDialog.h KWidgetAction.cpp KWidgetAction.h KWindowInfo.cpp KWindowInfo.h KXMLGUI.cpp KXMLGUI.h KZip.cpp KZipFileEntry.cpp KZipFileEntry.h KZip.h LinkStyle.cpp LinkStyle.h LiveConnectExtension.cpp LiveConnectExtension.h MultiGetJob.cpp MultiGetJob.h MutationEvent.cpp MutationEvent.h Notation.cpp Notation.h PartBase.cpp PartBase.h PasswordDialog.cpp PasswordDialog.h Plugin.cpp Plugin.h RangeException.cpp RangeException.h SessionData.cpp SessionData.h SkipDlg.cpp SkipDlg.h StatusBarExtension.cpp StatusBarExtension.h TextEvent.cpp TextEvent.h KSSLCertBox.cpp KNamedCommand.cpp KNamedCommand.h PartManager.cpp PartManager.h URLArgs.cpp UrlArgs.h WindowArgs.cpp WindowArgs.h BrowserHostExtension.cpp BrowserHostExtension.h BrowserRun.cpp BrowserRun.h StoredTransferJob.cpp StoredTransferJob.h +EXTRA_DIST = BrowserExtension.h DCOPClient.h DCOPObject.h DCOPObjectInterface.h DCOPObjectProxy.h KAboutApplication.h KAboutContainer.h TDEAboutData.h KAboutDialog.h KAboutKDE.h KAboutPerson.h KAboutWidget.h KAccel.h KAction.h KActionCollection.h KActionMenu.h KActionSeparator.h KAnimWidget.h TDEApplication.h KAudioPlayer.h KAuthIcon.h KBugReport.h KButtonBox.h TDECModule.h KCharSelect.h KCharSelectTable.h KCharsets.h TDECmdLineArgs.h KColorButton.h KColorCombo.h KColorDrag.h KCombiView.h KComboBox.h KCompletion.h KCompletionBase.h KCompletionBaseInterface.h TDEConfig.h TDEConfigBackEnd.h TDEConfigBase.h TDEConfigGroupSaver.h TDEConfigINIBackEnd.h KContextMenuManager.h KCursor.h KDCOPActionProxy.h KDCOPPropertyProxy.h KDEDesktopMimeType.h KDateInternalMonthPicker.h KDateInternalYearSelector.h KDatePicker.h KDateTable.h KDateValidator.h KDesktopFile.h KDialog.h KDialogBase.h KDirOperator.h KDirWatch.h KDockWidgetAbstractHeader.h KDockWidgetAbstractHeaderDrag.h KDockWidgetHeader.h KDockWidgetHeaderDrag.h KDoubleNumInput.h KDualColorButton.h KEdFind.h KEdGotoLine.h KEdReplace.h KEditToolbar.h KEditToolbarWidget.h KEntry.h KEntryKey.h KExecMimeType.h KFile.h KFileDetailView.h KFileDialog.h KFileFilter.h KFileIconView.h KFileIconViewItem.h KFileItem.h KFileListViewItem.h KFilePreview.h KFileView.h KFileViewInterface.h KFileViewSignaler.h KFolderType.h KFontAction.h KFontChooser.h KFontDialog.h KFontSizeAction.h TDEGlobal.h TDEGlobalAccel.h TDEGlobalSettings.h KGradientSelector.h KHTMLPart.h KHTMLSettings.h KHTMLView.h KHelpMenu.h KHistoryCombo.h KIPC.h KIconButton.h KIconCanvas.h KIconDialog.h KIconEffect.h KIconLoader.h KIconView.h KImageEffect.h KImageIO.h TDEInstance.h TDEInstanceInterface.h KIntNumInput.h KIntSpinBox.h KIntValidator.h KJanusWidget.h KKeyChooser.h KKeyDialog.h KLed.h KLibFactory.h KLibLoader.h KLineEdit.h KListBox.h KListView.h KLocale.h KMainWindow.h KMenuBar.h KMessageBox.h KMimeType.h KNotifyClient.h KNumInput.h KOpenWithDlg.h KPalette.h KPanelApplet.h KPanelMenu.h KPasswordDialog.h KPasswordEdit.h KPixmap.h KPixmapEffect.h KPixmapIO.h KPixmapProvider.h KPopupFrame.h KPopupMenu.h KPopupTitle.h KProcIO.h TDEProcess.h TDEProcessController.h TDEProcessRunner.h KProgress.h KProtocolInfo.h KProtocolManager.h KRFCDate.h KRadioAction.h KRandomSequence.h KRecentDocument.h KRestrictedLine.h KRootPermsIcon.h KRootPixmap.h KRootProp.h KRuler.h KRun.h KSSL.h KSSLCertificate.h KSSLCertificateHome.h KSSLConnectionInfo.h KSSLInfoDlg.h KSSLPeerInfo.h KSSLSettings.h KSSLX509Map.h KSaveFile.h KSelectAction.h KSelector.h KSeparator.h KService.h KServiceGroup.h KServiceOffer.h KServiceType.h KServiceTypeProfile.h KSessionManaged.h KShared.h KShellCompletion.h KShred.h KSimpleConfig.h KSpell.h KSpellConfig.h KSpellDlg.h KStandardDirs.h KStaticDeleterBase.h KStatusBar.h KStatusBarLabel.h KStdAccel.h KStdAction.h KStringHandler.h KSycoca.h KSycocaEntry.h KSystemTray.h KTabCtl.h KTempFile.h KTextBrowser.h KToggleAction.h KToolBar.h KToolBarButton.h KToolBarRadioGroup.h KToolBarSeparator.h KTrader.h KURIFilter.h KURIFilterData.h KURIFilterPlugin.h KURL.h KURLComboBox.h KURLCompletion.h KURLDrag.h KURLLabel.h KURLRequester.h KURLRequesterDlg.h KUniqueApplication.h KWizard.h KWritePermsIcon.h KXMLGUIBuilder.h KXMLGUIBuilderInterface.h KXMLGUIClient.h KXMLGUIClientInterface.h KXMLGUIFactory.h KXYSelector.h Part.h PartBaseInterface.h ReadOnlyPart.h BrowserExtension.cpp DCOPClient.cpp DCOPObject.cpp DCOPObjectProxy.cpp KAboutApplication.cpp KAboutContainer.cpp TDEAboutData.cpp KAboutDialog.cpp KAboutKDE.cpp KAboutPerson.cpp KAboutWidget.cpp KAccel.cpp KAction.cpp KActionCollection.cpp KActionMenu.cpp KActionSeparator.cpp KAnimWidget.cpp TDEApplication.cpp KAudioPlayer.cpp KAuthIcon.cpp KBugReport.cpp KButtonBox.cpp TDECModule.cpp KCharSelect.cpp KCharSelectTable.cpp KCharsets.cpp TDECmdLineArgs.cpp KColorButton.cpp KColorCombo.cpp KColorDrag.cpp KCombiView.cpp KComboBox.cpp KCompletion.cpp KCompletionBase.cpp TDEConfig.cpp TDEConfigBackEnd.cpp TDEConfigBase.cpp TDEConfigGroupSaver.cpp TDEConfigINIBackEnd.cpp KContextMenuManager.cpp KCursor.cpp KDCOPActionProxy.cpp KDCOPPropertyProxy.cpp KDEDesktopMimeType.cpp KDatePicker.cpp KDateTable.cpp KDateValidator.cpp KDesktopFile.cpp KDialog.cpp KDirOperator.cpp KDirWatch.cpp KDockWidgetAbstractHeader.cpp KDockWidgetAbstractHeaderDrag.cpp KDockWidgetHeader.cpp KDockWidgetHeaderDrag.cpp KDoubleNumInput.cpp KDualColorButton.cpp KEdFind.cpp KEdGotoLine.cpp KEdReplace.cpp KEditToolbar.cpp KEditToolbarWidget.cpp KEntry.cpp KEntryKey.cpp KExecMimeType.cpp KFile.cpp KFileDetailView.cpp KFileDialog.cpp KFileFilter.cpp KFileIconView.cpp KFileIconViewItem.cpp KFileItem.cpp KFileListViewItem.cpp KFilePreview.cpp KFileView.cpp KFileViewSignaler.cpp KFolderType.cpp KFontAction.cpp KFontChooser.cpp KFontDialog.cpp KFontSizeAction.cpp TDEGlobal.cpp TDEGlobalAccel.cpp TDEGlobalSettings.cpp KGradientSelector.cpp KHTMLPart.cpp KHTMLSettings.cpp KHTMLView.cpp KHelpMenu.cpp KHistoryCombo.cpp KIPC.cpp KIconButton.cpp KIconCanvas.cpp KIconDialog.cpp KIconEffect.cpp KIconLoader.cpp KIconView.cpp KImageEffect.cpp KImageIO.cpp TDEInstance.cpp KIntNumInput.cpp KIntSpinBox.cpp KIntValidator.cpp KJanusWidget.cpp KKeyChooser.cpp KKeyDialog.cpp KLed.cpp KLibFactory.cpp KLibLoader.cpp KLineEdit.cpp KListBox.cpp KListView.cpp KLocale.cpp KMainWindow.cpp KMenuBar.cpp KMessageBox.cpp KMimeType.cpp KNotifyClient.cpp KNumInput.cpp KOpenWithDlg.cpp KPalette.cpp KPanelApplet.cpp KPanelMenu.cpp KPasswordDialog.cpp KPasswordEdit.cpp KPixmap.cpp KPixmapEffect.cpp KPixmapIO.cpp KPixmapProvider.cpp KPopupFrame.cpp KPopupMenu.cpp KPopupTitle.cpp KProcIO.cpp TDEProcess.cpp TDEProcessController.cpp TDEProcessRunner.cpp KProgress.cpp KProtocolInfo.cpp KProtocolManager.cpp KRFCDate.cpp KRadioAction.cpp KRandomSequence.cpp KRecentDocument.cpp KRestrictedLine.cpp KRootPermsIcon.cpp KRootPixmap.cpp KRootProp.cpp KRuler.cpp KRun.cpp KSSL.cpp KSSLCertificate.cpp KSSLCertificateHome.cpp KSSLConnectionInfo.cpp KSSLInfoDlg.cpp KSSLPeerInfo.cpp KSSLSettings.cpp KSSLX509Map.cpp KSaveFile.cpp KSelectAction.cpp KSelector.cpp KSeparator.cpp KService.cpp KServiceGroup.cpp KServiceOffer.cpp KServiceType.cpp KServiceTypeProfile.cpp KSessionManaged.cpp KShared.cpp KShellCompletion.cpp KShred.cpp KSimpleConfig.cpp KSpell.cpp KSpellConfig.cpp KSpellDlg.cpp KStandardDirs.cpp KStaticDeleterBase.cpp KStatusBar.cpp KStatusBarLabel.cpp KStdAccel.cpp KStdAction.cpp KStringHandler.cpp KSycoca.cpp KSycocaEntry.cpp KSystemTray.cpp KTabCtl.cpp KTempFile.cpp KTextBrowser.cpp KToggleAction.cpp KToolBar.cpp KToolBarButton.cpp KToolBarRadioGroup.cpp KToolBarSeparator.cpp KTrader.cpp KURIFilter.cpp KURIFilterData.cpp KURIFilterPlugin.cpp KURL.cpp KURLComboBox.cpp KURLCompletion.cpp KURLDrag.cpp KURLLabel.cpp KURLRequester.cpp KURLRequesterDlg.cpp KUniqueApplication.cpp KWizard.cpp KWritePermsIcon.cpp KXMLGUIBuilder.cpp KXMLGUIClient.cpp KXMLGUIFactory.cpp KXYSelector.cpp Part.cpp ReadOnlyPart.cpp NetAccess.cpp NetAccess.h KDESupport.cpp Event.cpp GUIActivateEvent.cpp MouseEvent.cpp OpenURLEvent.cpp PartActivateEvent.cpp PartSelectEvent.cpp ReadWritePart.cpp DocumentFragment.cpp DocumentStyle.cpp DocumentType.cpp HTMLDocument.cpp NamedNodeMap.cpp CSSStyleSheet.cpp StyleSheet.cpp CSSException.cpp CSSPrimitiveValue.cpp CSSStyleDeclaration.cpp CSSValue.cpp Counter.cpp RGBColor.cpp Rect.cpp Element.cpp HTMLAnchorElement.cpp HTMLAppletElement.cpp HTMLAreaElement.cpp HTMLBRElement.cpp HTMLBaseElement.cpp HTMLBaseFontElement.cpp HTMLBlockquoteElement.cpp HTMLBodyElement.cpp HTMLButtonElement.cpp HTMLCollection.cpp HTMLDListElement.cpp HTMLDirectoryElement.cpp HTMLDivElement.cpp HTMLElement.cpp HTMLFieldSetElement.cpp HTMLFontElement.cpp HTMLFormElement.cpp HTMLFrameElement.cpp HTMLFrameSetElement.cpp HTMLHRElement.cpp HTMLHeadElement.cpp HTMLHeadingElement.cpp HTMLHtmlElement.cpp HTMLIFrameElement.cpp HTMLImageElement.cpp HTMLInputElement.cpp HTMLIsIndexElement.cpp HTMLLIElement.cpp HTMLLabelElement.cpp HTMLLegendElement.cpp HTMLLinkElement.cpp HTMLMapElement.cpp HTMLMenuElement.cpp HTMLMetaElement.cpp HTMLModElement.cpp HTMLOListElement.cpp HTMLObjectElement.cpp HTMLOptGroupElement.cpp HTMLOptionElement.cpp HTMLParagraphElement.cpp HTMLParamElement.cpp HTMLPreElement.cpp HTMLQuoteElement.cpp HTMLScriptElement.cpp HTMLSelectElement.cpp HTMLStyleElement.cpp HTMLTableCaptionElement.cpp HTMLTableCellElement.cpp HTMLTableColElement.cpp HTMLTableElement.cpp HTMLTableRowElement.cpp HTMLTableSectionElement.cpp HTMLTextAreaElement.cpp HTMLTitleElement.cpp HTMLUListElement.cpp Attr.cpp Attr.h CSSException.h CSSPrimitiveValue.h CSSStyleDeclaration.h CSSStyleSheet.h CSSValue.h Counter.h DocumentFragment.h DocumentStyle.h DocumentType.h Element.h Event.h GUIActivateEvent.h HTMLAnchorElement.h HTMLAppletElement.h HTMLAreaElement.h HTMLBRElement.h HTMLBaseElement.h HTMLBaseFontElement.h HTMLBlockquoteElement.h HTMLBodyElement.h HTMLButtonElement.h HTMLCollection.h HTMLDListElement.h HTMLDirectoryElement.h HTMLDivElement.h HTMLDocument.h HTMLElement.h HTMLFieldSetElement.h HTMLFontElement.h HTMLFormElement.h HTMLFrameElement.h HTMLFrameSetElement.h HTMLHRElement.h HTMLHeadElement.h HTMLHeadingElement.h HTMLHtmlElement.h HTMLIFrameElement.h HTMLImageElement.h HTMLInputElement.h HTMLIsIndexElement.h HTMLLIElement.h HTMLLabelElement.h HTMLLegendElement.h HTMLLinkElement.h HTMLMapElement.h HTMLMenuElement.h HTMLMetaElement.h HTMLModElement.h HTMLOListElement.h HTMLObjectElement.h HTMLOptGroupElement.h HTMLOptionElement.h HTMLParagraphElement.h HTMLParamElement.h HTMLPreElement.h HTMLQuoteElement.h HTMLScriptElement.h HTMLSelectElement.h HTMLStyleElement.h HTMLTableCaptionElement.h HTMLTableCellElement.h HTMLTableColElement.h HTMLTableElement.h HTMLTableRowElement.h HTMLTableSectionElement.h HTMLTextAreaElement.h HTMLTitleElement.h HTMLUListElement.h MouseEvent.h NamedNodeMap.h OpenURLEvent.h PartActivateEvent.h PartSelectEvent.h RGBColor.h ReadWritePart.h Rect.h StyleSheet.h DockMainWindow.cpp MainWindow.cpp DockMainWindow.h MainWindow.h CDATASection.cpp Comment.cpp EntityReference.cpp NodeFilter.cpp NodeIterator.cpp ProcessingInstruction.cpp Range.cpp Text.cpp TreeWalker.cpp CharacterData.cpp CDATASection.h CharacterData.h Comment.h EntityReference.h NodeFilter.h NodeIterator.h ProcessingInstruction.h Range.h Text.h TreeWalker.h CopyJob.cpp DeleteJob.cpp FileCopyJob.cpp Job.cpp KDirNotify.cpp KDirSize.cpp ListJob.cpp MimetypeJob.cpp SimpleJob.cpp StatJob.cpp TransferJob.cpp Connection.cpp Slave.cpp Connection.h CopyJob.h DeleteJob.h FileCopyJob.h Job.h KDirNotify.h KDirSize.h ListJob.h MimetypeJob.h SimpleJob.h Slave.h StatJob.h TransferJob.h KAboutContributor.cpp KAboutContributor.h KAboutTranslator.cpp KAboutTranslator.h KCodecs.cpp KCodecs.h KCommand.cpp KCommand.h KCommandHistory.cpp KCommandHistory.h KCompletionBox.cpp KCompletionBox.h KDialogQueue.cpp KDialogQueue.h KEditListBox.cpp KEditListBox.h KFilterBase.cpp KFilterBase.h KFilterDev.cpp KFilterDev.h KFontCombo.cpp KFontCombo.h KMacroCommand.cpp KMacroCommand.h KPanelExtension.cpp KPanelExtension.h KPixmapSplitter.cpp KPixmapSplitter.h KPreviewWidgetBase.cpp KPreviewWidgetBase.h KPushButton.cpp KPushButton.h KScanDialog.cpp KScanDialog.h KSqueezedTextLabel.cpp KSqueezedTextLabel.h KToolBarPopupAction.cpp KToolBarPopupAction.h KDEJavaSlot.cpp KDEJavaSlot.h KTipDatabase.cpp KTipDialog.cpp KTipDatabase.h KTipDialog.h ASConsumer.java KListViewItem.cpp KListViewItem.h KArchive.cpp KArchive.h KTar.cpp KTar.h KArchiveDirectory.cpp KSSLPKCS12.cpp KArchiveDirectory.h KSSLPKCS12.h KArchiveEntry.cpp KArchiveFile.cpp KArchiveEntry.h KArchiveFile.h KDialogBase.cpp KFileMetaInfo.cpp KFileMetaInfo.h KFileMetaInfoItem.cpp KFileMetaInfoItem.h KGuiItem.cpp KGuiItem.h KIconViewItem.cpp KIconViewItem.h KStdGuiItem.cpp KStdGuiItem.h KDataTool.cpp KDataToolAction.cpp KDataToolInfo.cpp KDateWidget.cpp KDirSelectDialog.cpp KEMailSettings.cpp KFileFilterCombo.cpp KFileTreeBranch.cpp KFileTreeView.cpp KFileTreeViewItem.cpp KFileTreeViewToolTip.cpp KMultipleDrag.cpp KWordWrap.cpp KDataTool.h KDataToolAction.h KDataToolInfo.h KDateWidget.h KDirSelectDialog.h KFileTreeBranch.h KFileTreeView.h KFileTreeViewItem.h KFileTreeViewToolTip.h KEMailSettings.h KFileFilterCombo.h KMultipleDrag.h KWordWrap.h KShortcut.cpp KKey.cpp KKey.h KShortcut.h KIO.cpp KIO.h Scheduler.cpp Scheduler.h StatusbarProgress.cpp StatusbarProgress.h ProgressBase.cpp ProgressBase.h KKeySequence.cpp KKeySequence.h KDockMainWindow.cpp KDockMainWindow.h KDockManager.cpp KDockManager.h KDockTabGroup.cpp KDockTabGroup.h KDockWidget.cpp KDockWidget.h KURLPixmapProvider.cpp KURLPixmapProvider.h KColor.cpp KColor.h KColorCells.cpp KColorCells.h KColorDialog.cpp KColorDialog.h KColorPatch.cpp KColorPatch.h KHSSelector.cpp KHSSelector.h KPaletteTable.cpp KPaletteTable.h KValueSelector.cpp KValueSelector.h KDE.cpp KDE.h KSSLCertDlgRet.cpp KSSLCertDlgRet.h KListAction.cpp KListAction.h KRecentFilesAction.cpp KRecentFilesAction.h KArrowButton.cpp KArrowButton.h KDateTimeWidget.cpp KDateTimeWidget.h KFind.cpp KFindDialog.cpp KFindDialog.h KFind.h KMultiTabBarButton.cpp KMultiTabBarButton.h KMultiTabBar.cpp KMultiTabBar.h KMultiTabBarTab.cpp KMultiTabBarTab.h KPrintAction.cpp KPrintAction.h KProgressDialog.cpp KProgressDialog.h KReplace.cpp KReplaceDialog.cpp KReplaceDialog.h KReplace.h AbstractView.cpp AbstractView.h CSSRule.cpp CSSRule.h CSSRuleList.cpp CSSRuleList.h CustomNodeFilter.cpp CustomNodeFilter.h DavJob.cpp DavJob.h Document.cpp Document.h DomShared.cpp DomShared.h EventListener.cpp EventListener.h KCalendarSystem.cpp KCalendarSystem.h KFileMetaInfoGroup.cpp KFileMetaInfoGroup.h KMimeSourceFactory.cpp KMimeSourceFactory.h KSharedConfig.cpp KSharedConfig.h KShortcutList.cpp KShortcutList.h KSSLCertBox.h KSSLCertBox.java KSSLCertChain.cpp KSSLCertChain.h KSSLSession.cpp KSSLSession.h KSSLX509V3.cpp KSSLX509V3.h KToggleFullScreenAction.cpp KToggleFullScreenAction.h KURLBar.cpp KURLBar.h KURLBarItem.cpp KURLBarItem.h KURLBarListBox.cpp KURLBarListBox.h MetaInfoJob.cpp MetaInfoJob.h Node.cpp Node.h PreviewJob.cpp PreviewJob.h UIEvent.cpp UIEvent.h KCatalogue.cpp KCatalogue.h KDoubleValidator.cpp KDoubleValidator.h KKeyButton.cpp KKeyButton.h KMdiToolViewAccessor.cpp KMdiToolViewAccessor.h KMdiChildArea.cpp KMdiChildArea.h KMdiChildFrmCaption.cpp KMdiChildFrmCaption.h KMdiChildFrm.cpp KMdiChildFrmDragBeginEvent.cpp KMdiChildFrmDragBeginEvent.h KMdiChildFrmDragEndEvent.cpp KMdiChildFrmDragEndEvent.h KMdiChildFrm.h KMdiChildFrmMoveEvent.cpp KMdiChildFrmMoveEvent.h KMdiChildFrmResizeBeginEvent.cpp KMdiChildFrmResizeBeginEvent.h KMdiChildFrmResizeEndEvent.cpp KMdiChildFrmResizeEndEvent.h KMdiChildView.cpp KMdiChildView.h KMdi.cpp KMdi.h KMdiMainFrm.cpp KMdiMainFrm.h KMdiTaskBarButton.cpp KMdiTaskBarButton.h KMdiTaskBar.cpp KMdiTaskBar.h KMdiViewCloseEvent.cpp KMdiViewCloseEvent.h KMdiWin32IconButton.cpp KMdiWin32IconButton.h KPasteTextAction.cpp KPasteTextAction.h KStringListValidator.cpp KStringListValidator.h KTabBar.cpp KTabBar.h KTabWidget.cpp KTabWidget.h KTextEdit.cpp KTextEdit.h KTimeWidget.cpp KTimeWidget.h KToggleToolBarAction.cpp KToggleToolBarAction.h KURLComboRequester.cpp KURLComboRequester.h DefaultProgress.h SlaveBase.h DefaultProgress.cpp KEdit.cpp KEdit.h KFloatValidator.cpp KFloatValidator.h KMimeMagic.cpp KMimeMagic.h KMimeMagicResult.cpp KMimeMagicResult.h KShellProcess.cpp KShellProcess.h SlaveBase.cpp SlaveInterface.cpp SlaveInterface.h AuthInfo.cpp TDEBufferedIO.cpp KDirLister.cpp RenameDlg.cpp Observer.cpp KAsyncIO.cpp AuthInfo.h KAsyncIO.h TDEBufferedIO.h KDirLister.h Observer.h RenameDlg.h KInputDialog.cpp KInputDialog.h CSSCharsetRule.cpp CSSCharsetRule.h CSSFontFaceRule.cpp CSSFontFaceRule.h CSSImportRule.cpp CSSImportRule.h CSSMediaRule.cpp CSSMediaRule.h CSSPageRule.cpp CSSPageRule.h CSSStyleRule.cpp CSSStyleRule.h CSSUnknownRule.cpp CSSUnknownRule.h CSSValueList.cpp CSSValueList.h DOMException.cpp DOMException.h DOMImplementation.cpp DOMImplementation.h Entity.cpp Entity.h EventException.cpp EventException.h Factory.cpp Factory.h HistoryProvider.cpp HistoryProvider.h HTMLFormCollection.cpp HTMLFormCollection.h KAccelShortcutList.cpp KAccelShortcutList.h KActionShortcutList.cpp KActionShortcutList.h KActiveLabel.cpp KActiveLabel.h KAr.cpp KAr.h KCalendarSystemFactory.cpp KCalendarSystemFactory.h TDECModuleInfo.cpp TDECModuleInfo.h TDECModuleLoader.cpp TDECModuleLoader.h KCMultiDialog.cpp KCMultiDialog.h TDEConfigGroup.cpp TDEConfigGroup.h KCPUInfo.cpp KCPUInfo.h KCustomMenuEditor.cpp KCustomMenuEditor.h KDCOPServiceStarter.cpp KDCOPServiceStarter.h KDiskFreeSp.cpp KDiskFreeSp.h KDockArea.cpp KDockArea.h KFilePlugin.cpp KFilePlugin.h KFileShare.cpp KFileShare.h KFontRequester.cpp KFontRequester.h KIDNA.cpp KIDNA.h KKeyNative.cpp KKeyNative.h KMD5.cpp KMD5.h KMimeTypeResolverBase.cpp KMimeTypeResolverBase.h KMimeTypeResolverHelper.cpp KMimeTypeResolverHelper.h KMimeTypeValidator.cpp KMimeTypeValidator.h KMountPoint.cpp KMountPoint.h KOCRDialog.cpp KOCRDialog.h KPanelAppMenu.cpp KPanelAppMenu.h KPassivePopup.cpp KPassivePopup.h KPluginSelector.cpp KPluginSelector.h KRegExpEditorInterface.cpp KRegExpEditorInterface.h KServiceSeparator.cpp KServiceSeparator.h KShell.cpp KShell.h KSimpleFileFilter.cpp KSimpleFileFilter.h KSMIMECrypto.cpp KSMIMECrypto.h KSpellingHighlighter.cpp KSpellingHighlighter.h KSSLCertDlg.cpp KSSLCertDlg.h KSSLCertificateCache.cpp KSSLCertificateCache.h KSSLCertificateFactory.cpp KSSLCertificateFactory.h KSSLKeyGen.cpp KSSLKeyGen.h KSSLPKCS7.cpp KSSLPKCS7.h KSSLSigners.cpp KSSLSigners.h KSyntaxHighlighter.cpp KSyntaxHighlighter.h KTempDir.cpp KTempDir.h KURLBarItemDialog.cpp KURLBarItemDialog.h KWidgetAction.cpp KWidgetAction.h KWindowInfo.cpp KWindowInfo.h KXMLGUI.cpp KXMLGUI.h KZip.cpp KZipFileEntry.cpp KZipFileEntry.h KZip.h LinkStyle.cpp LinkStyle.h LiveConnectExtension.cpp LiveConnectExtension.h MultiGetJob.cpp MultiGetJob.h MutationEvent.cpp MutationEvent.h Notation.cpp Notation.h PartBase.cpp PartBase.h PasswordDialog.cpp PasswordDialog.h Plugin.cpp Plugin.h RangeException.cpp RangeException.h SessionData.cpp SessionData.h SkipDlg.cpp SkipDlg.h StatusBarExtension.cpp StatusBarExtension.h TextEvent.cpp TextEvent.h KSSLCertBox.cpp KNamedCommand.cpp KNamedCommand.h PartManager.cpp PartManager.h URLArgs.cpp UrlArgs.h WindowArgs.cpp WindowArgs.h BrowserHostExtension.cpp BrowserHostExtension.h BrowserRun.cpp BrowserRun.h StoredTransferJob.cpp StoredTransferJob.h ####### tdevelop will overwrite this part!!! (end)############ diff --git a/kdejava/koala/kdejava/TDECModule.cpp b/kdejava/koala/kdejava/TDECModule.cpp new file mode 100644 index 00000000..e2c28135 --- /dev/null +++ b/kdejava/koala/kdejava/TDECModule.cpp @@ -0,0 +1,688 @@ +//Auto-generated by kalyptus. DO NOT EDIT. +#include +#include +#include + +#include +#include +#include + +class TDECModuleJBridge : public TDECModule +{ +public: + TDECModuleJBridge(TQWidget* arg1,const char* arg2,const TQStringList& arg3) : TDECModule(arg1,arg2,arg3) {}; + TDECModuleJBridge(TQWidget* arg1,const char* arg2) : TDECModule(arg1,arg2) {}; + TDECModuleJBridge(TQWidget* arg1) : TDECModule(arg1) {}; + TDECModuleJBridge() : TDECModule() {}; + TDECModuleJBridge(TDEInstance* arg1,TQWidget* arg2,const TQStringList& arg3) : TDECModule(arg1,arg2,arg3) {}; + TDECModuleJBridge(TDEInstance* arg1,TQWidget* arg2) : TDECModule(arg1,arg2) {}; + TDECModuleJBridge(TDEInstance* arg1) : TDECModule(arg1) {}; + void public_load() { + TDECModule::load(); + return; + } + void public_save() { + TDECModule::save(); + return; + } + void public_defaults() { + TDECModule::defaults(); + return; + } + void public_sysdefaults() { + TDECModule::sysdefaults(); + return; + } + void protected_setQuickHelp(const TQString& arg1) { + TDECModule::setQuickHelp(arg1); + return; + } + void protected_setButtons(int arg1) { + TDECModule::setButtons(arg1); + return; + } + void protected_setRootOnlyMsg(const TQString& arg1) { + TDECModule::setRootOnlyMsg(arg1); + return; + } + void protected_setUseRootOnlyMsg(bool arg1) { + TDECModule::setUseRootOnlyMsg(arg1); + return; + } + bool protected_managedWidgetChangeState() { + return (bool) TDECModule::managedWidgetChangeState(); + } + void protected_unmanagedWidgetChangeState(bool arg1) { + TDECModule::unmanagedWidgetChangeState(arg1); + return; + } + void protected_changed() { + TDECModule::changed(); + return; + } + void protected_widgetChanged() { + TDECModule::widgetChanged(); + return; + } + ~TDECModuleJBridge() {QtSupport::qtKeyDeleted(this);} + void load() { + if (!QtSupport::voidDelegate(this,"org.kde.koala.TDECModule","load")) { + TDECModule::load(); + } + return; + } + void dragLeaveEvent(TQDragLeaveEvent* arg1) { + if (!QtSupport::eventDelegate(this,"dragLeaveEvent",(void*)arg1,"org.kde.qt.TQDragLeaveEvent")) { + TQWidget::dragLeaveEvent(arg1); + } + return; + } + void setMask(const TQRegion& arg1) { + if (!QtSupport::eventDelegate(this,"setMask",(void*)&arg1,"org.kde.qt.TQRegion")) { + TQWidget::setMask(arg1); + } + return; + } + void resizeEvent(TQResizeEvent* arg1) { + if (!QtSupport::eventDelegate(this,"resizeEvent",(void*)arg1,"org.kde.qt.TQResizeEvent")) { + TQWidget::resizeEvent(arg1); + } + return; + } + void mouseDoubleClickEvent(TQMouseEvent* arg1) { + if (!QtSupport::eventDelegate(this,"mouseDoubleClickEvent",(void*)arg1,"org.kde.qt.TQMouseEvent")) { + TQWidget::mouseDoubleClickEvent(arg1); + } + return; + } + void paletteChange(const TQPalette& arg1) { + if (!QtSupport::eventDelegate(this,"paletteChange",(void*)&arg1,"org.kde.qt.TQPalette")) { + TQWidget::paletteChange(arg1); + } + return; + } + void sysdefaults() { + if (!QtSupport::voidDelegate(this,"org.kde.koala.TDECModule","sysdefaults")) { + TDECModule::sysdefaults(); + } + return; + } + void setActiveWindow() { + if (!QtSupport::voidDelegate(this,"org.kde.koala.TDECModule","setActiveWindow")) { + TQWidget::setActiveWindow(); + } + return; + } + void dragEnterEvent(TQDragEnterEvent* arg1) { + if (!QtSupport::eventDelegate(this,"dragEnterEvent",(void*)arg1,"org.kde.qt.TQDragEnterEvent")) { + TQWidget::dragEnterEvent(arg1); + } + return; + } + void show() { + if (!QtSupport::voidDelegate(this,"org.kde.koala.TDECModule","show")) { + TQWidget::show(); + } + return; + } + void focusOutEvent(TQFocusEvent* arg1) { + if (!QtSupport::eventDelegate(this,"focusOutEvent",(void*)arg1,"org.kde.qt.TQFocusEvent")) { + TQWidget::focusOutEvent(arg1); + } + return; + } + void setFocus() { + if (!QtSupport::voidDelegate(this,"org.kde.koala.TDECModule","setFocus")) { + TQWidget::setFocus(); + } + return; + } + void dragMoveEvent(TQDragMoveEvent* arg1) { + if (!QtSupport::eventDelegate(this,"dragMoveEvent",(void*)arg1,"org.kde.qt.TQDragMoveEvent")) { + TQWidget::dragMoveEvent(arg1); + } + return; + } + void styleChange(TQStyle& arg1) { + if (!QtSupport::eventDelegate(this,"styleChange",(void*)&arg1,"org.kde.qt.TQStyle")) { + TQWidget::styleChange(arg1); + } + return; + } + void hide() { + if (!QtSupport::voidDelegate(this,"org.kde.koala.TDECModule","hide")) { + TQWidget::hide(); + } + return; + } + void setPaletteBackgroundColor(const TQColor& arg1) { + if (!QtSupport::eventDelegate(this,"setPaletteBackgroundColor",(void*)&arg1,"org.kde.qt.TQColor")) { + TQWidget::setPaletteBackgroundColor(arg1); + } + return; + } + void setEraseColor(const TQColor& arg1) { + if (!QtSupport::eventDelegate(this,"setEraseColor",(void*)&arg1,"org.kde.qt.TQColor")) { + TQWidget::setEraseColor(arg1); + } + return; + } + void removeChild(TQObject* arg1) { + if (!QtSupport::eventDelegate(this,"removeChild",(void*)arg1,"org.kde.qt.TQObject")) { + TQObject::removeChild(arg1); + } + return; + } + void paintEvent(TQPaintEvent* arg1) { + if (!QtSupport::eventDelegate(this,"paintEvent",(void*)arg1,"org.kde.qt.TQPaintEvent")) { + TQWidget::paintEvent(arg1); + } + return; + } + void imStartEvent(TQIMEvent* arg1) { + if (!QtSupport::eventDelegate(this,"imStartEvent",(void*)arg1,"org.kde.qt.TQIMEvent")) { + TQWidget::imStartEvent(arg1); + } + return; + } + void unsetCursor() { + if (!QtSupport::voidDelegate(this,"org.kde.koala.TDECModule","unsetCursor")) { + TQWidget::unsetCursor(); + } + return; + } + void hideEvent(TQHideEvent* arg1) { + if (!QtSupport::eventDelegate(this,"hideEvent",(void*)arg1,"org.kde.qt.TQHideEvent")) { + TQWidget::hideEvent(arg1); + } + return; + } + void moveEvent(TQMoveEvent* arg1) { + if (!QtSupport::eventDelegate(this,"moveEvent",(void*)arg1,"org.kde.qt.TQMoveEvent")) { + TQWidget::moveEvent(arg1); + } + return; + } + void polish() { + if (!QtSupport::voidDelegate(this,"org.kde.koala.TDECModule","polish")) { + TQWidget::polish(); + } + return; + } + void showMaximized() { + if (!QtSupport::voidDelegate(this,"org.kde.koala.TDECModule","showMaximized")) { + TQWidget::showMaximized(); + } + return; + } + void setBackgroundPixmap(const TQPixmap& arg1) { + if (!QtSupport::eventDelegate(this,"setBackgroundPixmap",(void*)&arg1,"org.kde.qt.TQPixmap")) { + TQWidget::setBackgroundPixmap(arg1); + } + return; + } + void showEvent(TQShowEvent* arg1) { + if (!QtSupport::eventDelegate(this,"showEvent",(void*)arg1,"org.kde.qt.TQShowEvent")) { + TQWidget::showEvent(arg1); + } + return; + } + void keyPressEvent(TQKeyEvent* arg1) { + if (!QtSupport::eventDelegate(this,"keyPressEvent",(void*)arg1,"org.kde.qt.TQKeyEvent")) { + TQWidget::keyPressEvent(arg1); + } + return; + } + bool customWhatsThis() { + return QtSupport::booleanDelegate(this,"customWhatsThis"); + } + void setPaletteBackgroundPixmap(const TQPixmap& arg1) { + if (!QtSupport::eventDelegate(this,"setPaletteBackgroundPixmap",(void*)&arg1,"org.kde.qt.TQPixmap")) { + TQWidget::setPaletteBackgroundPixmap(arg1); + } + return; + } + void setCursor(const TQCursor& arg1) { + if (!QtSupport::eventDelegate(this,"setCursor",(void*)&arg1,"org.kde.qt.TQCursor")) { + TQWidget::setCursor(arg1); + } + return; + } + void closeEvent(TQCloseEvent* arg1) { + if (!QtSupport::eventDelegate(this,"closeEvent",(void*)arg1,"org.kde.qt.TQCloseEvent")) { + TQWidget::closeEvent(arg1); + } + return; + } + void customEvent(TQCustomEvent* arg1) { + if (!QtSupport::eventDelegate(this,"customEvent",(void*)arg1,"org.kde.qt.TQCustomEvent")) { + TQObject::customEvent(arg1); + } + return; + } + void enterEvent(TQEvent* arg1) { + if (!QtSupport::eventDelegate(this,"enterEvent",(void*)arg1,"org.kde.qt.TQEvent")) { + TQWidget::enterEvent(arg1); + } + return; + } + void timerEvent(TQTimerEvent* arg1) { + if (!QtSupport::eventDelegate(this,"timerEvent",(void*)arg1,"org.kde.qt.TQTimerEvent")) { + TQObject::timerEvent(arg1); + } + return; + } + void mouseReleaseEvent(TQMouseEvent* arg1) { + if (!QtSupport::eventDelegate(this,"mouseReleaseEvent",(void*)arg1,"org.kde.qt.TQMouseEvent")) { + TQWidget::mouseReleaseEvent(arg1); + } + return; + } + void setErasePixmap(const TQPixmap& arg1) { + if (!QtSupport::eventDelegate(this,"setErasePixmap",(void*)&arg1,"org.kde.qt.TQPixmap")) { + TQWidget::setErasePixmap(arg1); + } + return; + } + void childEvent(TQChildEvent* arg1) { + if (!QtSupport::eventDelegate(this,"childEvent",(void*)arg1,"org.kde.qt.TQChildEvent")) { + TQObject::childEvent(arg1); + } + return; + } + void dropEvent(TQDropEvent* arg1) { + if (!QtSupport::eventDelegate(this,"dropEvent",(void*)arg1,"org.kde.qt.TQDropEvent")) { + TQWidget::dropEvent(arg1); + } + return; + } + void leaveEvent(TQEvent* arg1) { + if (!QtSupport::eventDelegate(this,"leaveEvent",(void*)arg1,"org.kde.qt.TQEvent")) { + TQWidget::leaveEvent(arg1); + } + return; + } + void setIcon(const TQPixmap& arg1) { + if (!QtSupport::eventDelegate(this,"setIcon",(void*)&arg1,"org.kde.qt.TQPixmap")) { + TQWidget::setIcon(arg1); + } + return; + } + void updateMask() { + if (!QtSupport::voidDelegate(this,"org.kde.koala.TDECModule","updateMask")) { + TQWidget::updateMask(); + } + return; + } + void showNormal() { + if (!QtSupport::voidDelegate(this,"org.kde.koala.TDECModule","showNormal")) { + TQWidget::showNormal(); + } + return; + } + void imComposeEvent(TQIMEvent* arg1) { + if (!QtSupport::eventDelegate(this,"imComposeEvent",(void*)arg1,"org.kde.qt.TQIMEvent")) { + TQWidget::imComposeEvent(arg1); + } + return; + } + void mousePressEvent(TQMouseEvent* arg1) { + if (!QtSupport::eventDelegate(this,"mousePressEvent",(void*)arg1,"org.kde.qt.TQMouseEvent")) { + TQWidget::mousePressEvent(arg1); + } + return; + } + void mouseMoveEvent(TQMouseEvent* arg1) { + if (!QtSupport::eventDelegate(this,"mouseMoveEvent",(void*)arg1,"org.kde.qt.TQMouseEvent")) { + TQWidget::mouseMoveEvent(arg1); + } + return; + } + void save() { + if (!QtSupport::voidDelegate(this,"org.kde.koala.TDECModule","save")) { + TDECModule::save(); + } + return; + } + void setFocusProxy(TQWidget* arg1) { + if (!QtSupport::eventDelegate(this,"setFocusProxy",(void*)arg1,"org.kde.qt.TQWidget")) { + TQWidget::setFocusProxy(arg1); + } + return; + } + void fontChange(const TQFont& arg1) { + if (!QtSupport::eventDelegate(this,"fontChange",(void*)&arg1,"org.kde.qt.TQFont")) { + TQWidget::fontChange(arg1); + } + return; + } + void setBackgroundColor(const TQColor& arg1) { + if (!QtSupport::eventDelegate(this,"setBackgroundColor",(void*)&arg1,"org.kde.qt.TQColor")) { + TQWidget::setBackgroundColor(arg1); + } + return; + } + void adjustSize() { + if (!QtSupport::voidDelegate(this,"org.kde.koala.TDECModule","adjustSize")) { + TQWidget::adjustSize(); + } + return; + } + void wheelEvent(TQWheelEvent* arg1) { + if (!QtSupport::eventDelegate(this,"wheelEvent",(void*)arg1,"org.kde.qt.TQWheelEvent")) { + TQWidget::wheelEvent(arg1); + } + return; + } + void imEndEvent(TQIMEvent* arg1) { + if (!QtSupport::eventDelegate(this,"imEndEvent",(void*)arg1,"org.kde.qt.TQIMEvent")) { + TQWidget::imEndEvent(arg1); + } + return; + } + void insertChild(TQObject* arg1) { + if (!QtSupport::eventDelegate(this,"insertChild",(void*)arg1,"org.kde.qt.TQObject")) { + TQObject::insertChild(arg1); + } + return; + } + void focusInEvent(TQFocusEvent* arg1) { + if (!QtSupport::eventDelegate(this,"focusInEvent",(void*)arg1,"org.kde.qt.TQFocusEvent")) { + TQWidget::focusInEvent(arg1); + } + return; + } + void tabletEvent(TQTabletEvent* arg1) { + if (!QtSupport::eventDelegate(this,"tabletEvent",(void*)arg1,"org.kde.qt.TQTabletEvent")) { + TQWidget::tabletEvent(arg1); + } + return; + } + void defaults() { + if (!QtSupport::voidDelegate(this,"org.kde.koala.TDECModule","defaults")) { + TDECModule::defaults(); + } + return; + } + void keyReleaseEvent(TQKeyEvent* arg1) { + if (!QtSupport::eventDelegate(this,"keyReleaseEvent",(void*)arg1,"org.kde.qt.TQKeyEvent")) { + TQWidget::keyReleaseEvent(arg1); + } + return; + } + void contextMenuEvent(TQContextMenuEvent* arg1) { + if (!QtSupport::eventDelegate(this,"contextMenuEvent",(void*)arg1,"org.kde.qt.TQContextMenuEvent")) { + TQWidget::contextMenuEvent(arg1); + } + return; + } + bool eventFilter(TQObject* object,TQEvent* event) { + if (!QtSupport::eventFilterDelegate(this,"org.kde.koala.TDECModule",object,event)) { + return TQObject::eventFilter(object,event); + } else { + return TRUE; + } + } + void setGeometry(const TQRect& arg1) { + if (!QtSupport::eventDelegate(this,"setGeometry",(void*)&arg1,"org.kde.qt.TQRect")) { + TQWidget::setGeometry(arg1); + } + return; + } + void showMinimized() { + if (!QtSupport::voidDelegate(this,"org.kde.koala.TDECModule","showMinimized")) { + TQWidget::showMinimized(); + } + return; + } +}; + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_TDECModule_aboutData(JNIEnv* env, jobject obj) +{ + jobject xret = QtSupport::objectForQtKey(env, (void*)((TDECModule*) QtSupport::getQt(env, obj))->aboutData(), "org.kde.koala.TDEAboutData"); + return xret; +} + +JNIEXPORT jint JNICALL +Java_org_kde_koala_TDECModule_buttons(JNIEnv* env, jobject obj) +{ + jint xret = (jint) ((TDECModule*) QtSupport::getQt(env, obj))->buttons(); + return xret; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDECModule_changed(JNIEnv* env, jobject obj) +{ + ((TDECModuleJBridge*) QtSupport::getQt(env, obj))->protected_changed(); + return; +} + +JNIEXPORT jstring JNICALL +Java_org_kde_koala_TDECModule_className(JNIEnv* env, jobject obj) +{ + const char* _qstring; + _qstring = ((TDECModule*) QtSupport::getQt(env, obj))->className(); + return QtSupport::fromCharString(env, (char *) _qstring); +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDECModule_defaults(JNIEnv* env, jobject obj) +{ + ((TDECModuleJBridge*) QtSupport::getQt(env, obj))->public_defaults(); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDECModule_dispose(JNIEnv* env, jobject obj) +{ + Java_org_kde_koala_TDECModule_finalize(env, obj); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDECModule_finalize(JNIEnv* env, jobject obj) +{ + if (QtSupport::allocatedInJavaWorld(env, obj) && ((TQWidget*)(TDECModule*)QtSupport::getQt(env, obj))->parentWidget(TRUE) == 0) { + delete (TDECModule*)QtSupport::getQt(env, obj); + QtSupport::setQt(env, obj, 0); + } + return; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_TDECModule_instance(JNIEnv* env, jobject obj) +{ + jobject xret = QtSupport::objectForQtKey(env, (void*)((TDECModule*) QtSupport::getQt(env, obj))->instance(), "org.kde.koala.TDEInstanceInterface"); + return xret; +} + +JNIEXPORT jboolean JNICALL +Java_org_kde_koala_TDECModule_isDisposed(JNIEnv* env, jobject obj) +{ + return (QtSupport::getQt(env, obj) == 0); +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDECModule_load(JNIEnv* env, jobject obj) +{ + ((TDECModuleJBridge*) QtSupport::getQt(env, obj))->public_load(); + return; +} + +JNIEXPORT jboolean JNICALL +Java_org_kde_koala_TDECModule_managedWidgetChangeState(JNIEnv* env, jobject obj) +{ + jboolean xret = (jboolean) ((TDECModuleJBridge*) QtSupport::getQt(env, obj))->protected_managedWidgetChangeState(); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_TDECModule_metaObject(JNIEnv* env, jobject obj) +{ + jobject xret = QtSupport::objectForQtKey(env, (void*)((TDECModule*) QtSupport::getQt(env, obj))->metaObject(), "org.kde.qt.TQMetaObject"); + return xret; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDECModule_newTDECModule__(JNIEnv* env, jobject obj) +{ + if (QtSupport::getQt(env, obj) == 0) { + QtSupport::setQt(env, obj, new TDECModuleJBridge()); + QtSupport::setObjectForQtKey(env, obj, QtSupport::getQt(env, obj)); + } + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDECModule_newTDECModule__Lorg_kde_koala_TDEInstanceInterface_2(JNIEnv* env, jobject obj, jobject instance) +{ + if (QtSupport::getQt(env, obj) == 0) { + QtSupport::setQt(env, obj, new TDECModuleJBridge((TDEInstance*) QtSupport::getQt(env, instance))); + QtSupport::setObjectForQtKey(env, obj, QtSupport::getQt(env, obj)); + } + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDECModule_newTDECModule__Lorg_kde_koala_TDEInstanceInterface_2Lorg_kde_qt_QWidget_2(JNIEnv* env, jobject obj, jobject instance, jobject parent) +{ + if (QtSupport::getQt(env, obj) == 0) { + QtSupport::setQt(env, obj, new TDECModuleJBridge((TDEInstance*) QtSupport::getQt(env, instance), (TQWidget*) QtSupport::getQt(env, parent))); + QtSupport::setObjectForQtKey(env, obj, QtSupport::getQt(env, obj)); + } + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDECModule_newTDECModule__Lorg_kde_koala_TDEInstanceInterface_2Lorg_kde_qt_QWidget_2_3Ljava_lang_String_2(JNIEnv* env, jobject obj, jobject instance, jobject parent, jobjectArray args) +{ +static TQStringList* _qlist_args = 0; + if (QtSupport::getQt(env, obj) == 0) { + QtSupport::setQt(env, obj, new TDECModuleJBridge((TDEInstance*) QtSupport::getQt(env, instance), (TQWidget*) QtSupport::getQt(env, parent), (const TQStringList&)*(TQStringList*) QtSupport::toTQStringList(env, args, &_qlist_args))); + QtSupport::setObjectForQtKey(env, obj, QtSupport::getQt(env, obj)); + } + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDECModule_newTDECModule__Lorg_kde_qt_QWidget_2(JNIEnv* env, jobject obj, jobject parent) +{ + if (QtSupport::getQt(env, obj) == 0) { + QtSupport::setQt(env, obj, new TDECModuleJBridge((TQWidget*) QtSupport::getQt(env, parent))); + QtSupport::setObjectForQtKey(env, obj, QtSupport::getQt(env, obj)); + } + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDECModule_newTDECModule__Lorg_kde_qt_QWidget_2Ljava_lang_String_2(JNIEnv* env, jobject obj, jobject parent, jstring name) +{ +static TQCString* _qstring_name = 0; + if (QtSupport::getQt(env, obj) == 0) { + QtSupport::setQt(env, obj, new TDECModuleJBridge((TQWidget*) QtSupport::getQt(env, parent), (const char*) QtSupport::toCharString(env, name, &_qstring_name))); + QtSupport::setObjectForQtKey(env, obj, QtSupport::getQt(env, obj)); + } + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDECModule_newTDECModule__Lorg_kde_qt_QWidget_2Ljava_lang_String_2_3Ljava_lang_String_2(JNIEnv* env, jobject obj, jobject parent, jstring name, jobjectArray args) +{ +static TQCString* _qstring_name = 0; +static TQStringList* _qlist_args = 0; + if (QtSupport::getQt(env, obj) == 0) { + QtSupport::setQt(env, obj, new TDECModuleJBridge((TQWidget*) QtSupport::getQt(env, parent), (const char*) QtSupport::toCharString(env, name, &_qstring_name), (const TQStringList&)*(TQStringList*) QtSupport::toTQStringList(env, args, &_qlist_args))); + QtSupport::setObjectForQtKey(env, obj, QtSupport::getQt(env, obj)); + } + return; +} + +JNIEXPORT jstring JNICALL +Java_org_kde_koala_TDECModule_quickHelp(JNIEnv* env, jobject obj) +{ + TQString _qstring; + _qstring = ((TDECModule*) QtSupport::getQt(env, obj))->quickHelp(); + return QtSupport::fromTQString(env, &_qstring); +} + +JNIEXPORT jstring JNICALL +Java_org_kde_koala_TDECModule_rootOnlyMsg(JNIEnv* env, jobject obj) +{ + TQString _qstring; + _qstring = ((TDECModule*) QtSupport::getQt(env, obj))->rootOnlyMsg(); + return QtSupport::fromTQString(env, &_qstring); +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDECModule_save(JNIEnv* env, jobject obj) +{ + ((TDECModuleJBridge*) QtSupport::getQt(env, obj))->public_save(); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDECModule_setAboutData(JNIEnv* env, jobject obj, jobject about) +{ + ((TDECModule*) QtSupport::getQt(env, obj))->setAboutData((TDEAboutData*) QtSupport::getQt(env, about)); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDECModule_setButtons(JNIEnv* env, jobject obj, jint btn) +{ + ((TDECModuleJBridge*) QtSupport::getQt(env, obj))->protected_setButtons((int) btn); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDECModule_setQuickHelp(JNIEnv* env, jobject obj, jstring help) +{ +static TQString* _qstring_help = 0; + ((TDECModuleJBridge*) QtSupport::getQt(env, obj))->protected_setQuickHelp((const TQString&)*(TQString*) QtSupport::toTQString(env, help, &_qstring_help)); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDECModule_setRootOnlyMsg(JNIEnv* env, jobject obj, jstring msg) +{ +static TQString* _qstring_msg = 0; + ((TDECModuleJBridge*) QtSupport::getQt(env, obj))->protected_setRootOnlyMsg((const TQString&)*(TQString*) QtSupport::toTQString(env, msg, &_qstring_msg)); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDECModule_setUseRootOnlyMsg(JNIEnv* env, jobject obj, jboolean on) +{ + ((TDECModuleJBridge*) QtSupport::getQt(env, obj))->protected_setUseRootOnlyMsg((bool) on); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDECModule_sysdefaults(JNIEnv* env, jobject obj) +{ + ((TDECModuleJBridge*) QtSupport::getQt(env, obj))->public_sysdefaults(); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDECModule_unmanagedWidgetChangeState(JNIEnv* env, jobject obj, jboolean arg1) +{ + ((TDECModuleJBridge*) QtSupport::getQt(env, obj))->protected_unmanagedWidgetChangeState((bool) arg1); + return; +} + +JNIEXPORT jboolean JNICALL +Java_org_kde_koala_TDECModule_useRootOnlyMsg(JNIEnv* env, jobject obj) +{ + jboolean xret = (jboolean) ((TDECModule*) QtSupport::getQt(env, obj))->useRootOnlyMsg(); + return xret; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDECModule_widgetChanged(JNIEnv* env, jobject obj) +{ + ((TDECModuleJBridge*) QtSupport::getQt(env, obj))->protected_widgetChanged(); + return; +} + diff --git a/kdejava/koala/kdejava/TDECModule.h b/kdejava/koala/kdejava/TDECModule.h new file mode 100644 index 00000000..3d3a5a2a --- /dev/null +++ b/kdejava/koala/kdejava/TDECModule.h @@ -0,0 +1,49 @@ +/* DO NOT EDIT THIS FILE - it is machine generated */ + +#ifndef __org_kde_koala_TDECModule__ +#define __org_kde_koala_TDECModule__ + +#include + +#ifdef __cplusplus +extern "C" +{ +#endif + +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_TDECModule_metaObject (JNIEnv *env, jobject); +extern JNIEXPORT jstring JNICALL Java_org_kde_koala_TDECModule_className (JNIEnv *env, jobject); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDECModule_newTDECModule__Lorg_kde_qt_QWidget_2Ljava_lang_String_2_3Ljava_lang_String_2 (JNIEnv *env, jobject, jobject, jstring, jobjectArray); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDECModule_newTDECModule__Lorg_kde_qt_QWidget_2Ljava_lang_String_2 (JNIEnv *env, jobject, jobject, jstring); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDECModule_newTDECModule__Lorg_kde_qt_QWidget_2 (JNIEnv *env, jobject, jobject); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDECModule_newTDECModule__ (JNIEnv *env, jobject); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDECModule_newTDECModule__Lorg_kde_koala_TDEInstanceInterface_2Lorg_kde_qt_QWidget_2_3Ljava_lang_String_2 (JNIEnv *env, jobject, jobject, jobject, jobjectArray); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDECModule_newTDECModule__Lorg_kde_koala_TDEInstanceInterface_2Lorg_kde_qt_QWidget_2 (JNIEnv *env, jobject, jobject, jobject); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDECModule_newTDECModule__Lorg_kde_koala_TDEInstanceInterface_2 (JNIEnv *env, jobject, jobject); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDECModule_load (JNIEnv *env, jobject); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDECModule_save (JNIEnv *env, jobject); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDECModule_defaults (JNIEnv *env, jobject); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDECModule_sysdefaults (JNIEnv *env, jobject); +extern JNIEXPORT jstring JNICALL Java_org_kde_koala_TDECModule_quickHelp (JNIEnv *env, jobject); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_TDECModule_aboutData (JNIEnv *env, jobject); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDECModule_setAboutData (JNIEnv *env, jobject, jobject); +extern JNIEXPORT jint JNICALL Java_org_kde_koala_TDECModule_buttons (JNIEnv *env, jobject); +extern JNIEXPORT jstring JNICALL Java_org_kde_koala_TDECModule_rootOnlyMsg (JNIEnv *env, jobject); +extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_TDECModule_useRootOnlyMsg (JNIEnv *env, jobject); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_TDECModule_instance (JNIEnv *env, jobject); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDECModule_setQuickHelp (JNIEnv *env, jobject, jstring); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDECModule_setButtons (JNIEnv *env, jobject, jint); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDECModule_setRootOnlyMsg (JNIEnv *env, jobject, jstring); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDECModule_setUseRootOnlyMsg (JNIEnv *env, jobject, jboolean); +extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_TDECModule_managedWidgetChangeState (JNIEnv *env, jobject); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDECModule_unmanagedWidgetChangeState (JNIEnv *env, jobject, jboolean); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDECModule_changed (JNIEnv *env, jobject); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDECModule_widgetChanged (JNIEnv *env, jobject); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDECModule_finalize (JNIEnv *env, jobject); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDECModule_dispose (JNIEnv *env, jobject); +extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_TDECModule_isDisposed (JNIEnv *env, jobject); + +#ifdef __cplusplus +} +#endif + +#endif /* __org_kde_koala_TDECModule__ */ diff --git a/kdejava/koala/kdejava/TDECModuleInfo.cpp b/kdejava/koala/kdejava/TDECModuleInfo.cpp new file mode 100644 index 00000000..fd06560b --- /dev/null +++ b/kdejava/koala/kdejava/TDECModuleInfo.cpp @@ -0,0 +1,308 @@ +//Auto-generated by kalyptus. DO NOT EDIT. +#include +#include +#include +#include + +#include +#include +#include + +class TDECModuleInfoJBridge : public TDECModuleInfo +{ +public: + TDECModuleInfoJBridge(const TQString& arg1) : TDECModuleInfo(arg1) {}; + TDECModuleInfoJBridge(const TDECModuleInfo& arg1) : TDECModuleInfo(arg1) {}; + TDECModuleInfoJBridge() : TDECModuleInfo() {}; + void protected_setKeywords(const TQStringList& arg1) { + TDECModuleInfo::setKeywords(arg1); + return; + } + void protected_setName(const TQString& arg1) { + TDECModuleInfo::setName(arg1); + return; + } + void protected_setComment(const TQString& arg1) { + TDECModuleInfo::setComment(arg1); + return; + } + void protected_setIcon(const TQString& arg1) { + TDECModuleInfo::setIcon(arg1); + return; + } + void protected_setLibrary(const TQString& arg1) { + TDECModuleInfo::setLibrary(arg1); + return; + } + void protected_setHandle(const TQString& arg1) { + TDECModuleInfo::setHandle(arg1); + return; + } + void protected_setWeight(int arg1) { + TDECModuleInfo::setWeight(arg1); + return; + } + void protected_setNeedsTest(bool arg1) { + TDECModuleInfo::setNeedsTest(arg1); + return; + } + void protected_setNeedsRootPrivileges(bool arg1) { + TDECModuleInfo::setNeedsRootPrivileges(arg1); + return; + } + void protected_setDocPath(const TQString& arg1) { + TDECModuleInfo::setDocPath(arg1); + return; + } + void protected_loadAll() { + TDECModuleInfo::loadAll(); + return; + } + ~TDECModuleInfoJBridge() {QtSupport::qtKeyDeleted(this);} +}; + +JNIEXPORT jstring JNICALL +Java_org_kde_koala_TDECModuleInfo_comment(JNIEnv* env, jobject obj) +{ + TQString _qstring; + _qstring = ((TDECModuleInfo*) QtSupport::getQt(env, obj))->comment(); + return QtSupport::fromTQString(env, &_qstring); +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDECModuleInfo_dispose(JNIEnv* env, jobject obj) +{ + Java_org_kde_koala_TDECModuleInfo_finalize(env, obj); + return; +} + +JNIEXPORT jstring JNICALL +Java_org_kde_koala_TDECModuleInfo_docPath(JNIEnv* env, jobject obj) +{ + TQString _qstring; + _qstring = ((TDECModuleInfo*) QtSupport::getQt(env, obj))->docPath(); + return QtSupport::fromTQString(env, &_qstring); +} + +JNIEXPORT jstring JNICALL +Java_org_kde_koala_TDECModuleInfo_factoryName(JNIEnv* env, jobject obj) +{ + TQString _qstring; + _qstring = ((TDECModuleInfo*) QtSupport::getQt(env, obj))->factoryName(); + return QtSupport::fromTQString(env, &_qstring); +} + +JNIEXPORT jstring JNICALL +Java_org_kde_koala_TDECModuleInfo_fileName(JNIEnv* env, jobject obj) +{ + TQString _qstring; + _qstring = ((TDECModuleInfo*) QtSupport::getQt(env, obj))->fileName(); + return QtSupport::fromTQString(env, &_qstring); +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDECModuleInfo_finalize(JNIEnv* env, jobject obj) +{ + if (QtSupport::allocatedInJavaWorld(env, obj)) { + delete (TDECModuleInfo*)QtSupport::getQt(env, obj); + QtSupport::setQt(env, obj, 0); + } + return; +} + +JNIEXPORT jstring JNICALL +Java_org_kde_koala_TDECModuleInfo_handle(JNIEnv* env, jobject obj) +{ + TQString _qstring; + _qstring = ((TDECModuleInfo*) QtSupport::getQt(env, obj))->handle(); + return QtSupport::fromTQString(env, &_qstring); +} + +JNIEXPORT jstring JNICALL +Java_org_kde_koala_TDECModuleInfo_icon(JNIEnv* env, jobject obj) +{ + TQString _qstring; + _qstring = ((TDECModuleInfo*) QtSupport::getQt(env, obj))->icon(); + return QtSupport::fromTQString(env, &_qstring); +} + +JNIEXPORT jboolean JNICALL +Java_org_kde_koala_TDECModuleInfo_isDisposed(JNIEnv* env, jobject obj) +{ + return (QtSupport::getQt(env, obj) == 0); +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_TDECModuleInfo_keywords(JNIEnv* env, jobject obj) +{ + TQStringList _qlist; + _qlist = ((TDECModuleInfo*) QtSupport::getQt(env, obj))->keywords(); + return (jobject) QtSupport::arrayWithTQStringList(env, (TQStringList*) &_qlist); +} + +JNIEXPORT jstring JNICALL +Java_org_kde_koala_TDECModuleInfo_library(JNIEnv* env, jobject obj) +{ + TQString _qstring; + _qstring = ((TDECModuleInfo*) QtSupport::getQt(env, obj))->library(); + return QtSupport::fromTQString(env, &_qstring); +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDECModuleInfo_loadAll(JNIEnv* env, jobject obj) +{ + ((TDECModuleInfoJBridge*) QtSupport::getQt(env, obj))->protected_loadAll(); + return; +} + +JNIEXPORT jstring JNICALL +Java_org_kde_koala_TDECModuleInfo_moduleName(JNIEnv* env, jobject obj) +{ + TQString _qstring; + _qstring = ((TDECModuleInfo*) QtSupport::getQt(env, obj))->moduleName(); + return QtSupport::fromTQString(env, &_qstring); +} + +JNIEXPORT jboolean JNICALL +Java_org_kde_koala_TDECModuleInfo_needsRootPrivileges(JNIEnv* env, jobject obj) +{ + jboolean xret = (jboolean) ((TDECModuleInfo*) QtSupport::getQt(env, obj))->needsRootPrivileges(); + return xret; +} + +JNIEXPORT jboolean JNICALL +Java_org_kde_koala_TDECModuleInfo_needsTest(JNIEnv* env, jobject obj) +{ + jboolean xret = (jboolean) ((TDECModuleInfo*) QtSupport::getQt(env, obj))->needsTest(); + return xret; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDECModuleInfo_newTDECModuleInfo__(JNIEnv* env, jobject obj) +{ + if (QtSupport::getQt(env, obj) == 0) { + QtSupport::setQt(env, obj, new TDECModuleInfoJBridge()); + QtSupport::setObjectForQtKey(env, obj, QtSupport::getQt(env, obj)); + } + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDECModuleInfo_newTDECModuleInfo__Ljava_lang_String_2(JNIEnv* env, jobject obj, jstring desktopFile) +{ +static TQString* _qstring_desktopFile = 0; + if (QtSupport::getQt(env, obj) == 0) { + QtSupport::setQt(env, obj, new TDECModuleInfoJBridge((const TQString&)*(TQString*) QtSupport::toTQString(env, desktopFile, &_qstring_desktopFile))); + QtSupport::setObjectForQtKey(env, obj, QtSupport::getQt(env, obj)); + } + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDECModuleInfo_newTDECModuleInfo__Lorg_kde_koala_TDECModuleInfo_2(JNIEnv* env, jobject obj, jobject rhs) +{ + if (QtSupport::getQt(env, obj) == 0) { + QtSupport::setQt(env, obj, new TDECModuleInfoJBridge((const TDECModuleInfo&)*(const TDECModuleInfo*) QtSupport::getQt(env, rhs))); + QtSupport::setObjectForQtKey(env, obj, QtSupport::getQt(env, obj)); + } + return; +} + +JNIEXPORT jboolean JNICALL +Java_org_kde_koala_TDECModuleInfo_op_1equals(JNIEnv* env, jobject obj, jobject rhs) +{ + jboolean xret = (jboolean) ((TDECModuleInfo*) QtSupport::getQt(env, obj))->operator==((const TDECModuleInfo&)*(const TDECModuleInfo*) QtSupport::getQt(env, rhs)); + return xret; +} + +JNIEXPORT jboolean JNICALL +Java_org_kde_koala_TDECModuleInfo_op_1not_1equals(JNIEnv* env, jobject obj, jobject rhs) +{ + jboolean xret = (jboolean) ((TDECModuleInfo*) QtSupport::getQt(env, obj))->operator!=((const TDECModuleInfo&)*(const TDECModuleInfo*) QtSupport::getQt(env, rhs)); + return xret; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDECModuleInfo_setComment(JNIEnv* env, jobject obj, jstring comment) +{ +static TQString* _qstring_comment = 0; + ((TDECModuleInfoJBridge*) QtSupport::getQt(env, obj))->protected_setComment((const TQString&)*(TQString*) QtSupport::toTQString(env, comment, &_qstring_comment)); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDECModuleInfo_setDocPath(JNIEnv* env, jobject obj, jstring p) +{ +static TQString* _qstring_p = 0; + ((TDECModuleInfoJBridge*) QtSupport::getQt(env, obj))->protected_setDocPath((const TQString&)*(TQString*) QtSupport::toTQString(env, p, &_qstring_p)); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDECModuleInfo_setHandle(JNIEnv* env, jobject obj, jstring handle) +{ +static TQString* _qstring_handle = 0; + ((TDECModuleInfoJBridge*) QtSupport::getQt(env, obj))->protected_setHandle((const TQString&)*(TQString*) QtSupport::toTQString(env, handle, &_qstring_handle)); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDECModuleInfo_setIcon(JNIEnv* env, jobject obj, jstring icon) +{ +static TQString* _qstring_icon = 0; + ((TDECModuleInfoJBridge*) QtSupport::getQt(env, obj))->protected_setIcon((const TQString&)*(TQString*) QtSupport::toTQString(env, icon, &_qstring_icon)); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDECModuleInfo_setKeywords(JNIEnv* env, jobject obj, jobjectArray keyword) +{ +static TQStringList* _qlist_keyword = 0; + ((TDECModuleInfoJBridge*) QtSupport::getQt(env, obj))->protected_setKeywords((const TQStringList&)*(TQStringList*) QtSupport::toTQStringList(env, keyword, &_qlist_keyword)); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDECModuleInfo_setLibrary(JNIEnv* env, jobject obj, jstring lib) +{ +static TQString* _qstring_lib = 0; + ((TDECModuleInfoJBridge*) QtSupport::getQt(env, obj))->protected_setLibrary((const TQString&)*(TQString*) QtSupport::toTQString(env, lib, &_qstring_lib)); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDECModuleInfo_setName(JNIEnv* env, jobject obj, jstring name) +{ +static TQString* _qstring_name = 0; + ((TDECModuleInfoJBridge*) QtSupport::getQt(env, obj))->protected_setName((const TQString&)*(TQString*) QtSupport::toTQString(env, name, &_qstring_name)); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDECModuleInfo_setNeedsRootPrivileges(JNIEnv* env, jobject obj, jboolean needsRootPrivileges) +{ + ((TDECModuleInfoJBridge*) QtSupport::getQt(env, obj))->protected_setNeedsRootPrivileges((bool) needsRootPrivileges); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDECModuleInfo_setNeedsTest(JNIEnv* env, jobject obj, jboolean val) +{ + ((TDECModuleInfoJBridge*) QtSupport::getQt(env, obj))->protected_setNeedsTest((bool) val); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDECModuleInfo_setWeight(JNIEnv* env, jobject obj, jint weight) +{ + ((TDECModuleInfoJBridge*) QtSupport::getQt(env, obj))->protected_setWeight((int) weight); + return; +} + +JNIEXPORT jint JNICALL +Java_org_kde_koala_TDECModuleInfo_weight(JNIEnv* env, jobject obj) +{ + jint xret = (jint) ((TDECModuleInfo*) QtSupport::getQt(env, obj))->weight(); + return xret; +} + diff --git a/kdejava/koala/kdejava/TDECModuleInfo.h b/kdejava/koala/kdejava/TDECModuleInfo.h new file mode 100644 index 00000000..5ea85bd2 --- /dev/null +++ b/kdejava/koala/kdejava/TDECModuleInfo.h @@ -0,0 +1,49 @@ +/* DO NOT EDIT THIS FILE - it is machine generated */ + +#ifndef __org_kde_koala_TDECModuleInfo__ +#define __org_kde_koala_TDECModuleInfo__ + +#include + +#ifdef __cplusplus +extern "C" +{ +#endif + +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDECModuleInfo_newTDECModuleInfo__Ljava_lang_String_2 (JNIEnv *env, jobject, jstring); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDECModuleInfo_newTDECModuleInfo__Lorg_kde_koala_TDECModuleInfo_2 (JNIEnv *env, jobject, jobject); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDECModuleInfo_newTDECModuleInfo__ (JNIEnv *env, jobject); +extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_TDECModuleInfo_op_1equals (JNIEnv *env, jobject, jobject); +extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_TDECModuleInfo_op_1not_1equals (JNIEnv *env, jobject, jobject); +extern JNIEXPORT jstring JNICALL Java_org_kde_koala_TDECModuleInfo_fileName (JNIEnv *env, jobject); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_TDECModuleInfo_keywords (JNIEnv *env, jobject); +extern JNIEXPORT jstring JNICALL Java_org_kde_koala_TDECModuleInfo_factoryName (JNIEnv *env, jobject); +extern JNIEXPORT jstring JNICALL Java_org_kde_koala_TDECModuleInfo_moduleName (JNIEnv *env, jobject); +extern JNIEXPORT jstring JNICALL Java_org_kde_koala_TDECModuleInfo_comment (JNIEnv *env, jobject); +extern JNIEXPORT jstring JNICALL Java_org_kde_koala_TDECModuleInfo_icon (JNIEnv *env, jobject); +extern JNIEXPORT jstring JNICALL Java_org_kde_koala_TDECModuleInfo_docPath (JNIEnv *env, jobject); +extern JNIEXPORT jstring JNICALL Java_org_kde_koala_TDECModuleInfo_library (JNIEnv *env, jobject); +extern JNIEXPORT jstring JNICALL Java_org_kde_koala_TDECModuleInfo_handle (JNIEnv *env, jobject); +extern JNIEXPORT jint JNICALL Java_org_kde_koala_TDECModuleInfo_weight (JNIEnv *env, jobject); +extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_TDECModuleInfo_needsRootPrivileges (JNIEnv *env, jobject); +extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_TDECModuleInfo_needsTest (JNIEnv *env, jobject); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDECModuleInfo_setKeywords (JNIEnv *env, jobject, jobjectArray); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDECModuleInfo_setName (JNIEnv *env, jobject, jstring); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDECModuleInfo_setComment (JNIEnv *env, jobject, jstring); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDECModuleInfo_setIcon (JNIEnv *env, jobject, jstring); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDECModuleInfo_setLibrary (JNIEnv *env, jobject, jstring); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDECModuleInfo_setHandle (JNIEnv *env, jobject, jstring); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDECModuleInfo_setWeight (JNIEnv *env, jobject, jint); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDECModuleInfo_setNeedsTest (JNIEnv *env, jobject, jboolean); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDECModuleInfo_setNeedsRootPrivileges (JNIEnv *env, jobject, jboolean); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDECModuleInfo_setDocPath (JNIEnv *env, jobject, jstring); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDECModuleInfo_loadAll (JNIEnv *env, jobject); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDECModuleInfo_finalize (JNIEnv *env, jobject); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDECModuleInfo_dispose (JNIEnv *env, jobject); +extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_TDECModuleInfo_isDisposed (JNIEnv *env, jobject); + +#ifdef __cplusplus +} +#endif + +#endif /* __org_kde_koala_TDECModuleInfo__ */ diff --git a/kdejava/koala/kdejava/TDECModuleLoader.cpp b/kdejava/koala/kdejava/TDECModuleLoader.cpp new file mode 100644 index 00000000..e33cb32f --- /dev/null +++ b/kdejava/koala/kdejava/TDECModuleLoader.cpp @@ -0,0 +1,167 @@ +//Auto-generated by kalyptus. DO NOT EDIT. +#include +#include +#include +#include + +#include +#include +#include + +class TDECModuleLoaderJBridge : public TDECModuleLoader +{ +public: + TDECModuleLoaderJBridge() : TDECModuleLoader() {}; + ~TDECModuleLoaderJBridge() {QtSupport::qtKeyDeleted(this);} +}; + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDECModuleLoader_dispose(JNIEnv* env, jobject obj) +{ + Java_org_kde_koala_TDECModuleLoader_finalize(env, obj); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDECModuleLoader_finalize(JNIEnv* env, jobject obj) +{ + if (QtSupport::allocatedInJavaWorld(env, obj)) { + delete (TDECModuleLoader*)QtSupport::getQt(env, obj); + QtSupport::setQt(env, obj, 0); + } + return; +} + +JNIEXPORT jboolean JNICALL +Java_org_kde_koala_TDECModuleLoader_isDisposed(JNIEnv* env, jobject obj) +{ + return (QtSupport::getQt(env, obj) == 0); +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_TDECModuleLoader_loadModule__Ljava_lang_String_2I(JNIEnv* env, jclass cls, jstring module, jint report) +{ + (void) cls; +static TQString* _qstring_module = 0; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDECModuleLoaderJBridge::loadModule((const TQString&)*(TQString*) QtSupport::toTQString(env, module, &_qstring_module), (TDECModuleLoader::ErrorReporting) report), "org.kde.koala.TDECModule"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_TDECModuleLoader_loadModule__Ljava_lang_String_2ILorg_kde_qt_QWidget_2(JNIEnv* env, jclass cls, jstring module, jint report, jobject parent) +{ + (void) cls; +static TQString* _qstring_module = 0; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDECModuleLoaderJBridge::loadModule((const TQString&)*(TQString*) QtSupport::toTQString(env, module, &_qstring_module), (TDECModuleLoader::ErrorReporting) report, (TQWidget*) QtSupport::getQt(env, parent)), "org.kde.koala.TDECModule"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_TDECModuleLoader_loadModule__Ljava_lang_String_2ILorg_kde_qt_QWidget_2Ljava_lang_String_2(JNIEnv* env, jclass cls, jstring module, jint report, jobject parent, jstring name) +{ + (void) cls; +static TQString* _qstring_module = 0; +static TQCString* _qstring_name = 0; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDECModuleLoaderJBridge::loadModule((const TQString&)*(TQString*) QtSupport::toTQString(env, module, &_qstring_module), (TDECModuleLoader::ErrorReporting) report, (TQWidget*) QtSupport::getQt(env, parent), (const char*) QtSupport::toCharString(env, name, &_qstring_name)), "org.kde.koala.TDECModule"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_TDECModuleLoader_loadModule__Ljava_lang_String_2ILorg_kde_qt_QWidget_2Ljava_lang_String_2_3Ljava_lang_String_2(JNIEnv* env, jclass cls, jstring module, jint report, jobject parent, jstring name, jobjectArray args) +{ + (void) cls; +static TQString* _qstring_module = 0; +static TQCString* _qstring_name = 0; +static TQStringList* _qlist_args = 0; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDECModuleLoaderJBridge::loadModule((const TQString&)*(TQString*) QtSupport::toTQString(env, module, &_qstring_module), (TDECModuleLoader::ErrorReporting) report, (TQWidget*) QtSupport::getQt(env, parent), (const char*) QtSupport::toCharString(env, name, &_qstring_name), (const TQStringList&)*(TQStringList*) QtSupport::toTQStringList(env, args, &_qlist_args)), "org.kde.koala.TDECModule"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_TDECModuleLoader_loadModule__Lorg_kde_koala_TDECModuleInfo_2I(JNIEnv* env, jclass cls, jobject module, jint report) +{ + (void) cls; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDECModuleLoaderJBridge::loadModule((const TDECModuleInfo&)*(const TDECModuleInfo*) QtSupport::getQt(env, module), (TDECModuleLoader::ErrorReporting) report), "org.kde.koala.TDECModule"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_TDECModuleLoader_loadModule__Lorg_kde_koala_TDECModuleInfo_2IZ(JNIEnv* env, jclass cls, jobject module, jint report, jboolean withFallback) +{ + (void) cls; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDECModuleLoaderJBridge::loadModule((const TDECModuleInfo&)*(const TDECModuleInfo*) QtSupport::getQt(env, module), (TDECModuleLoader::ErrorReporting) report, (bool) withFallback), "org.kde.koala.TDECModule"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_TDECModuleLoader_loadModule__Lorg_kde_koala_TDECModuleInfo_2IZLorg_kde_qt_QWidget_2(JNIEnv* env, jclass cls, jobject module, jint report, jboolean withFallback, jobject parent) +{ + (void) cls; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDECModuleLoaderJBridge::loadModule((const TDECModuleInfo&)*(const TDECModuleInfo*) QtSupport::getQt(env, module), (TDECModuleLoader::ErrorReporting) report, (bool) withFallback, (TQWidget*) QtSupport::getQt(env, parent)), "org.kde.koala.TDECModule"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_TDECModuleLoader_loadModule__Lorg_kde_koala_TDECModuleInfo_2IZLorg_kde_qt_QWidget_2Ljava_lang_String_2(JNIEnv* env, jclass cls, jobject module, jint report, jboolean withFallback, jobject parent, jstring name) +{ + (void) cls; +static TQCString* _qstring_name = 0; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDECModuleLoaderJBridge::loadModule((const TDECModuleInfo&)*(const TDECModuleInfo*) QtSupport::getQt(env, module), (TDECModuleLoader::ErrorReporting) report, (bool) withFallback, (TQWidget*) QtSupport::getQt(env, parent), (const char*) QtSupport::toCharString(env, name, &_qstring_name)), "org.kde.koala.TDECModule"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_TDECModuleLoader_loadModule__Lorg_kde_koala_TDECModuleInfo_2IZLorg_kde_qt_QWidget_2Ljava_lang_String_2_3Ljava_lang_String_2(JNIEnv* env, jclass cls, jobject module, jint report, jboolean withFallback, jobject parent, jstring name, jobjectArray args) +{ + (void) cls; +static TQCString* _qstring_name = 0; +static TQStringList* _qlist_args = 0; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDECModuleLoaderJBridge::loadModule((const TDECModuleInfo&)*(const TDECModuleInfo*) QtSupport::getQt(env, module), (TDECModuleLoader::ErrorReporting) report, (bool) withFallback, (TQWidget*) QtSupport::getQt(env, parent), (const char*) QtSupport::toCharString(env, name, &_qstring_name), (const TQStringList&)*(TQStringList*) QtSupport::toTQStringList(env, args, &_qlist_args)), "org.kde.koala.TDECModule"); + return xret; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDECModuleLoader_newTDECModuleLoader(JNIEnv* env, jobject obj) +{ + if (QtSupport::getQt(env, obj) == 0) { + QtSupport::setQt(env, obj, new TDECModuleLoaderJBridge()); + QtSupport::setObjectForQtKey(env, obj, QtSupport::getQt(env, obj)); + } + return; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_TDECModuleLoader_reportError(JNIEnv* env, jclass cls, jint report, jstring text, jstring details, jobject parent) +{ + (void) cls; +static TQString* _qstring_text = 0; +static TQString* _qstring_details = 0; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDECModuleLoaderJBridge::reportError((TDECModuleLoader::ErrorReporting) report, (const TQString&)*(TQString*) QtSupport::toTQString(env, text, &_qstring_text), (TQString)*(TQString*) QtSupport::toTQString(env, details, &_qstring_details), (TQWidget*) QtSupport::getQt(env, parent)), "org.kde.koala.TDECModule"); + return xret; +} + +JNIEXPORT jboolean JNICALL +Java_org_kde_koala_TDECModuleLoader_testModule__Ljava_lang_String_2(JNIEnv* env, jclass cls, jstring module) +{ + (void) cls; +static TQString* _qstring_module = 0; + jboolean xret = (jboolean) TDECModuleLoaderJBridge::testModule((const TQString&)*(TQString*) QtSupport::toTQString(env, module, &_qstring_module)); + return xret; +} + +JNIEXPORT jboolean JNICALL +Java_org_kde_koala_TDECModuleLoader_testModule__Lorg_kde_koala_TDECModuleInfo_2(JNIEnv* env, jclass cls, jobject module) +{ + (void) cls; + jboolean xret = (jboolean) TDECModuleLoaderJBridge::testModule((const TDECModuleInfo&)*(const TDECModuleInfo*) QtSupport::getQt(env, module)); + return xret; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDECModuleLoader_unloadModule(JNIEnv* env, jclass cls, jobject mod) +{ + (void) cls; + TDECModuleLoaderJBridge::unloadModule((const TDECModuleInfo&)*(const TDECModuleInfo*) QtSupport::getQt(env, mod)); + return; +} + diff --git a/kdejava/koala/kdejava/TDECModuleLoader.h b/kdejava/koala/kdejava/TDECModuleLoader.h new file mode 100644 index 00000000..29d48315 --- /dev/null +++ b/kdejava/koala/kdejava/TDECModuleLoader.h @@ -0,0 +1,35 @@ +/* DO NOT EDIT THIS FILE - it is machine generated */ + +#ifndef __org_kde_koala_TDECModuleLoader__ +#define __org_kde_koala_TDECModuleLoader__ + +#include + +#ifdef __cplusplus +extern "C" +{ +#endif + +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDECModuleLoader_newTDECModuleLoader (JNIEnv *env, jobject); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_TDECModuleLoader_loadModule__Lorg_kde_koala_TDECModuleInfo_2IZLorg_kde_qt_QWidget_2Ljava_lang_String_2_3Ljava_lang_String_2 (JNIEnv *env, jclass, jobject, jint, jboolean, jobject, jstring, jobjectArray); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_TDECModuleLoader_loadModule__Lorg_kde_koala_TDECModuleInfo_2IZLorg_kde_qt_QWidget_2Ljava_lang_String_2 (JNIEnv *env, jclass, jobject, jint, jboolean, jobject, jstring); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_TDECModuleLoader_loadModule__Lorg_kde_koala_TDECModuleInfo_2IZLorg_kde_qt_QWidget_2 (JNIEnv *env, jclass, jobject, jint, jboolean, jobject); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_TDECModuleLoader_loadModule__Lorg_kde_koala_TDECModuleInfo_2IZ (JNIEnv *env, jclass, jobject, jint, jboolean); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_TDECModuleLoader_loadModule__Lorg_kde_koala_TDECModuleInfo_2I (JNIEnv *env, jclass, jobject, jint); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_TDECModuleLoader_loadModule__Ljava_lang_String_2ILorg_kde_qt_QWidget_2Ljava_lang_String_2_3Ljava_lang_String_2 (JNIEnv *env, jclass, jstring, jint, jobject, jstring, jobjectArray); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_TDECModuleLoader_loadModule__Ljava_lang_String_2ILorg_kde_qt_QWidget_2Ljava_lang_String_2 (JNIEnv *env, jclass, jstring, jint, jobject, jstring); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_TDECModuleLoader_loadModule__Ljava_lang_String_2ILorg_kde_qt_QWidget_2 (JNIEnv *env, jclass, jstring, jint, jobject); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_TDECModuleLoader_loadModule__Ljava_lang_String_2I (JNIEnv *env, jclass, jstring, jint); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDECModuleLoader_unloadModule (JNIEnv *env, jclass, jobject); +extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_TDECModuleLoader_testModule__Ljava_lang_String_2 (JNIEnv *env, jclass, jstring); +extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_TDECModuleLoader_testModule__Lorg_kde_koala_TDECModuleInfo_2 (JNIEnv *env, jclass, jobject); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_TDECModuleLoader_reportError (JNIEnv *env, jclass, jint, jstring, jstring, jobject); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDECModuleLoader_finalize (JNIEnv *env, jobject); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDECModuleLoader_dispose (JNIEnv *env, jobject); +extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_TDECModuleLoader_isDisposed (JNIEnv *env, jobject); + +#ifdef __cplusplus +} +#endif + +#endif /* __org_kde_koala_TDECModuleLoader__ */ diff --git a/kdejava/koala/kdejava/TDEConfig.cpp b/kdejava/koala/kdejava/TDEConfig.cpp new file mode 100644 index 00000000..dc571a89 --- /dev/null +++ b/kdejava/koala/kdejava/TDEConfig.cpp @@ -0,0 +1,318 @@ +//Auto-generated by kalyptus. DO NOT EDIT. +#include +#include +#include +#include +#include + +#include +#include +#include + +class TDEConfigJBridge : public TDEConfig +{ +public: + TDEConfigJBridge(const TQString& arg1,bool arg2,bool arg3,const char* arg4) : TDEConfig(arg1,arg2,arg3,arg4) {}; + TDEConfigJBridge(const TQString& arg1,bool arg2,bool arg3) : TDEConfig(arg1,arg2,arg3) {}; + TDEConfigJBridge(const TQString& arg1,bool arg2) : TDEConfig(arg1,arg2) {}; + TDEConfigJBridge(const TQString& arg1) : TDEConfig(arg1) {}; + TDEConfigJBridge() : TDEConfig() {}; + TDEConfigJBridge(TDEConfigBackEnd* arg1,bool arg2) : TDEConfig(arg1,arg2) {}; + TDEConfigJBridge(TDEConfigBackEnd* arg1) : TDEConfig(arg1) {}; + void public_rollback() { + TDEConfig::rollback(); + return; + } + void public_reparseConfiguration() { + TDEConfig::reparseConfiguration(); + return; + } + bool protected_internalHasGroup(const TQCString& arg1) { + return (bool) TDEConfig::internalHasGroup(arg1); + } + void protected_putData(const KEntryKey& arg1,const KEntry& arg2,bool arg3) { + TDEConfig::putData(arg1,arg2,arg3); + return; + } + void protected_putData(const KEntryKey& arg1,const KEntry& arg2) { + TDEConfig::putData(arg1,arg2); + return; + } + KEntry protected_lookupData(const KEntryKey& arg1) { + return (KEntry) TDEConfig::lookupData(arg1); + } + ~TDEConfigJBridge() {QtSupport::qtKeyDeleted(this);} + void removeChild(TQObject* arg1) { + if (!QtSupport::eventDelegate(this,"removeChild",(void*)arg1,"org.kde.qt.TQObject")) { + TQObject::removeChild(arg1); + } + return; + } + void reparseConfiguration() { + if (!QtSupport::voidDelegate(this,"org.kde.koala.TDEConfig","reparseConfiguration")) { + TDEConfig::reparseConfiguration(); + } + 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 sync() { + if (!QtSupport::voidDelegate(this,"org.kde.koala.TDEConfig","sync")) { + TDEConfigBase::sync(); + } + return; + } + void insertChild(TQObject* arg1) { + if (!QtSupport::eventDelegate(this,"insertChild",(void*)arg1,"org.kde.qt.TQObject")) { + TQObject::insertChild(arg1); + } + return; + } + void parseConfigFiles() { + if (!QtSupport::voidDelegate(this,"org.kde.koala.TDEConfig","parseConfigFiles")) { + TDEConfigBase::parseConfigFiles(); + } + return; + } + bool eventFilter(TQObject* object,TQEvent* event) { + if (!QtSupport::eventFilterDelegate(this,"org.kde.koala.TDEConfig",object,event)) { + return TQObject::eventFilter(object,event); + } else { + return TRUE; + } + } +}; + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfig_checkUpdate(JNIEnv* env, jobject obj, jstring id, jstring updateFile) +{ +static TQString* _qstring_id = 0; +static TQString* _qstring_updateFile = 0; + ((TDEConfig*) QtSupport::getQt(env, obj))->checkUpdate((const TQString&)*(TQString*) QtSupport::toTQString(env, id, &_qstring_id), (const TQString&)*(TQString*) QtSupport::toTQString(env, updateFile, &_qstring_updateFile)); + return; +} + +JNIEXPORT jstring JNICALL +Java_org_kde_koala_TDEConfig_className(JNIEnv* env, jobject obj) +{ + const char* _qstring; + _qstring = ((TDEConfig*) QtSupport::getQt(env, obj))->className(); + return QtSupport::fromCharString(env, (char *) _qstring); +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_TDEConfig_copyTo__Ljava_lang_String_2(JNIEnv* env, jobject obj, jstring file) +{ +static TQString* _qstring_file = 0; + jobject xret = QtSupport::objectForQtKey(env, (void*)((TDEConfig*) QtSupport::getQt(env, obj))->copyTo((const TQString&)*(TQString*) QtSupport::toTQString(env, file, &_qstring_file)), "org.kde.koala.TDEConfig"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_TDEConfig_copyTo__Ljava_lang_String_2Lorg_kde_koala_TDEConfig_2(JNIEnv* env, jobject obj, jstring file, jobject config) +{ +static TQString* _qstring_file = 0; + jobject xret = QtSupport::objectForQtKey(env, (void*)((TDEConfig*) QtSupport::getQt(env, obj))->copyTo((const TQString&)*(TQString*) QtSupport::toTQString(env, file, &_qstring_file), (TDEConfig*) QtSupport::getQt(env, config)), "org.kde.koala.TDEConfig"); + return xret; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfig_dispose(JNIEnv* env, jobject obj) +{ + Java_org_kde_koala_TDEConfig_finalize(env, obj); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfig_finalize(JNIEnv* env, jobject obj) +{ + if (QtSupport::allocatedInJavaWorld(env, obj) && ((TDEConfig*)QtSupport::getQt(env, obj))->parent() == 0) { + delete (TDEConfig*)QtSupport::getQt(env, obj); + QtSupport::setQt(env, obj, 0); + } + return; +} + +JNIEXPORT jboolean JNICALL +Java_org_kde_koala_TDEConfig_forceGlobal(JNIEnv* env, jobject obj) +{ + jboolean xret = (jboolean) ((TDEConfig*) QtSupport::getQt(env, obj))->forceGlobal(); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_TDEConfig_groupList(JNIEnv* env, jobject obj) +{ + TQStringList _qlist; + _qlist = ((TDEConfig*) QtSupport::getQt(env, obj))->groupList(); + return (jobject) QtSupport::arrayWithTQStringList(env, (TQStringList*) &_qlist); +} + +JNIEXPORT jboolean JNICALL +Java_org_kde_koala_TDEConfig_internalHasGroup(JNIEnv* env, jobject obj, jstring group) +{ +static TQCString* _qcstring_group = 0; + jboolean xret = (jboolean) ((TDEConfigJBridge*) QtSupport::getQt(env, obj))->protected_internalHasGroup((const TQCString&)*(TQCString*) QtSupport::toTQCString(env, group, &_qcstring_group)); + return xret; +} + +JNIEXPORT jboolean JNICALL +Java_org_kde_koala_TDEConfig_isDisposed(JNIEnv* env, jobject obj) +{ + return (QtSupport::getQt(env, obj) == 0); +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_TDEConfig_lookupData(JNIEnv* env, jobject obj, jobject _key) +{ + jobject xret = QtSupport::objectForQtKey(env, (void*)new KEntry(((TDEConfigJBridge*) QtSupport::getQt(env, obj))->protected_lookupData((const KEntryKey&)*(const KEntryKey*) QtSupport::getQt(env, _key))), "org.kde.koala.KEntry", TRUE); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_TDEConfig_metaObject(JNIEnv* env, jobject obj) +{ + jobject xret = QtSupport::objectForQtKey(env, (void*)((TDEConfig*) QtSupport::getQt(env, obj))->metaObject(), "org.kde.qt.TQMetaObject"); + return xret; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfig_newTDEConfig__(JNIEnv* env, jobject obj) +{ + if (QtSupport::getQt(env, obj) == 0) { + QtSupport::setQt(env, obj, new TDEConfigJBridge()); + QtSupport::setObjectForQtKey(env, obj, QtSupport::getQt(env, obj)); + } + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfig_newTDEConfig__Ljava_lang_String_2(JNIEnv* env, jobject obj, jstring fileName) +{ +static TQString* _qstring_fileName = 0; + if (QtSupport::getQt(env, obj) == 0) { + QtSupport::setQt(env, obj, new TDEConfigJBridge((const TQString&)*(TQString*) QtSupport::toTQString(env, fileName, &_qstring_fileName))); + QtSupport::setObjectForQtKey(env, obj, QtSupport::getQt(env, obj)); + } + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfig_newTDEConfig__Ljava_lang_String_2Z(JNIEnv* env, jobject obj, jstring fileName, jboolean bReadOnly) +{ +static TQString* _qstring_fileName = 0; + if (QtSupport::getQt(env, obj) == 0) { + QtSupport::setQt(env, obj, new TDEConfigJBridge((const TQString&)*(TQString*) QtSupport::toTQString(env, fileName, &_qstring_fileName), (bool) bReadOnly)); + QtSupport::setObjectForQtKey(env, obj, QtSupport::getQt(env, obj)); + } + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfig_newTDEConfig__Ljava_lang_String_2ZZ(JNIEnv* env, jobject obj, jstring fileName, jboolean bReadOnly, jboolean bUseKDEGlobals) +{ +static TQString* _qstring_fileName = 0; + if (QtSupport::getQt(env, obj) == 0) { + QtSupport::setQt(env, obj, new TDEConfigJBridge((const TQString&)*(TQString*) QtSupport::toTQString(env, fileName, &_qstring_fileName), (bool) bReadOnly, (bool) bUseKDEGlobals)); + QtSupport::setObjectForQtKey(env, obj, QtSupport::getQt(env, obj)); + } + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfig_newTDEConfig__Ljava_lang_String_2ZZLjava_lang_String_2(JNIEnv* env, jobject obj, jstring fileName, jboolean bReadOnly, jboolean bUseKDEGlobals, jstring resType) +{ +static TQString* _qstring_fileName = 0; +static TQCString* _qstring_resType = 0; + if (QtSupport::getQt(env, obj) == 0) { + QtSupport::setQt(env, obj, new TDEConfigJBridge((const TQString&)*(TQString*) QtSupport::toTQString(env, fileName, &_qstring_fileName), (bool) bReadOnly, (bool) bUseKDEGlobals, (const char*) QtSupport::toCharString(env, resType, &_qstring_resType))); + QtSupport::setObjectForQtKey(env, obj, QtSupport::getQt(env, obj)); + } + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfig_newTDEConfig__Lorg_kde_koala_TDEConfigBackEnd_2(JNIEnv* env, jobject obj, jobject backEnd) +{ + if (QtSupport::getQt(env, obj) == 0) { + QtSupport::setQt(env, obj, new TDEConfigJBridge((TDEConfigBackEnd*) QtSupport::getQt(env, backEnd))); + QtSupport::setObjectForQtKey(env, obj, QtSupport::getQt(env, obj)); + } + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfig_newTDEConfig__Lorg_kde_koala_TDEConfigBackEnd_2Z(JNIEnv* env, jobject obj, jobject backEnd, jboolean bReadOnly) +{ + if (QtSupport::getQt(env, obj) == 0) { + QtSupport::setQt(env, obj, new TDEConfigJBridge((TDEConfigBackEnd*) QtSupport::getQt(env, backEnd), (bool) bReadOnly)); + QtSupport::setObjectForQtKey(env, obj, QtSupport::getQt(env, obj)); + } + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfig_putData__Lorg_kde_koala_KEntryKey_2Lorg_kde_koala_KEntry_2(JNIEnv* env, jobject obj, jobject _key, jobject _data) +{ + ((TDEConfigJBridge*) QtSupport::getQt(env, obj))->protected_putData((const KEntryKey&)*(const KEntryKey*) QtSupport::getQt(env, _key), (const KEntry&)*(const KEntry*) QtSupport::getQt(env, _data)); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfig_putData__Lorg_kde_koala_KEntryKey_2Lorg_kde_koala_KEntry_2Z(JNIEnv* env, jobject obj, jobject _key, jobject _data, jboolean _checkGroup) +{ + ((TDEConfigJBridge*) QtSupport::getQt(env, obj))->protected_putData((const KEntryKey&)*(const KEntryKey*) QtSupport::getQt(env, _key), (const KEntry&)*(const KEntry*) QtSupport::getQt(env, _data), (bool) _checkGroup); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfig_reparseConfiguration(JNIEnv* env, jobject obj) +{ + ((TDEConfigJBridge*) QtSupport::getQt(env, obj))->public_reparseConfiguration(); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfig_rollback__(JNIEnv* env, jobject obj) +{ + ((TDEConfigJBridge*) QtSupport::getQt(env, obj))->public_rollback(); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfig_rollback__Z(JNIEnv* env, jobject obj, jboolean bDeep) +{ + ((TDEConfig*) QtSupport::getQt(env, obj))->rollback((bool) bDeep); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfig_setFileWriteMode(JNIEnv* env, jobject obj, jint mode) +{ + ((TDEConfig*) QtSupport::getQt(env, obj))->setFileWriteMode((int) mode); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfig_setForceGlobal(JNIEnv* env, jobject obj, jboolean force) +{ + ((TDEConfig*) QtSupport::getQt(env, obj))->setForceGlobal((bool) force); + return; +} + diff --git a/kdejava/koala/kdejava/TDEConfig.h b/kdejava/koala/kdejava/TDEConfig.h new file mode 100644 index 00000000..b8420762 --- /dev/null +++ b/kdejava/koala/kdejava/TDEConfig.h @@ -0,0 +1,44 @@ +/* DO NOT EDIT THIS FILE - it is machine generated */ + +#ifndef __org_kde_koala_TDEConfig__ +#define __org_kde_koala_TDEConfig__ + +#include + +#ifdef __cplusplus +extern "C" +{ +#endif + +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_TDEConfig_metaObject (JNIEnv *env, jobject); +extern JNIEXPORT jstring JNICALL Java_org_kde_koala_TDEConfig_className (JNIEnv *env, jobject); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfig_newTDEConfig__Ljava_lang_String_2ZZLjava_lang_String_2 (JNIEnv *env, jobject, jstring, jboolean, jboolean, jstring); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfig_newTDEConfig__Ljava_lang_String_2ZZ (JNIEnv *env, jobject, jstring, jboolean, jboolean); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfig_newTDEConfig__Ljava_lang_String_2Z (JNIEnv *env, jobject, jstring, jboolean); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfig_newTDEConfig__Ljava_lang_String_2 (JNIEnv *env, jobject, jstring); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfig_newTDEConfig__ (JNIEnv *env, jobject); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfig_newTDEConfig__Lorg_kde_koala_TDEConfigBackEnd_2Z (JNIEnv *env, jobject, jobject, jboolean); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfig_newTDEConfig__Lorg_kde_koala_TDEConfigBackEnd_2 (JNIEnv *env, jobject, jobject); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfig_rollback__Z (JNIEnv *env, jobject, jboolean); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfig_rollback__ (JNIEnv *env, jobject); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_TDEConfig_groupList (JNIEnv *env, jobject); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfig_reparseConfiguration (JNIEnv *env, jobject); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfig_setFileWriteMode (JNIEnv *env, jobject, jint); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfig_setForceGlobal (JNIEnv *env, jobject, jboolean); +extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_TDEConfig_forceGlobal (JNIEnv *env, jobject); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfig_checkUpdate (JNIEnv *env, jobject, jstring, jstring); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_TDEConfig_copyTo__Ljava_lang_String_2Lorg_kde_koala_TDEConfig_2 (JNIEnv *env, jobject, jstring, jobject); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_TDEConfig_copyTo__Ljava_lang_String_2 (JNIEnv *env, jobject, jstring); +extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_TDEConfig_internalHasGroup (JNIEnv *env, jobject, jstring); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfig_putData__Lorg_kde_koala_KEntryKey_2Lorg_kde_koala_KEntry_2Z (JNIEnv *env, jobject, jobject, jobject, jboolean); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfig_putData__Lorg_kde_koala_KEntryKey_2Lorg_kde_koala_KEntry_2 (JNIEnv *env, jobject, jobject, jobject); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_TDEConfig_lookupData (JNIEnv *env, jobject, jobject); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfig_finalize (JNIEnv *env, jobject); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfig_dispose (JNIEnv *env, jobject); +extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_TDEConfig_isDisposed (JNIEnv *env, jobject); + +#ifdef __cplusplus +} +#endif + +#endif /* __org_kde_koala_TDEConfig__ */ diff --git a/kdejava/koala/kdejava/TDEConfigBackEnd.cpp b/kdejava/koala/kdejava/TDEConfigBackEnd.cpp new file mode 100644 index 00000000..5834b960 --- /dev/null +++ b/kdejava/koala/kdejava/TDEConfigBackEnd.cpp @@ -0,0 +1,85 @@ +//Auto-generated by kalyptus. DO NOT EDIT. +#include +#include +#include +#include + +#include +#include +#include + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigBackEnd_changeFileName(JNIEnv* env, jobject obj, jstring _fileName, jstring _resType, jboolean _useKDEGlobals) +{ +static TQString* _qstring__fileName = 0; +static TQCString* _qstring__resType = 0; + ((TDEConfigBackEnd*) QtSupport::getQt(env, obj))->changeFileName((const TQString&)*(TQString*) QtSupport::toTQString(env, _fileName, &_qstring__fileName), (const char*) QtSupport::toCharString(env, _resType, &_qstring__resType), (bool) _useKDEGlobals); + return; +} + +JNIEXPORT jboolean JNICALL +Java_org_kde_koala_TDEConfigBackEnd_checkConfigFilesWritable(JNIEnv* env, jobject obj, jboolean warnUser) +{ + jboolean xret = (jboolean) ((TDEConfigBackEnd*) QtSupport::getQt(env, obj))->checkConfigFilesWritable((bool) warnUser); + return xret; +} + +JNIEXPORT jstring JNICALL +Java_org_kde_koala_TDEConfigBackEnd_fileName(JNIEnv* env, jobject obj) +{ + TQString _qstring; + _qstring = ((TDEConfigBackEnd*) QtSupport::getQt(env, obj))->fileName(); + return QtSupport::fromTQString(env, &_qstring); +} + +JNIEXPORT jint JNICALL +Java_org_kde_koala_TDEConfigBackEnd_getConfigState(JNIEnv* env, jobject obj) +{ + jint xret = (jint) ((TDEConfigBackEnd*) QtSupport::getQt(env, obj))->getConfigState(); + return xret; +} + +JNIEXPORT jboolean JNICALL +Java_org_kde_koala_TDEConfigBackEnd_parseConfigFiles(JNIEnv* env, jobject obj) +{ + jboolean xret = (jboolean) ((TDEConfigBackEnd*) QtSupport::getQt(env, obj))->parseConfigFiles(); + return xret; +} + +JNIEXPORT jstring JNICALL +Java_org_kde_koala_TDEConfigBackEnd_resource(JNIEnv* env, jobject obj) +{ + const char* _qstring; + _qstring = ((TDEConfigBackEnd*) QtSupport::getQt(env, obj))->resource(); + return QtSupport::fromCharString(env, (char *) _qstring); +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigBackEnd_setFileWriteMode(JNIEnv* env, jobject obj, jint mode) +{ + ((TDEConfigBackEnd*) QtSupport::getQt(env, obj))->setFileWriteMode((int) mode); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigBackEnd_setLocaleString(JNIEnv* env, jobject obj, jstring _localeString) +{ +static TQCString* _qcstring__localeString = 0; + ((TDEConfigBackEnd*) QtSupport::getQt(env, obj))->setLocaleString((const TQCString&)*(TQCString*) QtSupport::toTQCString(env, _localeString, &_qcstring__localeString)); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigBackEnd_sync__(JNIEnv* env, jobject obj) +{ + ((TDEConfigBackEnd*) QtSupport::getQt(env, obj))->sync(); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigBackEnd_sync__Z(JNIEnv* env, jobject obj, jboolean bMerge) +{ + ((TDEConfigBackEnd*) QtSupport::getQt(env, obj))->sync((bool) bMerge); + return; +} + diff --git a/kdejava/koala/kdejava/TDEConfigBackEnd.h b/kdejava/koala/kdejava/TDEConfigBackEnd.h new file mode 100644 index 00000000..a537a4b8 --- /dev/null +++ b/kdejava/koala/kdejava/TDEConfigBackEnd.h @@ -0,0 +1,28 @@ +/* DO NOT EDIT THIS FILE - it is machine generated */ + +#ifndef __org_kde_koala_TDEConfigBackEnd__ +#define __org_kde_koala_TDEConfigBackEnd__ + +#include + +#ifdef __cplusplus +extern "C" +{ +#endif + +extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_TDEConfigBackEnd_parseConfigFiles (JNIEnv *env, jobject); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBackEnd_sync__Z (JNIEnv *env, jobject, jboolean); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBackEnd_sync__ (JNIEnv *env, jobject); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBackEnd_changeFileName (JNIEnv *env, jobject, jstring, jstring, jboolean); +extern JNIEXPORT jint JNICALL Java_org_kde_koala_TDEConfigBackEnd_getConfigState (JNIEnv *env, jobject); +extern JNIEXPORT jstring JNICALL Java_org_kde_koala_TDEConfigBackEnd_fileName (JNIEnv *env, jobject); +extern JNIEXPORT jstring JNICALL Java_org_kde_koala_TDEConfigBackEnd_resource (JNIEnv *env, jobject); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBackEnd_setLocaleString (JNIEnv *env, jobject, jstring); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBackEnd_setFileWriteMode (JNIEnv *env, jobject, jint); +extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_TDEConfigBackEnd_checkConfigFilesWritable (JNIEnv *env, jobject, jboolean); + +#ifdef __cplusplus +} +#endif + +#endif /* __org_kde_koala_TDEConfigBackEnd__ */ diff --git a/kdejava/koala/kdejava/TDEConfigBase.cpp b/kdejava/koala/kdejava/TDEConfigBase.cpp new file mode 100644 index 00000000..7ae6c398 --- /dev/null +++ b/kdejava/koala/kdejava/TDEConfigBase.cpp @@ -0,0 +1,1201 @@ +//Auto-generated by kalyptus. DO NOT EDIT. +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include +#include +#include + +JNIEXPORT jboolean JNICALL +Java_org_kde_koala_TDEConfigBase_checkConfigFilesWritable(JNIEnv* env, jobject obj, jboolean warnUser) +{ + jboolean xret = (jboolean) ((TDEConfigBase*) QtSupport::getQt(env, obj))->checkConfigFilesWritable((bool) warnUser); + return xret; +} + +JNIEXPORT jstring JNICALL +Java_org_kde_koala_TDEConfigBase_className(JNIEnv* env, jobject obj) +{ + const char* _qstring; + _qstring = ((TDEConfigBase*) QtSupport::getQt(env, obj))->className(); + return QtSupport::fromCharString(env, (char *) _qstring); +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigBase_deleteEntry__Ljava_lang_String_2(JNIEnv* env, jobject obj, jstring pKey) +{ +static TQString* _qstring_pKey = 0; + ((TDEConfigBase*) QtSupport::getQt(env, obj))->deleteEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey)); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigBase_deleteEntry__Ljava_lang_String_2Z(JNIEnv* env, jobject obj, jstring pKey, jboolean bNLS) +{ +static TQString* _qstring_pKey = 0; + ((TDEConfigBase*) QtSupport::getQt(env, obj))->deleteEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (bool) bNLS); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigBase_deleteEntry__Ljava_lang_String_2ZZ(JNIEnv* env, jobject obj, jstring pKey, jboolean bNLS, jboolean bGlobal) +{ +static TQString* _qstring_pKey = 0; + ((TDEConfigBase*) QtSupport::getQt(env, obj))->deleteEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (bool) bNLS, (bool) bGlobal); + return; +} + +JNIEXPORT jboolean JNICALL +Java_org_kde_koala_TDEConfigBase_deleteGroup__Ljava_lang_String_2(JNIEnv* env, jobject obj, jstring group) +{ +static TQString* _qstring_group = 0; + jboolean xret = (jboolean) ((TDEConfigBase*) QtSupport::getQt(env, obj))->deleteGroup((const TQString&)*(TQString*) QtSupport::toTQString(env, group, &_qstring_group)); + return xret; +} + +JNIEXPORT jboolean JNICALL +Java_org_kde_koala_TDEConfigBase_deleteGroup__Ljava_lang_String_2Z(JNIEnv* env, jobject obj, jstring group, jboolean bDeep) +{ +static TQString* _qstring_group = 0; + jboolean xret = (jboolean) ((TDEConfigBase*) QtSupport::getQt(env, obj))->deleteGroup((const TQString&)*(TQString*) QtSupport::toTQString(env, group, &_qstring_group), (bool) bDeep); + return xret; +} + +JNIEXPORT jboolean JNICALL +Java_org_kde_koala_TDEConfigBase_deleteGroup__Ljava_lang_String_2ZZ(JNIEnv* env, jobject obj, jstring group, jboolean bDeep, jboolean bGlobal) +{ +static TQString* _qstring_group = 0; + jboolean xret = (jboolean) ((TDEConfigBase*) QtSupport::getQt(env, obj))->deleteGroup((const TQString&)*(TQString*) QtSupport::toTQString(env, group, &_qstring_group), (bool) bDeep, (bool) bGlobal); + return xret; +} + +JNIEXPORT jboolean JNICALL +Java_org_kde_koala_TDEConfigBase_entryIsImmutable(JNIEnv* env, jobject obj, jstring key) +{ +static TQString* _qstring_key = 0; + jboolean xret = (jboolean) ((TDEConfigBase*) QtSupport::getQt(env, obj))->entryIsImmutable((const TQString&)*(TQString*) QtSupport::toTQString(env, key, &_qstring_key)); + return xret; +} + +JNIEXPORT jint JNICALL +Java_org_kde_koala_TDEConfigBase_getConfigState(JNIEnv* env, jobject obj) +{ + jint xret = (jint) ((TDEConfigBase*) QtSupport::getQt(env, obj))->getConfigState(); + return xret; +} + +JNIEXPORT jboolean JNICALL +Java_org_kde_koala_TDEConfigBase_groupIsImmutable(JNIEnv* env, jobject obj, jstring group) +{ +static TQString* _qstring_group = 0; + jboolean xret = (jboolean) ((TDEConfigBase*) QtSupport::getQt(env, obj))->groupIsImmutable((const TQString&)*(TQString*) QtSupport::toTQString(env, group, &_qstring_group)); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_TDEConfigBase_groupList(JNIEnv* env, jobject obj) +{ + TQStringList _qlist; + _qlist = ((TDEConfigBase*) QtSupport::getQt(env, obj))->groupList(); + return (jobject) QtSupport::arrayWithTQStringList(env, (TQStringList*) &_qlist); +} + +JNIEXPORT jstring JNICALL +Java_org_kde_koala_TDEConfigBase_group(JNIEnv* env, jobject obj) +{ + TQString _qstring; + _qstring = ((TDEConfigBase*) QtSupport::getQt(env, obj))->group(); + return QtSupport::fromTQString(env, &_qstring); +} + +JNIEXPORT jboolean JNICALL +Java_org_kde_koala_TDEConfigBase_hasDefault(JNIEnv* env, jobject obj, jstring key) +{ +static TQString* _qstring_key = 0; + jboolean xret = (jboolean) ((TDEConfigBase*) QtSupport::getQt(env, obj))->hasDefault((const TQString&)*(TQString*) QtSupport::toTQString(env, key, &_qstring_key)); + return xret; +} + +JNIEXPORT jboolean JNICALL +Java_org_kde_koala_TDEConfigBase_hasGroup(JNIEnv* env, jobject obj, jstring group) +{ +static TQString* _qstring_group = 0; + jboolean xret = (jboolean) ((TDEConfigBase*) QtSupport::getQt(env, obj))->hasGroup((const TQString&)*(TQString*) QtSupport::toTQString(env, group, &_qstring_group)); + return xret; +} + +JNIEXPORT jboolean JNICALL +Java_org_kde_koala_TDEConfigBase_hasKey(JNIEnv* env, jobject obj, jstring key) +{ +static TQString* _qstring_key = 0; + jboolean xret = (jboolean) ((TDEConfigBase*) QtSupport::getQt(env, obj))->hasKey((const TQString&)*(TQString*) QtSupport::toTQString(env, key, &_qstring_key)); + return xret; +} + +JNIEXPORT jboolean JNICALL +Java_org_kde_koala_TDEConfigBase_isDirty(JNIEnv* env, jobject obj) +{ + jboolean xret = (jboolean) ((TDEConfigBase*) QtSupport::getQt(env, obj))->isDirty(); + return xret; +} + +JNIEXPORT jboolean JNICALL +Java_org_kde_koala_TDEConfigBase_isDollarExpansion(JNIEnv* env, jobject obj) +{ + jboolean xret = (jboolean) ((TDEConfigBase*) QtSupport::getQt(env, obj))->isDollarExpansion(); + return xret; +} + +JNIEXPORT jboolean JNICALL +Java_org_kde_koala_TDEConfigBase_isImmutable(JNIEnv* env, jobject obj) +{ + jboolean xret = (jboolean) ((TDEConfigBase*) QtSupport::getQt(env, obj))->isImmutable(); + return xret; +} + +JNIEXPORT jboolean JNICALL +Java_org_kde_koala_TDEConfigBase_isReadOnly(JNIEnv* env, jobject obj) +{ + jboolean xret = (jboolean) ((TDEConfigBase*) QtSupport::getQt(env, obj))->isReadOnly(); + return xret; +} + +JNIEXPORT jstring JNICALL +Java_org_kde_koala_TDEConfigBase_locale(JNIEnv* env, jobject obj) +{ + TQString _qstring; + _qstring = ((TDEConfigBase*) QtSupport::getQt(env, obj))->locale(); + return QtSupport::fromTQString(env, &_qstring); +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_TDEConfigBase_metaObject(JNIEnv* env, jobject obj) +{ + jobject xret = QtSupport::objectForQtKey(env, (void*)((TDEConfigBase*) QtSupport::getQt(env, obj))->metaObject(), "org.kde.qt.TQMetaObject"); + return xret; +} + +JNIEXPORT jboolean JNICALL +Java_org_kde_koala_TDEConfigBase_readBoolEntry__Ljava_lang_String_2(JNIEnv* env, jobject obj, jstring pKey) +{ +static TQString* _qstring_pKey = 0; + jboolean xret = (jboolean) ((TDEConfigBase*) QtSupport::getQt(env, obj))->readBoolEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey)); + return xret; +} + +JNIEXPORT jboolean JNICALL +Java_org_kde_koala_TDEConfigBase_readBoolEntry__Ljava_lang_String_2Z(JNIEnv* env, jobject obj, jstring pKey, jboolean bDefault) +{ +static TQString* _qstring_pKey = 0; + jboolean xret = (jboolean) ((TDEConfigBase*) QtSupport::getQt(env, obj))->readBoolEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (bool) bDefault); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_TDEConfigBase_readColorEntry__Ljava_lang_String_2(JNIEnv* env, jobject obj, jstring pKey) +{ +static TQString* _qstring_pKey = 0; + jobject xret = QtSupport::objectForQtKey(env, (void*)new TQColor(((TDEConfigBase*) QtSupport::getQt(env, obj))->readColorEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey))), "org.kde.qt.TQColor", TRUE); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_TDEConfigBase_readColorEntry__Ljava_lang_String_2Lorg_kde_qt_QColor_2(JNIEnv* env, jobject obj, jstring pKey, jobject pDefault) +{ +static TQString* _qstring_pKey = 0; + jobject xret = QtSupport::objectForQtKey(env, (void*)new TQColor(((TDEConfigBase*) QtSupport::getQt(env, obj))->readColorEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQColor*) QtSupport::getQt(env, pDefault))), "org.kde.qt.TQColor", TRUE); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_TDEConfigBase_readDateTimeEntry__Ljava_lang_String_2(JNIEnv* env, jobject obj, jstring pKey) +{ + TQDateTime _qdate; +static TQString* _qstring_pKey = 0; + _qdate = ((TDEConfigBase*) QtSupport::getQt(env, obj))->readDateTimeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey)); + return (jobject) QtSupport::fromTQDateTime(env, (TQDateTime*) &_qdate); +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_TDEConfigBase_readDateTimeEntry__Ljava_lang_String_2Ljava_util_Calendar_2(JNIEnv* env, jobject obj, jstring pKey, jobject pDefault) +{ + TQDateTime _qdate; +static TQString* _qstring_pKey = 0; +static TQDateTime* _qdate_pDefault = 0; + _qdate = ((TDEConfigBase*) QtSupport::getQt(env, obj))->readDateTimeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQDateTime*) QtSupport::toTQDateTime(env, pDefault, &_qdate_pDefault)); + return (jobject) QtSupport::fromTQDateTime(env, (TQDateTime*) &_qdate); +} + +JNIEXPORT jboolean JNICALL +Java_org_kde_koala_TDEConfigBase_readDefaults(JNIEnv* env, jobject obj) +{ + jboolean xret = (jboolean) ((TDEConfigBase*) QtSupport::getQt(env, obj))->readDefaults(); + return xret; +} + +JNIEXPORT jdouble JNICALL +Java_org_kde_koala_TDEConfigBase_readDoubleNumEntry__Ljava_lang_String_2(JNIEnv* env, jobject obj, jstring pKey) +{ +static TQString* _qstring_pKey = 0; + jdouble xret = (jdouble) ((TDEConfigBase*) QtSupport::getQt(env, obj))->readDoubleNumEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey)); + return xret; +} + +JNIEXPORT jdouble JNICALL +Java_org_kde_koala_TDEConfigBase_readDoubleNumEntry__Ljava_lang_String_2D(JNIEnv* env, jobject obj, jstring pKey, jdouble nDefault) +{ +static TQString* _qstring_pKey = 0; + jdouble xret = (jdouble) ((TDEConfigBase*) QtSupport::getQt(env, obj))->readDoubleNumEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (double) nDefault); + return xret; +} + +JNIEXPORT jstring JNICALL +Java_org_kde_koala_TDEConfigBase_readEntryUntranslated__Ljava_lang_String_2(JNIEnv* env, jobject obj, jstring pKey) +{ + TQString _qstring; +static TQString* _qstring_pKey = 0; + _qstring = ((TDEConfigBase*) QtSupport::getQt(env, obj))->readEntryUntranslated((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey)); + return QtSupport::fromTQString(env, &_qstring); +} + +JNIEXPORT jstring JNICALL +Java_org_kde_koala_TDEConfigBase_readEntryUntranslated__Ljava_lang_String_2Ljava_lang_String_2(JNIEnv* env, jobject obj, jstring pKey, jstring aDefault) +{ + TQString _qstring; +static TQString* _qstring_pKey = 0; +static TQString* _qstring_aDefault = 0; + _qstring = ((TDEConfigBase*) QtSupport::getQt(env, obj))->readEntryUntranslated((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQString&)*(TQString*) QtSupport::toTQString(env, aDefault, &_qstring_aDefault)); + return QtSupport::fromTQString(env, &_qstring); +} + +JNIEXPORT jstring JNICALL +Java_org_kde_koala_TDEConfigBase_readEntry__Ljava_lang_String_2(JNIEnv* env, jobject obj, jstring pKey) +{ + TQString _qstring; +static TQString* _qstring_pKey = 0; + _qstring = ((TDEConfigBase*) QtSupport::getQt(env, obj))->readEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey)); + return QtSupport::fromTQString(env, &_qstring); +} + +JNIEXPORT jstring JNICALL +Java_org_kde_koala_TDEConfigBase_readEntry__Ljava_lang_String_2Ljava_lang_String_2(JNIEnv* env, jobject obj, jstring pKey, jstring aDefault) +{ + TQString _qstring; +static TQString* _qstring_pKey = 0; +static TQString* _qstring_aDefault = 0; + _qstring = ((TDEConfigBase*) QtSupport::getQt(env, obj))->readEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQString&)*(TQString*) QtSupport::toTQString(env, aDefault, &_qstring_aDefault)); + return QtSupport::fromTQString(env, &_qstring); +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_TDEConfigBase_readFontEntry__Ljava_lang_String_2(JNIEnv* env, jobject obj, jstring pKey) +{ +static TQString* _qstring_pKey = 0; + jobject xret = QtSupport::objectForQtKey(env, (void*)new TQFont(((TDEConfigBase*) QtSupport::getQt(env, obj))->readFontEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey))), "org.kde.qt.TQFont", TRUE); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_TDEConfigBase_readFontEntry__Ljava_lang_String_2Lorg_kde_qt_QFont_2(JNIEnv* env, jobject obj, jstring pKey, jobject pDefault) +{ +static TQString* _qstring_pKey = 0; + jobject xret = QtSupport::objectForQtKey(env, (void*)new TQFont(((TDEConfigBase*) QtSupport::getQt(env, obj))->readFontEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQFont*) QtSupport::getQt(env, pDefault))), "org.kde.qt.TQFont", TRUE); + return xret; +} + +JNIEXPORT jintArray JNICALL +Java_org_kde_koala_TDEConfigBase_readIntListEntry(JNIEnv* env, jobject obj, jstring pKey) +{ + TQValueList _qintArray; +static TQString* _qstring_pKey = 0; + _qintArray = ((TDEConfigBase*) QtSupport::getQt(env, obj))->readIntListEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey)); + return QtSupport::fromTQIntValueList(env, &_qintArray); +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_TDEConfigBase_readListEntry__Ljava_lang_String_2(JNIEnv* env, jobject obj, jstring pKey) +{ + TQStringList _qlist; +static TQString* _qstring_pKey = 0; + _qlist = ((TDEConfigBase*) QtSupport::getQt(env, obj))->readListEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey)); + return (jobject) QtSupport::arrayWithTQStringList(env, (TQStringList*) &_qlist); +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_TDEConfigBase_readListEntry__Ljava_lang_String_2C(JNIEnv* env, jobject obj, jstring pKey, jchar sep) +{ + TQStringList _qlist; +static TQString* _qstring_pKey = 0; + _qlist = ((TDEConfigBase*) QtSupport::getQt(env, obj))->readListEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (char) sep); + return (jobject) QtSupport::arrayWithTQStringList(env, (TQStringList*) &_qlist); +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_TDEConfigBase_readListEntry__Ljava_lang_String_2_3Ljava_lang_String_2(JNIEnv* env, jobject obj, jstring pKey, jobjectArray aDefault) +{ + TQStringList _qlist; +static TQCString* _qstring_pKey = 0; +static TQStringList* _qlist_aDefault = 0; + _qlist = ((TDEConfigBase*) QtSupport::getQt(env, obj))->readListEntry((const char*) QtSupport::toCharString(env, pKey, &_qstring_pKey), (const TQStringList&)*(TQStringList*) QtSupport::toTQStringList(env, aDefault, &_qlist_aDefault)); + return (jobject) QtSupport::arrayWithTQStringList(env, (TQStringList*) &_qlist); +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_TDEConfigBase_readListEntry__Ljava_lang_String_2_3Ljava_lang_String_2C(JNIEnv* env, jobject obj, jstring pKey, jobjectArray aDefault, jchar sep) +{ + TQStringList _qlist; +static TQCString* _qstring_pKey = 0; +static TQStringList* _qlist_aDefault = 0; + _qlist = ((TDEConfigBase*) QtSupport::getQt(env, obj))->readListEntry((const char*) QtSupport::toCharString(env, pKey, &_qstring_pKey), (const TQStringList&)*(TQStringList*) QtSupport::toTQStringList(env, aDefault, &_qlist_aDefault), (char) sep); + return (jobject) QtSupport::arrayWithTQStringList(env, (TQStringList*) &_qlist); +} + +JNIEXPORT jlong JNICALL +Java_org_kde_koala_TDEConfigBase_readLongNumEntry__Ljava_lang_String_2(JNIEnv* env, jobject obj, jstring pKey) +{ +static TQString* _qstring_pKey = 0; + jlong xret = (jlong) ((TDEConfigBase*) QtSupport::getQt(env, obj))->readLongNumEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey)); + return xret; +} + +JNIEXPORT jlong JNICALL +Java_org_kde_koala_TDEConfigBase_readLongNumEntry__Ljava_lang_String_2J(JNIEnv* env, jobject obj, jstring pKey, jlong nDefault) +{ +static TQString* _qstring_pKey = 0; + jlong xret = (jlong) ((TDEConfigBase*) QtSupport::getQt(env, obj))->readLongNumEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (long) nDefault); + return xret; +} + +JNIEXPORT jlong JNICALL +Java_org_kde_koala_TDEConfigBase_readNum64Entry__Ljava_lang_String_2(JNIEnv* env, jobject obj, jstring pKey) +{ +static TQString* _qstring_pKey = 0; + jlong xret = (jlong) ((TDEConfigBase*) QtSupport::getQt(env, obj))->readNum64Entry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey)); + return xret; +} + +JNIEXPORT jlong JNICALL +Java_org_kde_koala_TDEConfigBase_readNum64Entry__Ljava_lang_String_2J(JNIEnv* env, jobject obj, jstring pKey, jlong nDefault) +{ +static TQString* _qstring_pKey = 0; + jlong xret = (jlong) ((TDEConfigBase*) QtSupport::getQt(env, obj))->readNum64Entry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (TQ_INT64) nDefault); + return xret; +} + +JNIEXPORT jint JNICALL +Java_org_kde_koala_TDEConfigBase_readNumEntry__Ljava_lang_String_2(JNIEnv* env, jobject obj, jstring pKey) +{ +static TQString* _qstring_pKey = 0; + jint xret = (jint) ((TDEConfigBase*) QtSupport::getQt(env, obj))->readNumEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey)); + return xret; +} + +JNIEXPORT jint JNICALL +Java_org_kde_koala_TDEConfigBase_readNumEntry__Ljava_lang_String_2I(JNIEnv* env, jobject obj, jstring pKey, jint nDefault) +{ +static TQString* _qstring_pKey = 0; + jint xret = (jint) ((TDEConfigBase*) QtSupport::getQt(env, obj))->readNumEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (int) nDefault); + return xret; +} + +JNIEXPORT jstring JNICALL +Java_org_kde_koala_TDEConfigBase_readPathEntry__Ljava_lang_String_2(JNIEnv* env, jobject obj, jstring pKey) +{ + TQString _qstring; +static TQString* _qstring_pKey = 0; + _qstring = ((TDEConfigBase*) QtSupport::getQt(env, obj))->readPathEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey)); + return QtSupport::fromTQString(env, &_qstring); +} + +JNIEXPORT jstring JNICALL +Java_org_kde_koala_TDEConfigBase_readPathEntry__Ljava_lang_String_2Ljava_lang_String_2(JNIEnv* env, jobject obj, jstring pKey, jstring aDefault) +{ + TQString _qstring; +static TQString* _qstring_pKey = 0; +static TQString* _qstring_aDefault = 0; + _qstring = ((TDEConfigBase*) QtSupport::getQt(env, obj))->readPathEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQString&)*(TQString*) QtSupport::toTQString(env, aDefault, &_qstring_aDefault)); + return QtSupport::fromTQString(env, &_qstring); +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_TDEConfigBase_readPathListEntry__Ljava_lang_String_2(JNIEnv* env, jobject obj, jstring pKey) +{ + TQStringList _qlist; +static TQString* _qstring_pKey = 0; + _qlist = ((TDEConfigBase*) QtSupport::getQt(env, obj))->readPathListEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey)); + return (jobject) QtSupport::arrayWithTQStringList(env, (TQStringList*) &_qlist); +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_TDEConfigBase_readPathListEntry__Ljava_lang_String_2C(JNIEnv* env, jobject obj, jstring pKey, jchar sep) +{ + TQStringList _qlist; +static TQString* _qstring_pKey = 0; + _qlist = ((TDEConfigBase*) QtSupport::getQt(env, obj))->readPathListEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (char) sep); + return (jobject) QtSupport::arrayWithTQStringList(env, (TQStringList*) &_qlist); +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_TDEConfigBase_readPointEntry__Ljava_lang_String_2(JNIEnv* env, jobject obj, jstring pKey) +{ +static TQString* _qstring_pKey = 0; + jobject xret = QtSupport::objectForQtKey(env, (void*)new TQPoint(((TDEConfigBase*) QtSupport::getQt(env, obj))->readPointEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey))), "org.kde.qt.TQPoint", TRUE); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_TDEConfigBase_readPointEntry__Ljava_lang_String_2Lorg_kde_qt_QPoint_2(JNIEnv* env, jobject obj, jstring pKey, jobject pDefault) +{ +static TQString* _qstring_pKey = 0; + jobject xret = QtSupport::objectForQtKey(env, (void*)new TQPoint(((TDEConfigBase*) QtSupport::getQt(env, obj))->readPointEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQPoint*) QtSupport::getQt(env, pDefault))), "org.kde.qt.TQPoint", TRUE); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_TDEConfigBase_readPropertyEntry(JNIEnv* env, jobject obj, jstring pKey, jobject aDefault) +{ +static TQString* _qstring_pKey = 0; + jobject xret = QtSupport::objectForQtKey(env, (void*)new TQVariant(((TDEConfigBase*) QtSupport::getQt(env, obj))->readPropertyEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQVariant&)*(const TQVariant*) QtSupport::getQt(env, aDefault))), "org.kde.qt.TQVariant", TRUE); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_TDEConfigBase_readRectEntry__Ljava_lang_String_2(JNIEnv* env, jobject obj, jstring pKey) +{ +static TQString* _qstring_pKey = 0; + jobject xret = QtSupport::objectForQtKey(env, (void*)new TQRect(((TDEConfigBase*) QtSupport::getQt(env, obj))->readRectEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey))), "org.kde.qt.TQRect", TRUE); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_TDEConfigBase_readRectEntry__Ljava_lang_String_2Lorg_kde_qt_QRect_2(JNIEnv* env, jobject obj, jstring pKey, jobject pDefault) +{ +static TQString* _qstring_pKey = 0; + jobject xret = QtSupport::objectForQtKey(env, (void*)new TQRect(((TDEConfigBase*) QtSupport::getQt(env, obj))->readRectEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQRect*) QtSupport::getQt(env, pDefault))), "org.kde.qt.TQRect", TRUE); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_TDEConfigBase_readSizeEntry__Ljava_lang_String_2(JNIEnv* env, jobject obj, jstring pKey) +{ +static TQString* _qstring_pKey = 0; + jobject xret = QtSupport::objectForQtKey(env, (void*)new TQSize(((TDEConfigBase*) QtSupport::getQt(env, obj))->readSizeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey))), "org.kde.qt.TQSize", TRUE); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_TDEConfigBase_readSizeEntry__Ljava_lang_String_2Lorg_kde_qt_QSize_2(JNIEnv* env, jobject obj, jstring pKey, jobject pDefault) +{ +static TQString* _qstring_pKey = 0; + jobject xret = QtSupport::objectForQtKey(env, (void*)new TQSize(((TDEConfigBase*) QtSupport::getQt(env, obj))->readSizeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQSize*) QtSupport::getQt(env, pDefault))), "org.kde.qt.TQSize", TRUE); + return xret; +} + +JNIEXPORT jlong JNICALL +Java_org_kde_koala_TDEConfigBase_readUnsignedLongNumEntry__Ljava_lang_String_2(JNIEnv* env, jobject obj, jstring pKey) +{ +static TQString* _qstring_pKey = 0; + jlong xret = (jlong) ((TDEConfigBase*) QtSupport::getQt(env, obj))->readUnsignedLongNumEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey)); + return xret; +} + +JNIEXPORT jlong JNICALL +Java_org_kde_koala_TDEConfigBase_readUnsignedLongNumEntry__Ljava_lang_String_2J(JNIEnv* env, jobject obj, jstring pKey, jlong nDefault) +{ +static TQString* _qstring_pKey = 0; + jlong xret = (jlong) ((TDEConfigBase*) QtSupport::getQt(env, obj))->readUnsignedLongNumEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (unsigned long) nDefault); + return xret; +} + +JNIEXPORT jlong JNICALL +Java_org_kde_koala_TDEConfigBase_readUnsignedNum64Entry__Ljava_lang_String_2(JNIEnv* env, jobject obj, jstring pKey) +{ +static TQString* _qstring_pKey = 0; + jlong xret = (jlong) ((TDEConfigBase*) QtSupport::getQt(env, obj))->readUnsignedNum64Entry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey)); + return xret; +} + +JNIEXPORT jlong JNICALL +Java_org_kde_koala_TDEConfigBase_readUnsignedNum64Entry__Ljava_lang_String_2J(JNIEnv* env, jobject obj, jstring pKey, jlong nDefault) +{ +static TQString* _qstring_pKey = 0; + jlong xret = (jlong) ((TDEConfigBase*) QtSupport::getQt(env, obj))->readUnsignedNum64Entry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (TQ_UINT64) nDefault); + return xret; +} + +JNIEXPORT jint JNICALL +Java_org_kde_koala_TDEConfigBase_readUnsignedNumEntry__Ljava_lang_String_2(JNIEnv* env, jobject obj, jstring pKey) +{ +static TQString* _qstring_pKey = 0; + jint xret = (jint) ((TDEConfigBase*) QtSupport::getQt(env, obj))->readUnsignedNumEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey)); + return xret; +} + +JNIEXPORT jint JNICALL +Java_org_kde_koala_TDEConfigBase_readUnsignedNumEntry__Ljava_lang_String_2I(JNIEnv* env, jobject obj, jstring pKey, jint nDefault) +{ +static TQString* _qstring_pKey = 0; + jint xret = (jint) ((TDEConfigBase*) QtSupport::getQt(env, obj))->readUnsignedNumEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (unsigned int) nDefault); + return xret; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigBase_reparseConfiguration(JNIEnv* env, jobject obj) +{ + ((TDEConfigBase*) QtSupport::getQt(env, obj))->reparseConfiguration(); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigBase_revertToDefault(JNIEnv* env, jobject obj, jstring key) +{ +static TQString* _qstring_key = 0; + ((TDEConfigBase*) QtSupport::getQt(env, obj))->revertToDefault((const TQString&)*(TQString*) QtSupport::toTQString(env, key, &_qstring_key)); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigBase_rollback__(JNIEnv* env, jobject obj) +{ + ((TDEConfigBase*) QtSupport::getQt(env, obj))->rollback(); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigBase_rollback__Z(JNIEnv* env, jobject obj, jboolean bDeep) +{ + ((TDEConfigBase*) QtSupport::getQt(env, obj))->rollback((bool) bDeep); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigBase_setDesktopGroup(JNIEnv* env, jobject obj) +{ + ((TDEConfigBase*) QtSupport::getQt(env, obj))->setDesktopGroup(); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigBase_setDollarExpansion__(JNIEnv* env, jobject obj) +{ + ((TDEConfigBase*) QtSupport::getQt(env, obj))->setDollarExpansion(); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigBase_setDollarExpansion__Z(JNIEnv* env, jobject obj, jboolean _bExpand) +{ + ((TDEConfigBase*) QtSupport::getQt(env, obj))->setDollarExpansion((bool) _bExpand); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigBase_setGroup(JNIEnv* env, jobject obj, jstring group) +{ +static TQString* _qstring_group = 0; + ((TDEConfigBase*) QtSupport::getQt(env, obj))->setGroup((const TQString&)*(TQString*) QtSupport::toTQString(env, group, &_qstring_group)); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigBase_setReadDefaults(JNIEnv* env, jobject obj, jboolean b) +{ + ((TDEConfigBase*) QtSupport::getQt(env, obj))->setReadDefaults((bool) b); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigBase_setReadOnly(JNIEnv* env, jobject obj, jboolean _ro) +{ + ((TDEConfigBase*) QtSupport::getQt(env, obj))->setReadOnly((bool) _ro); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigBase_sync(JNIEnv* env, jobject obj) +{ + ((TDEConfigBase*) QtSupport::getQt(env, obj))->sync(); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2D(JNIEnv* env, jobject obj, jstring pKey, jdouble nValue) +{ +static TQString* _qstring_pKey = 0; + ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (double) nValue); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2DZ(JNIEnv* env, jobject obj, jstring pKey, jdouble nValue, jboolean bPersistent) +{ +static TQString* _qstring_pKey = 0; + ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (double) nValue, (bool) bPersistent); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2DZZ(JNIEnv* env, jobject obj, jstring pKey, jdouble nValue, jboolean bPersistent, jboolean bGlobal) +{ +static TQString* _qstring_pKey = 0; + ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (double) nValue, (bool) bPersistent, (bool) bGlobal); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2DZZC(JNIEnv* env, jobject obj, jstring pKey, jdouble nValue, jboolean bPersistent, jboolean bGlobal, jchar format) +{ +static TQString* _qstring_pKey = 0; + ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (double) nValue, (bool) bPersistent, (bool) bGlobal, (char) format); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2DZZCI(JNIEnv* env, jobject obj, jstring pKey, jdouble nValue, jboolean bPersistent, jboolean bGlobal, jchar format, jint precision) +{ +static TQString* _qstring_pKey = 0; + ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (double) nValue, (bool) bPersistent, (bool) bGlobal, (char) format, (int) precision); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2DZZCIZ(JNIEnv* env, jobject obj, jstring pKey, jdouble nValue, jboolean bPersistent, jboolean bGlobal, jchar format, jint precision, jboolean bNLS) +{ +static TQString* _qstring_pKey = 0; + ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (double) nValue, (bool) bPersistent, (bool) bGlobal, (char) format, (int) precision, (bool) bNLS); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2I(JNIEnv* env, jobject obj, jstring pKey, jint nValue) +{ +static TQString* _qstring_pKey = 0; + ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (int) nValue); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2IZ(JNIEnv* env, jobject obj, jstring pKey, jint nValue, jboolean bPersistent) +{ +static TQString* _qstring_pKey = 0; + ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (int) nValue, (bool) bPersistent); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2IZZ(JNIEnv* env, jobject obj, jstring pKey, jint nValue, jboolean bPersistent, jboolean bGlobal) +{ +static TQString* _qstring_pKey = 0; + ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (int) nValue, (bool) bPersistent, (bool) bGlobal); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2IZZZ(JNIEnv* env, jobject obj, jstring pKey, jint nValue, jboolean bPersistent, jboolean bGlobal, jboolean bNLS) +{ +static TQString* _qstring_pKey = 0; + ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (int) nValue, (bool) bPersistent, (bool) bGlobal, (bool) bNLS); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2J(JNIEnv* env, jobject obj, jstring pKey, jlong nValue) +{ +static TQString* _qstring_pKey = 0; + ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (long) nValue); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2JZ(JNIEnv* env, jobject obj, jstring pKey, jlong nValue, jboolean bPersistent) +{ +static TQString* _qstring_pKey = 0; + ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (long) nValue, (bool) bPersistent); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2JZZ(JNIEnv* env, jobject obj, jstring pKey, jlong nValue, jboolean bPersistent, jboolean bGlobal) +{ +static TQString* _qstring_pKey = 0; + ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (long) nValue, (bool) bPersistent, (bool) bGlobal); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2JZZZ(JNIEnv* env, jobject obj, jstring pKey, jlong nValue, jboolean bPersistent, jboolean bGlobal, jboolean bNLS) +{ +static TQString* _qstring_pKey = 0; + ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (long) nValue, (bool) bPersistent, (bool) bGlobal, (bool) bNLS); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Ljava_lang_String_2(JNIEnv* env, jobject obj, jstring pKey, jstring pValue) +{ +static TQString* _qstring_pKey = 0; +static TQString* _qstring_pValue = 0; + ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQString&)*(TQString*) QtSupport::toTQString(env, pValue, &_qstring_pValue)); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Ljava_lang_String_2Z(JNIEnv* env, jobject obj, jstring pKey, jstring pValue, jboolean bPersistent) +{ +static TQString* _qstring_pKey = 0; +static TQString* _qstring_pValue = 0; + ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQString&)*(TQString*) QtSupport::toTQString(env, pValue, &_qstring_pValue), (bool) bPersistent); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Ljava_lang_String_2ZZ(JNIEnv* env, jobject obj, jstring pKey, jstring pValue, jboolean bPersistent, jboolean bGlobal) +{ +static TQString* _qstring_pKey = 0; +static TQString* _qstring_pValue = 0; + ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQString&)*(TQString*) QtSupport::toTQString(env, pValue, &_qstring_pValue), (bool) bPersistent, (bool) bGlobal); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Ljava_lang_String_2ZZZ(JNIEnv* env, jobject obj, jstring pKey, jstring pValue, jboolean bPersistent, jboolean bGlobal, jboolean bNLS) +{ +static TQString* _qstring_pKey = 0; +static TQString* _qstring_pValue = 0; + ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQString&)*(TQString*) QtSupport::toTQString(env, pValue, &_qstring_pValue), (bool) bPersistent, (bool) bGlobal, (bool) bNLS); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Ljava_util_Calendar_2(JNIEnv* env, jobject obj, jstring pKey, jobject rDateTime) +{ +static TQString* _qstring_pKey = 0; +static TQDateTime* _qdate_rDateTime = 0; + ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQDateTime&)*(TQDateTime*) QtSupport::toTQDateTime(env, rDateTime, &_qdate_rDateTime)); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Ljava_util_Calendar_2Z(JNIEnv* env, jobject obj, jstring pKey, jobject rDateTime, jboolean bPersistent) +{ +static TQString* _qstring_pKey = 0; +static TQDateTime* _qdate_rDateTime = 0; + ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQDateTime&)*(TQDateTime*) QtSupport::toTQDateTime(env, rDateTime, &_qdate_rDateTime), (bool) bPersistent); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Ljava_util_Calendar_2ZZ(JNIEnv* env, jobject obj, jstring pKey, jobject rDateTime, jboolean bPersistent, jboolean bGlobal) +{ +static TQString* _qstring_pKey = 0; +static TQDateTime* _qdate_rDateTime = 0; + ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQDateTime&)*(TQDateTime*) QtSupport::toTQDateTime(env, rDateTime, &_qdate_rDateTime), (bool) bPersistent, (bool) bGlobal); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Ljava_util_Calendar_2ZZZ(JNIEnv* env, jobject obj, jstring pKey, jobject rDateTime, jboolean bPersistent, jboolean bGlobal, jboolean bNLS) +{ +static TQString* _qstring_pKey = 0; +static TQDateTime* _qdate_rDateTime = 0; + ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQDateTime&)*(TQDateTime*) QtSupport::toTQDateTime(env, rDateTime, &_qdate_rDateTime), (bool) bPersistent, (bool) bGlobal, (bool) bNLS); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QColor_2(JNIEnv* env, jobject obj, jstring pKey, jobject rColor) +{ +static TQString* _qstring_pKey = 0; + ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQColor&)*(const TQColor*) QtSupport::getQt(env, rColor)); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QColor_2Z(JNIEnv* env, jobject obj, jstring pKey, jobject rColor, jboolean bPersistent) +{ +static TQString* _qstring_pKey = 0; + ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQColor&)*(const TQColor*) QtSupport::getQt(env, rColor), (bool) bPersistent); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QColor_2ZZ(JNIEnv* env, jobject obj, jstring pKey, jobject rColor, jboolean bPersistent, jboolean bGlobal) +{ +static TQString* _qstring_pKey = 0; + ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQColor&)*(const TQColor*) QtSupport::getQt(env, rColor), (bool) bPersistent, (bool) bGlobal); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QColor_2ZZZ(JNIEnv* env, jobject obj, jstring pKey, jobject rColor, jboolean bPersistent, jboolean bGlobal, jboolean bNLS) +{ +static TQString* _qstring_pKey = 0; + ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQColor&)*(const TQColor*) QtSupport::getQt(env, rColor), (bool) bPersistent, (bool) bGlobal, (bool) bNLS); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QFont_2(JNIEnv* env, jobject obj, jstring pKey, jobject rFont) +{ +static TQString* _qstring_pKey = 0; + ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQFont&)*(const TQFont*) QtSupport::getQt(env, rFont)); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QFont_2Z(JNIEnv* env, jobject obj, jstring pKey, jobject rFont, jboolean bPersistent) +{ +static TQString* _qstring_pKey = 0; + ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQFont&)*(const TQFont*) QtSupport::getQt(env, rFont), (bool) bPersistent); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QFont_2ZZ(JNIEnv* env, jobject obj, jstring pKey, jobject rFont, jboolean bPersistent, jboolean bGlobal) +{ +static TQString* _qstring_pKey = 0; + ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQFont&)*(const TQFont*) QtSupport::getQt(env, rFont), (bool) bPersistent, (bool) bGlobal); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QFont_2ZZZ(JNIEnv* env, jobject obj, jstring pKey, jobject rFont, jboolean bPersistent, jboolean bGlobal, jboolean bNLS) +{ +static TQString* _qstring_pKey = 0; + ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQFont&)*(const TQFont*) QtSupport::getQt(env, rFont), (bool) bPersistent, (bool) bGlobal, (bool) bNLS); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QPoint_2(JNIEnv* env, jobject obj, jstring pKey, jobject rValue) +{ +static TQString* _qstring_pKey = 0; + ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQPoint&)*(const TQPoint*) QtSupport::getQt(env, rValue)); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QPoint_2Z(JNIEnv* env, jobject obj, jstring pKey, jobject rValue, jboolean bPersistent) +{ +static TQString* _qstring_pKey = 0; + ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQPoint&)*(const TQPoint*) QtSupport::getQt(env, rValue), (bool) bPersistent); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QPoint_2ZZ(JNIEnv* env, jobject obj, jstring pKey, jobject rValue, jboolean bPersistent, jboolean bGlobal) +{ +static TQString* _qstring_pKey = 0; + ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQPoint&)*(const TQPoint*) QtSupport::getQt(env, rValue), (bool) bPersistent, (bool) bGlobal); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QPoint_2ZZZ(JNIEnv* env, jobject obj, jstring pKey, jobject rValue, jboolean bPersistent, jboolean bGlobal, jboolean bNLS) +{ +static TQString* _qstring_pKey = 0; + ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQPoint&)*(const TQPoint*) QtSupport::getQt(env, rValue), (bool) bPersistent, (bool) bGlobal, (bool) bNLS); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QRect_2(JNIEnv* env, jobject obj, jstring pKey, jobject rValue) +{ +static TQString* _qstring_pKey = 0; + ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQRect&)*(const TQRect*) QtSupport::getQt(env, rValue)); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QRect_2Z(JNIEnv* env, jobject obj, jstring pKey, jobject rValue, jboolean bPersistent) +{ +static TQString* _qstring_pKey = 0; + ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQRect&)*(const TQRect*) QtSupport::getQt(env, rValue), (bool) bPersistent); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QRect_2ZZ(JNIEnv* env, jobject obj, jstring pKey, jobject rValue, jboolean bPersistent, jboolean bGlobal) +{ +static TQString* _qstring_pKey = 0; + ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQRect&)*(const TQRect*) QtSupport::getQt(env, rValue), (bool) bPersistent, (bool) bGlobal); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QRect_2ZZZ(JNIEnv* env, jobject obj, jstring pKey, jobject rValue, jboolean bPersistent, jboolean bGlobal, jboolean bNLS) +{ +static TQString* _qstring_pKey = 0; + ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQRect&)*(const TQRect*) QtSupport::getQt(env, rValue), (bool) bPersistent, (bool) bGlobal, (bool) bNLS); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QSize_2(JNIEnv* env, jobject obj, jstring pKey, jobject rValue) +{ +static TQString* _qstring_pKey = 0; + ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQSize&)*(const TQSize*) QtSupport::getQt(env, rValue)); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QSize_2Z(JNIEnv* env, jobject obj, jstring pKey, jobject rValue, jboolean bPersistent) +{ +static TQString* _qstring_pKey = 0; + ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQSize&)*(const TQSize*) QtSupport::getQt(env, rValue), (bool) bPersistent); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QSize_2ZZ(JNIEnv* env, jobject obj, jstring pKey, jobject rValue, jboolean bPersistent, jboolean bGlobal) +{ +static TQString* _qstring_pKey = 0; + ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQSize&)*(const TQSize*) QtSupport::getQt(env, rValue), (bool) bPersistent, (bool) bGlobal); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QSize_2ZZZ(JNIEnv* env, jobject obj, jstring pKey, jobject rValue, jboolean bPersistent, jboolean bGlobal, jboolean bNLS) +{ +static TQString* _qstring_pKey = 0; + ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQSize&)*(const TQSize*) QtSupport::getQt(env, rValue), (bool) bPersistent, (bool) bGlobal, (bool) bNLS); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QVariant_2(JNIEnv* env, jobject obj, jstring pKey, jobject rValue) +{ +static TQString* _qstring_pKey = 0; + ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQVariant&)*(const TQVariant*) QtSupport::getQt(env, rValue)); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QVariant_2Z(JNIEnv* env, jobject obj, jstring pKey, jobject rValue, jboolean bPersistent) +{ +static TQString* _qstring_pKey = 0; + ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQVariant&)*(const TQVariant*) QtSupport::getQt(env, rValue), (bool) bPersistent); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QVariant_2ZZ(JNIEnv* env, jobject obj, jstring pKey, jobject rValue, jboolean bPersistent, jboolean bGlobal) +{ +static TQString* _qstring_pKey = 0; + ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQVariant&)*(const TQVariant*) QtSupport::getQt(env, rValue), (bool) bPersistent, (bool) bGlobal); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QVariant_2ZZZ(JNIEnv* env, jobject obj, jstring pKey, jobject rValue, jboolean bPersistent, jboolean bGlobal, jboolean bNLS) +{ +static TQString* _qstring_pKey = 0; + ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQVariant&)*(const TQVariant*) QtSupport::getQt(env, rValue), (bool) bPersistent, (bool) bGlobal, (bool) bNLS); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Z(JNIEnv* env, jobject obj, jstring pKey, jboolean bValue) +{ +static TQString* _qstring_pKey = 0; + ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (bool) bValue); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2ZZ(JNIEnv* env, jobject obj, jstring pKey, jboolean bValue, jboolean bPersistent) +{ +static TQString* _qstring_pKey = 0; + ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (bool) bValue, (bool) bPersistent); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2ZZZ(JNIEnv* env, jobject obj, jstring pKey, jboolean bValue, jboolean bPersistent, jboolean bGlobal) +{ +static TQString* _qstring_pKey = 0; + ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (bool) bValue, (bool) bPersistent, (bool) bGlobal); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2ZZZZ(JNIEnv* env, jobject obj, jstring pKey, jboolean bValue, jboolean bPersistent, jboolean bGlobal, jboolean bNLS) +{ +static TQString* _qstring_pKey = 0; + ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (bool) bValue, (bool) bPersistent, (bool) bGlobal, (bool) bNLS); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2_3I(JNIEnv* env, jobject obj, jstring pKey, jintArray rValue) +{ +static TQString* _qstring_pKey = 0; +static TQValueList* _qlist_rValue = 0; + ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQValueList&) QtSupport::toTQIntValueList(env, rValue, &_qlist_rValue)); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2_3IZ(JNIEnv* env, jobject obj, jstring pKey, jintArray rValue, jboolean bPersistent) +{ +static TQString* _qstring_pKey = 0; +static TQValueList* _qlist_rValue = 0; + ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQValueList&) QtSupport::toTQIntValueList(env, rValue, &_qlist_rValue), (bool) bPersistent); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2_3IZZ(JNIEnv* env, jobject obj, jstring pKey, jintArray rValue, jboolean bPersistent, jboolean bGlobal) +{ +static TQString* _qstring_pKey = 0; +static TQValueList* _qlist_rValue = 0; + ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQValueList&) QtSupport::toTQIntValueList(env, rValue, &_qlist_rValue), (bool) bPersistent, (bool) bGlobal); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2_3IZZZ(JNIEnv* env, jobject obj, jstring pKey, jintArray rValue, jboolean bPersistent, jboolean bGlobal, jboolean bNLS) +{ +static TQString* _qstring_pKey = 0; +static TQValueList* _qlist_rValue = 0; + ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQValueList&) QtSupport::toTQIntValueList(env, rValue, &_qlist_rValue), (bool) bPersistent, (bool) bGlobal, (bool) bNLS); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2_3Ljava_lang_String_2(JNIEnv* env, jobject obj, jstring pKey, jobjectArray rValue) +{ +static TQString* _qstring_pKey = 0; +static TQStrList* _qlist_rValue = 0; + ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQStrList&)*(TQStrList*) QtSupport::toTQStrList(env, rValue, &_qlist_rValue)); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2_3Ljava_lang_String_2C(JNIEnv* env, jobject obj, jstring pKey, jobjectArray rValue, jchar sep) +{ +static TQString* _qstring_pKey = 0; +static TQStrList* _qlist_rValue = 0; + ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQStrList&)*(TQStrList*) QtSupport::toTQStrList(env, rValue, &_qlist_rValue), (char) sep); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2_3Ljava_lang_String_2CZ(JNIEnv* env, jobject obj, jstring pKey, jobjectArray rValue, jchar sep, jboolean bPersistent) +{ +static TQString* _qstring_pKey = 0; +static TQStrList* _qlist_rValue = 0; + ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQStrList&)*(TQStrList*) QtSupport::toTQStrList(env, rValue, &_qlist_rValue), (char) sep, (bool) bPersistent); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2_3Ljava_lang_String_2CZZ(JNIEnv* env, jobject obj, jstring pKey, jobjectArray rValue, jchar sep, jboolean bPersistent, jboolean bGlobal) +{ +static TQString* _qstring_pKey = 0; +static TQStrList* _qlist_rValue = 0; + ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQStrList&)*(TQStrList*) QtSupport::toTQStrList(env, rValue, &_qlist_rValue), (char) sep, (bool) bPersistent, (bool) bGlobal); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2_3Ljava_lang_String_2CZZZ(JNIEnv* env, jobject obj, jstring pKey, jobjectArray rValue, jchar sep, jboolean bPersistent, jboolean bGlobal, jboolean bNLS) +{ +static TQString* _qstring_pKey = 0; +static TQStrList* _qlist_rValue = 0; + ((TDEConfigBase*) QtSupport::getQt(env, obj))->writeEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQStrList&)*(TQStrList*) QtSupport::toTQStrList(env, rValue, &_qlist_rValue), (char) sep, (bool) bPersistent, (bool) bGlobal, (bool) bNLS); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigBase_writePathEntry__Ljava_lang_String_2Ljava_lang_String_2(JNIEnv* env, jobject obj, jstring pKey, jstring path) +{ +static TQString* _qstring_pKey = 0; +static TQString* _qstring_path = 0; + ((TDEConfigBase*) QtSupport::getQt(env, obj))->writePathEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQString&)*(TQString*) QtSupport::toTQString(env, path, &_qstring_path)); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigBase_writePathEntry__Ljava_lang_String_2Ljava_lang_String_2Z(JNIEnv* env, jobject obj, jstring pKey, jstring path, jboolean bPersistent) +{ +static TQString* _qstring_pKey = 0; +static TQString* _qstring_path = 0; + ((TDEConfigBase*) QtSupport::getQt(env, obj))->writePathEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQString&)*(TQString*) QtSupport::toTQString(env, path, &_qstring_path), (bool) bPersistent); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigBase_writePathEntry__Ljava_lang_String_2Ljava_lang_String_2ZZ(JNIEnv* env, jobject obj, jstring pKey, jstring path, jboolean bPersistent, jboolean bGlobal) +{ +static TQString* _qstring_pKey = 0; +static TQString* _qstring_path = 0; + ((TDEConfigBase*) QtSupport::getQt(env, obj))->writePathEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQString&)*(TQString*) QtSupport::toTQString(env, path, &_qstring_path), (bool) bPersistent, (bool) bGlobal); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigBase_writePathEntry__Ljava_lang_String_2Ljava_lang_String_2ZZZ(JNIEnv* env, jobject obj, jstring pKey, jstring path, jboolean bPersistent, jboolean bGlobal, jboolean bNLS) +{ +static TQString* _qstring_pKey = 0; +static TQString* _qstring_path = 0; + ((TDEConfigBase*) QtSupport::getQt(env, obj))->writePathEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQString&)*(TQString*) QtSupport::toTQString(env, path, &_qstring_path), (bool) bPersistent, (bool) bGlobal, (bool) bNLS); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigBase_writePathEntry__Ljava_lang_String_2_3Ljava_lang_String_2(JNIEnv* env, jobject obj, jstring pKey, jobjectArray rValue) +{ +static TQString* _qstring_pKey = 0; +static TQStringList* _qlist_rValue = 0; + ((TDEConfigBase*) QtSupport::getQt(env, obj))->writePathEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQStringList&)*(TQStringList*) QtSupport::toTQStringList(env, rValue, &_qlist_rValue)); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigBase_writePathEntry__Ljava_lang_String_2_3Ljava_lang_String_2C(JNIEnv* env, jobject obj, jstring pKey, jobjectArray rValue, jchar sep) +{ +static TQString* _qstring_pKey = 0; +static TQStringList* _qlist_rValue = 0; + ((TDEConfigBase*) QtSupport::getQt(env, obj))->writePathEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQStringList&)*(TQStringList*) QtSupport::toTQStringList(env, rValue, &_qlist_rValue), (char) sep); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigBase_writePathEntry__Ljava_lang_String_2_3Ljava_lang_String_2CZ(JNIEnv* env, jobject obj, jstring pKey, jobjectArray rValue, jchar sep, jboolean bPersistent) +{ +static TQString* _qstring_pKey = 0; +static TQStringList* _qlist_rValue = 0; + ((TDEConfigBase*) QtSupport::getQt(env, obj))->writePathEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQStringList&)*(TQStringList*) QtSupport::toTQStringList(env, rValue, &_qlist_rValue), (char) sep, (bool) bPersistent); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigBase_writePathEntry__Ljava_lang_String_2_3Ljava_lang_String_2CZZ(JNIEnv* env, jobject obj, jstring pKey, jobjectArray rValue, jchar sep, jboolean bPersistent, jboolean bGlobal) +{ +static TQString* _qstring_pKey = 0; +static TQStringList* _qlist_rValue = 0; + ((TDEConfigBase*) QtSupport::getQt(env, obj))->writePathEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQStringList&)*(TQStringList*) QtSupport::toTQStringList(env, rValue, &_qlist_rValue), (char) sep, (bool) bPersistent, (bool) bGlobal); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigBase_writePathEntry__Ljava_lang_String_2_3Ljava_lang_String_2CZZZ(JNIEnv* env, jobject obj, jstring pKey, jobjectArray rValue, jchar sep, jboolean bPersistent, jboolean bGlobal, jboolean bNLS) +{ +static TQString* _qstring_pKey = 0; +static TQStringList* _qlist_rValue = 0; + ((TDEConfigBase*) QtSupport::getQt(env, obj))->writePathEntry((const TQString&)*(TQString*) QtSupport::toTQString(env, pKey, &_qstring_pKey), (const TQStringList&)*(TQStringList*) QtSupport::toTQStringList(env, rValue, &_qlist_rValue), (char) sep, (bool) bPersistent, (bool) bGlobal, (bool) bNLS); + return; +} + diff --git a/kdejava/koala/kdejava/TDEConfigBase.h b/kdejava/koala/kdejava/TDEConfigBase.h new file mode 100644 index 00000000..abfb85d2 --- /dev/null +++ b/kdejava/koala/kdejava/TDEConfigBase.h @@ -0,0 +1,162 @@ +/* DO NOT EDIT THIS FILE - it is machine generated */ + +#ifndef __org_kde_koala_TDEConfigBase__ +#define __org_kde_koala_TDEConfigBase__ + +#include + +#ifdef __cplusplus +extern "C" +{ +#endif + +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_TDEConfigBase_metaObject (JNIEnv *env, jobject); +extern JNIEXPORT jstring JNICALL Java_org_kde_koala_TDEConfigBase_className (JNIEnv *env, jobject); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_setGroup (JNIEnv *env, jobject, jstring); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_setDesktopGroup (JNIEnv *env, jobject); +extern JNIEXPORT jstring JNICALL Java_org_kde_koala_TDEConfigBase_group (JNIEnv *env, jobject); +extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_TDEConfigBase_hasGroup (JNIEnv *env, jobject, jstring); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_TDEConfigBase_groupList (JNIEnv *env, jobject); +extern JNIEXPORT jstring JNICALL Java_org_kde_koala_TDEConfigBase_locale (JNIEnv *env, jobject); +extern JNIEXPORT jstring JNICALL Java_org_kde_koala_TDEConfigBase_readEntry__Ljava_lang_String_2Ljava_lang_String_2 (JNIEnv *env, jobject, jstring, jstring); +extern JNIEXPORT jstring JNICALL Java_org_kde_koala_TDEConfigBase_readEntry__Ljava_lang_String_2 (JNIEnv *env, jobject, jstring); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_TDEConfigBase_readPropertyEntry (JNIEnv *env, jobject, jstring, jobject); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_TDEConfigBase_readListEntry__Ljava_lang_String_2C (JNIEnv *env, jobject, jstring, jchar); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_TDEConfigBase_readListEntry__Ljava_lang_String_2 (JNIEnv *env, jobject, jstring); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_TDEConfigBase_readListEntry__Ljava_lang_String_2_3Ljava_lang_String_2C (JNIEnv *env, jobject, jstring, jobjectArray, jchar); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_TDEConfigBase_readListEntry__Ljava_lang_String_2_3Ljava_lang_String_2 (JNIEnv *env, jobject, jstring, jobjectArray); +extern JNIEXPORT jintArray JNICALL Java_org_kde_koala_TDEConfigBase_readIntListEntry (JNIEnv *env, jobject, jstring); +extern JNIEXPORT jstring JNICALL Java_org_kde_koala_TDEConfigBase_readPathEntry__Ljava_lang_String_2Ljava_lang_String_2 (JNIEnv *env, jobject, jstring, jstring); +extern JNIEXPORT jstring JNICALL Java_org_kde_koala_TDEConfigBase_readPathEntry__Ljava_lang_String_2 (JNIEnv *env, jobject, jstring); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_TDEConfigBase_readPathListEntry__Ljava_lang_String_2C (JNIEnv *env, jobject, jstring, jchar); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_TDEConfigBase_readPathListEntry__Ljava_lang_String_2 (JNIEnv *env, jobject, jstring); +extern JNIEXPORT jint JNICALL Java_org_kde_koala_TDEConfigBase_readNumEntry__Ljava_lang_String_2I (JNIEnv *env, jobject, jstring, jint); +extern JNIEXPORT jint JNICALL Java_org_kde_koala_TDEConfigBase_readNumEntry__Ljava_lang_String_2 (JNIEnv *env, jobject, jstring); +extern JNIEXPORT jint JNICALL Java_org_kde_koala_TDEConfigBase_readUnsignedNumEntry__Ljava_lang_String_2I (JNIEnv *env, jobject, jstring, jint); +extern JNIEXPORT jint JNICALL Java_org_kde_koala_TDEConfigBase_readUnsignedNumEntry__Ljava_lang_String_2 (JNIEnv *env, jobject, jstring); +extern JNIEXPORT jlong JNICALL Java_org_kde_koala_TDEConfigBase_readLongNumEntry__Ljava_lang_String_2J (JNIEnv *env, jobject, jstring, jlong); +extern JNIEXPORT jlong JNICALL Java_org_kde_koala_TDEConfigBase_readLongNumEntry__Ljava_lang_String_2 (JNIEnv *env, jobject, jstring); +extern JNIEXPORT jlong JNICALL Java_org_kde_koala_TDEConfigBase_readUnsignedLongNumEntry__Ljava_lang_String_2J (JNIEnv *env, jobject, jstring, jlong); +extern JNIEXPORT jlong JNICALL Java_org_kde_koala_TDEConfigBase_readUnsignedLongNumEntry__Ljava_lang_String_2 (JNIEnv *env, jobject, jstring); +extern JNIEXPORT jlong JNICALL Java_org_kde_koala_TDEConfigBase_readNum64Entry__Ljava_lang_String_2J (JNIEnv *env, jobject, jstring, jlong); +extern JNIEXPORT jlong JNICALL Java_org_kde_koala_TDEConfigBase_readNum64Entry__Ljava_lang_String_2 (JNIEnv *env, jobject, jstring); +extern JNIEXPORT jlong JNICALL Java_org_kde_koala_TDEConfigBase_readUnsignedNum64Entry__Ljava_lang_String_2J (JNIEnv *env, jobject, jstring, jlong); +extern JNIEXPORT jlong JNICALL Java_org_kde_koala_TDEConfigBase_readUnsignedNum64Entry__Ljava_lang_String_2 (JNIEnv *env, jobject, jstring); +extern JNIEXPORT jdouble JNICALL Java_org_kde_koala_TDEConfigBase_readDoubleNumEntry__Ljava_lang_String_2D (JNIEnv *env, jobject, jstring, jdouble); +extern JNIEXPORT jdouble JNICALL Java_org_kde_koala_TDEConfigBase_readDoubleNumEntry__Ljava_lang_String_2 (JNIEnv *env, jobject, jstring); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_TDEConfigBase_readFontEntry__Ljava_lang_String_2Lorg_kde_qt_QFont_2 (JNIEnv *env, jobject, jstring, jobject); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_TDEConfigBase_readFontEntry__Ljava_lang_String_2 (JNIEnv *env, jobject, jstring); +extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_TDEConfigBase_readBoolEntry__Ljava_lang_String_2Z (JNIEnv *env, jobject, jstring, jboolean); +extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_TDEConfigBase_readBoolEntry__Ljava_lang_String_2 (JNIEnv *env, jobject, jstring); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_TDEConfigBase_readRectEntry__Ljava_lang_String_2Lorg_kde_qt_QRect_2 (JNIEnv *env, jobject, jstring, jobject); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_TDEConfigBase_readRectEntry__Ljava_lang_String_2 (JNIEnv *env, jobject, jstring); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_TDEConfigBase_readPointEntry__Ljava_lang_String_2Lorg_kde_qt_QPoint_2 (JNIEnv *env, jobject, jstring, jobject); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_TDEConfigBase_readPointEntry__Ljava_lang_String_2 (JNIEnv *env, jobject, jstring); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_TDEConfigBase_readSizeEntry__Ljava_lang_String_2Lorg_kde_qt_QSize_2 (JNIEnv *env, jobject, jstring, jobject); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_TDEConfigBase_readSizeEntry__Ljava_lang_String_2 (JNIEnv *env, jobject, jstring); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_TDEConfigBase_readColorEntry__Ljava_lang_String_2Lorg_kde_qt_QColor_2 (JNIEnv *env, jobject, jstring, jobject); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_TDEConfigBase_readColorEntry__Ljava_lang_String_2 (JNIEnv *env, jobject, jstring); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_TDEConfigBase_readDateTimeEntry__Ljava_lang_String_2Ljava_util_Calendar_2 (JNIEnv *env, jobject, jstring, jobject); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_TDEConfigBase_readDateTimeEntry__Ljava_lang_String_2 (JNIEnv *env, jobject, jstring); +extern JNIEXPORT jstring JNICALL Java_org_kde_koala_TDEConfigBase_readEntryUntranslated__Ljava_lang_String_2Ljava_lang_String_2 (JNIEnv *env, jobject, jstring, jstring); +extern JNIEXPORT jstring JNICALL Java_org_kde_koala_TDEConfigBase_readEntryUntranslated__Ljava_lang_String_2 (JNIEnv *env, jobject, jstring); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Ljava_lang_String_2ZZZ (JNIEnv *env, jobject, jstring, jstring, jboolean, jboolean, jboolean); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Ljava_lang_String_2ZZ (JNIEnv *env, jobject, jstring, jstring, jboolean, jboolean); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Ljava_lang_String_2Z (JNIEnv *env, jobject, jstring, jstring, jboolean); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Ljava_lang_String_2 (JNIEnv *env, jobject, jstring, jstring); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QVariant_2ZZZ (JNIEnv *env, jobject, jstring, jobject, jboolean, jboolean, jboolean); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QVariant_2ZZ (JNIEnv *env, jobject, jstring, jobject, jboolean, jboolean); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QVariant_2Z (JNIEnv *env, jobject, jstring, jobject, jboolean); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QVariant_2 (JNIEnv *env, jobject, jstring, jobject); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2_3Ljava_lang_String_2CZZZ (JNIEnv *env, jobject, jstring, jobjectArray, jchar, jboolean, jboolean, jboolean); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2_3Ljava_lang_String_2CZZ (JNIEnv *env, jobject, jstring, jobjectArray, jchar, jboolean, jboolean); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2_3Ljava_lang_String_2CZ (JNIEnv *env, jobject, jstring, jobjectArray, jchar, jboolean); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2_3Ljava_lang_String_2C (JNIEnv *env, jobject, jstring, jobjectArray, jchar); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2_3Ljava_lang_String_2 (JNIEnv *env, jobject, jstring, jobjectArray); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2_3IZZZ (JNIEnv *env, jobject, jstring, jintArray, jboolean, jboolean, jboolean); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2_3IZZ (JNIEnv *env, jobject, jstring, jintArray, jboolean, jboolean); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2_3IZ (JNIEnv *env, jobject, jstring, jintArray, jboolean); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2_3I (JNIEnv *env, jobject, jstring, jintArray); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2IZZZ (JNIEnv *env, jobject, jstring, jint, jboolean, jboolean, jboolean); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2IZZ (JNIEnv *env, jobject, jstring, jint, jboolean, jboolean); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2IZ (JNIEnv *env, jobject, jstring, jint, jboolean); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2I (JNIEnv *env, jobject, jstring, jint); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2JZZZ (JNIEnv *env, jobject, jstring, jlong, jboolean, jboolean, jboolean); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2JZZ (JNIEnv *env, jobject, jstring, jlong, jboolean, jboolean); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2JZ (JNIEnv *env, jobject, jstring, jlong, jboolean); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2J (JNIEnv *env, jobject, jstring, jlong); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2DZZCIZ (JNIEnv *env, jobject, jstring, jdouble, jboolean, jboolean, jchar, jint, jboolean); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2DZZCI (JNIEnv *env, jobject, jstring, jdouble, jboolean, jboolean, jchar, jint); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2DZZC (JNIEnv *env, jobject, jstring, jdouble, jboolean, jboolean, jchar); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2DZZ (JNIEnv *env, jobject, jstring, jdouble, jboolean, jboolean); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2DZ (JNIEnv *env, jobject, jstring, jdouble, jboolean); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2D (JNIEnv *env, jobject, jstring, jdouble); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2ZZZZ (JNIEnv *env, jobject, jstring, jboolean, jboolean, jboolean, jboolean); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2ZZZ (JNIEnv *env, jobject, jstring, jboolean, jboolean, jboolean); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2ZZ (JNIEnv *env, jobject, jstring, jboolean, jboolean); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Z (JNIEnv *env, jobject, jstring, jboolean); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QFont_2ZZZ (JNIEnv *env, jobject, jstring, jobject, jboolean, jboolean, jboolean); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QFont_2ZZ (JNIEnv *env, jobject, jstring, jobject, jboolean, jboolean); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QFont_2Z (JNIEnv *env, jobject, jstring, jobject, jboolean); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QFont_2 (JNIEnv *env, jobject, jstring, jobject); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QColor_2ZZZ (JNIEnv *env, jobject, jstring, jobject, jboolean, jboolean, jboolean); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QColor_2ZZ (JNIEnv *env, jobject, jstring, jobject, jboolean, jboolean); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QColor_2Z (JNIEnv *env, jobject, jstring, jobject, jboolean); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QColor_2 (JNIEnv *env, jobject, jstring, jobject); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Ljava_util_Calendar_2ZZZ (JNIEnv *env, jobject, jstring, jobject, jboolean, jboolean, jboolean); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Ljava_util_Calendar_2ZZ (JNIEnv *env, jobject, jstring, jobject, jboolean, jboolean); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Ljava_util_Calendar_2Z (JNIEnv *env, jobject, jstring, jobject, jboolean); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Ljava_util_Calendar_2 (JNIEnv *env, jobject, jstring, jobject); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QRect_2ZZZ (JNIEnv *env, jobject, jstring, jobject, jboolean, jboolean, jboolean); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QRect_2ZZ (JNIEnv *env, jobject, jstring, jobject, jboolean, jboolean); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QRect_2Z (JNIEnv *env, jobject, jstring, jobject, jboolean); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QRect_2 (JNIEnv *env, jobject, jstring, jobject); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QPoint_2ZZZ (JNIEnv *env, jobject, jstring, jobject, jboolean, jboolean, jboolean); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QPoint_2ZZ (JNIEnv *env, jobject, jstring, jobject, jboolean, jboolean); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QPoint_2Z (JNIEnv *env, jobject, jstring, jobject, jboolean); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QPoint_2 (JNIEnv *env, jobject, jstring, jobject); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QSize_2ZZZ (JNIEnv *env, jobject, jstring, jobject, jboolean, jboolean, jboolean); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QSize_2ZZ (JNIEnv *env, jobject, jstring, jobject, jboolean, jboolean); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QSize_2Z (JNIEnv *env, jobject, jstring, jobject, jboolean); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writeEntry__Ljava_lang_String_2Lorg_kde_qt_QSize_2 (JNIEnv *env, jobject, jstring, jobject); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writePathEntry__Ljava_lang_String_2Ljava_lang_String_2ZZZ (JNIEnv *env, jobject, jstring, jstring, jboolean, jboolean, jboolean); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writePathEntry__Ljava_lang_String_2Ljava_lang_String_2ZZ (JNIEnv *env, jobject, jstring, jstring, jboolean, jboolean); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writePathEntry__Ljava_lang_String_2Ljava_lang_String_2Z (JNIEnv *env, jobject, jstring, jstring, jboolean); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writePathEntry__Ljava_lang_String_2Ljava_lang_String_2 (JNIEnv *env, jobject, jstring, jstring); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writePathEntry__Ljava_lang_String_2_3Ljava_lang_String_2CZZZ (JNIEnv *env, jobject, jstring, jobjectArray, jchar, jboolean, jboolean, jboolean); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writePathEntry__Ljava_lang_String_2_3Ljava_lang_String_2CZZ (JNIEnv *env, jobject, jstring, jobjectArray, jchar, jboolean, jboolean); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writePathEntry__Ljava_lang_String_2_3Ljava_lang_String_2CZ (JNIEnv *env, jobject, jstring, jobjectArray, jchar, jboolean); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writePathEntry__Ljava_lang_String_2_3Ljava_lang_String_2C (JNIEnv *env, jobject, jstring, jobjectArray, jchar); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_writePathEntry__Ljava_lang_String_2_3Ljava_lang_String_2 (JNIEnv *env, jobject, jstring, jobjectArray); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_deleteEntry__Ljava_lang_String_2ZZ (JNIEnv *env, jobject, jstring, jboolean, jboolean); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_deleteEntry__Ljava_lang_String_2Z (JNIEnv *env, jobject, jstring, jboolean); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_deleteEntry__Ljava_lang_String_2 (JNIEnv *env, jobject, jstring); +extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_TDEConfigBase_deleteGroup__Ljava_lang_String_2ZZ (JNIEnv *env, jobject, jstring, jboolean, jboolean); +extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_TDEConfigBase_deleteGroup__Ljava_lang_String_2Z (JNIEnv *env, jobject, jstring, jboolean); +extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_TDEConfigBase_deleteGroup__Ljava_lang_String_2 (JNIEnv *env, jobject, jstring); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_setDollarExpansion__Z (JNIEnv *env, jobject, jboolean); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_setDollarExpansion__ (JNIEnv *env, jobject); +extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_TDEConfigBase_isDollarExpansion (JNIEnv *env, jobject); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_rollback__Z (JNIEnv *env, jobject, jboolean); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_rollback__ (JNIEnv *env, jobject); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_sync (JNIEnv *env, jobject); +extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_TDEConfigBase_isDirty (JNIEnv *env, jobject); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_setReadOnly (JNIEnv *env, jobject, jboolean); +extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_TDEConfigBase_isReadOnly (JNIEnv *env, jobject); +extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_TDEConfigBase_hasKey (JNIEnv *env, jobject, jstring); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_reparseConfiguration (JNIEnv *env, jobject); +extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_TDEConfigBase_isImmutable (JNIEnv *env, jobject); +extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_TDEConfigBase_groupIsImmutable (JNIEnv *env, jobject, jstring); +extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_TDEConfigBase_entryIsImmutable (JNIEnv *env, jobject, jstring); +extern JNIEXPORT jint JNICALL Java_org_kde_koala_TDEConfigBase_getConfigState (JNIEnv *env, jobject); +extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_TDEConfigBase_checkConfigFilesWritable (JNIEnv *env, jobject, jboolean); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_setReadDefaults (JNIEnv *env, jobject, jboolean); +extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_TDEConfigBase_readDefaults (JNIEnv *env, jobject); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigBase_revertToDefault (JNIEnv *env, jobject, jstring); +extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_TDEConfigBase_hasDefault (JNIEnv *env, jobject, jstring); + +#ifdef __cplusplus +} +#endif + +#endif /* __org_kde_koala_TDEConfigBase__ */ diff --git a/kdejava/koala/kdejava/TDEConfigGroup.cpp b/kdejava/koala/kdejava/TDEConfigGroup.cpp new file mode 100644 index 00000000..43bfa969 --- /dev/null +++ b/kdejava/koala/kdejava/TDEConfigGroup.cpp @@ -0,0 +1,160 @@ +//Auto-generated by kalyptus. DO NOT EDIT. +#include +#include +#include +#include + +#include +#include +#include + +class TDEConfigGroupJBridge : public TDEConfigGroup +{ +public: + TDEConfigGroupJBridge(TDEConfigBase* arg1,const TQCString& arg2) : TDEConfigGroup(arg1,arg2) {}; + void public_sync() { + TDEConfigGroup::sync(); + return; + } + ~TDEConfigGroupJBridge() {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 sync() { + if (!QtSupport::voidDelegate(this,"org.kde.koala.TDEConfigGroup","sync")) { + TDEConfigGroup::sync(); + } + return; + } + void insertChild(TQObject* arg1) { + if (!QtSupport::eventDelegate(this,"insertChild",(void*)arg1,"org.kde.qt.TQObject")) { + TQObject::insertChild(arg1); + } + return; + } + void parseConfigFiles() { + if (!QtSupport::voidDelegate(this,"org.kde.koala.TDEConfigGroup","parseConfigFiles")) { + TDEConfigBase::parseConfigFiles(); + } + return; + } + bool eventFilter(TQObject* object,TQEvent* event) { + if (!QtSupport::eventFilterDelegate(this,"org.kde.koala.TDEConfigGroup",object,event)) { + return TQObject::eventFilter(object,event); + } else { + return TRUE; + } + } +}; + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigGroup_deleteGroup__(JNIEnv* env, jobject obj) +{ + ((TDEConfigGroup*) QtSupport::getQt(env, obj))->deleteGroup(); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigGroup_deleteGroup__Z(JNIEnv* env, jobject obj, jboolean bGlobal) +{ + ((TDEConfigGroup*) QtSupport::getQt(env, obj))->deleteGroup((bool) bGlobal); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigGroup_dispose(JNIEnv* env, jobject obj) +{ + Java_org_kde_koala_TDEConfigGroup_finalize(env, obj); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigGroup_finalize(JNIEnv* env, jobject obj) +{ + if (QtSupport::allocatedInJavaWorld(env, obj) && ((TDEConfigGroup*)QtSupport::getQt(env, obj))->parent() == 0) { + delete (TDEConfigGroup*)QtSupport::getQt(env, obj); + QtSupport::setQt(env, obj, 0); + } + return; +} + +JNIEXPORT jboolean JNICALL +Java_org_kde_koala_TDEConfigGroup_groupIsImmutable(JNIEnv* env, jobject obj) +{ + jboolean xret = (jboolean) ((TDEConfigGroup*) QtSupport::getQt(env, obj))->groupIsImmutable(); + return xret; +} + +JNIEXPORT jboolean JNICALL +Java_org_kde_koala_TDEConfigGroup_isDisposed(JNIEnv* env, jobject obj) +{ + return (QtSupport::getQt(env, obj) == 0); +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_TDEConfigGroup_lookupData(JNIEnv* env, jobject obj, jobject _key) +{ + jobject xret = QtSupport::objectForQtKey(env, (void*)new KEntry(((TDEConfigGroup*) QtSupport::getQt(env, obj))->lookupData((const KEntryKey&)*(const KEntryKey*) QtSupport::getQt(env, _key))), "org.kde.koala.KEntry", TRUE); + return xret; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigGroup_newTDEConfigGroup(JNIEnv* env, jobject obj, jobject master, jstring group) +{ +static TQCString* _qcstring_group = 0; + if (QtSupport::getQt(env, obj) == 0) { + QtSupport::setQt(env, obj, new TDEConfigGroupJBridge((TDEConfigBase*) QtSupport::getQt(env, master), (const TQCString&)*(TQCString*) QtSupport::toTQCString(env, group, &_qcstring_group))); + QtSupport::setObjectForQtKey(env, obj, QtSupport::getQt(env, obj)); + } + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigGroup_putData__Lorg_kde_koala_KEntryKey_2Lorg_kde_koala_KEntry_2(JNIEnv* env, jobject obj, jobject _key, jobject _data) +{ + ((TDEConfigGroup*) QtSupport::getQt(env, obj))->putData((const KEntryKey&)*(const KEntryKey*) QtSupport::getQt(env, _key), (const KEntry&)*(const KEntry*) QtSupport::getQt(env, _data)); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigGroup_putData__Lorg_kde_koala_KEntryKey_2Lorg_kde_koala_KEntry_2Z(JNIEnv* env, jobject obj, jobject _key, jobject _data, jboolean _checkGroup) +{ + ((TDEConfigGroup*) QtSupport::getQt(env, obj))->putData((const KEntryKey&)*(const KEntryKey*) QtSupport::getQt(env, _key), (const KEntry&)*(const KEntry*) QtSupport::getQt(env, _data), (bool) _checkGroup); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigGroup_setDirty(JNIEnv* env, jobject obj, jboolean b) +{ + ((TDEConfigGroup*) QtSupport::getQt(env, obj))->setDirty((bool) b); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigGroup_sync(JNIEnv* env, jobject obj) +{ + ((TDEConfigGroupJBridge*) QtSupport::getQt(env, obj))->public_sync(); + return; +} + diff --git a/kdejava/koala/kdejava/TDEConfigGroup.h b/kdejava/koala/kdejava/TDEConfigGroup.h new file mode 100644 index 00000000..7c795fa2 --- /dev/null +++ b/kdejava/koala/kdejava/TDEConfigGroup.h @@ -0,0 +1,30 @@ +/* DO NOT EDIT THIS FILE - it is machine generated */ + +#ifndef __org_kde_koala_TDEConfigGroup__ +#define __org_kde_koala_TDEConfigGroup__ + +#include + +#ifdef __cplusplus +extern "C" +{ +#endif + +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigGroup_newTDEConfigGroup (JNIEnv *env, jobject, jobject, jstring); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigGroup_deleteGroup__Z (JNIEnv *env, jobject, jboolean); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigGroup_deleteGroup__ (JNIEnv *env, jobject); +extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_TDEConfigGroup_groupIsImmutable (JNIEnv *env, jobject); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigGroup_setDirty (JNIEnv *env, jobject, jboolean); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigGroup_putData__Lorg_kde_koala_KEntryKey_2Lorg_kde_koala_KEntry_2Z (JNIEnv *env, jobject, jobject, jobject, jboolean); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigGroup_putData__Lorg_kde_koala_KEntryKey_2Lorg_kde_koala_KEntry_2 (JNIEnv *env, jobject, jobject, jobject); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_TDEConfigGroup_lookupData (JNIEnv *env, jobject, jobject); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigGroup_sync (JNIEnv *env, jobject); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigGroup_finalize (JNIEnv *env, jobject); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigGroup_dispose (JNIEnv *env, jobject); +extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_TDEConfigGroup_isDisposed (JNIEnv *env, jobject); + +#ifdef __cplusplus +} +#endif + +#endif /* __org_kde_koala_TDEConfigGroup__ */ diff --git a/kdejava/koala/kdejava/TDEConfigGroupSaver.cpp b/kdejava/koala/kdejava/TDEConfigGroupSaver.cpp new file mode 100644 index 00000000..91dc2500 --- /dev/null +++ b/kdejava/koala/kdejava/TDEConfigGroupSaver.cpp @@ -0,0 +1,57 @@ +//Auto-generated by kalyptus. DO NOT EDIT. +#include +#include +#include + +#include +#include +#include + +class TDEConfigGroupSaverJBridge : public TDEConfigGroupSaver +{ +public: + TDEConfigGroupSaverJBridge(TDEConfigBase* arg1,TQString arg2) : TDEConfigGroupSaver(arg1,arg2) {}; + ~TDEConfigGroupSaverJBridge() {QtSupport::qtKeyDeleted(this);} +}; + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_TDEConfigGroupSaver_config(JNIEnv* env, jobject obj) +{ + jobject xret = QtSupport::objectForQtKey(env, (void*)((TDEConfigGroupSaver*) QtSupport::getQt(env, obj))->config(), "org.kde.koala.TDEConfigBase"); + return xret; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigGroupSaver_dispose(JNIEnv* env, jobject obj) +{ + Java_org_kde_koala_TDEConfigGroupSaver_finalize(env, obj); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigGroupSaver_finalize(JNIEnv* env, jobject obj) +{ + if (QtSupport::allocatedInJavaWorld(env, obj)) { + delete (TDEConfigGroupSaver*)QtSupport::getQt(env, obj); + QtSupport::setQt(env, obj, 0); + } + return; +} + +JNIEXPORT jboolean JNICALL +Java_org_kde_koala_TDEConfigGroupSaver_isDisposed(JNIEnv* env, jobject obj) +{ + return (QtSupport::getQt(env, obj) == 0); +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigGroupSaver_newTDEConfigGroupSaver(JNIEnv* env, jobject obj, jobject config, jstring group) +{ +static TQString* _qstring_group = 0; + if (QtSupport::getQt(env, obj) == 0) { + QtSupport::setQt(env, obj, new TDEConfigGroupSaverJBridge((TDEConfigBase*) QtSupport::getQt(env, config), (TQString)*(TQString*) QtSupport::toTQString(env, group, &_qstring_group))); + QtSupport::setObjectForQtKey(env, obj, QtSupport::getQt(env, obj)); + } + return; +} + diff --git a/kdejava/koala/kdejava/TDEConfigGroupSaver.h b/kdejava/koala/kdejava/TDEConfigGroupSaver.h new file mode 100644 index 00000000..14a06868 --- /dev/null +++ b/kdejava/koala/kdejava/TDEConfigGroupSaver.h @@ -0,0 +1,23 @@ +/* DO NOT EDIT THIS FILE - it is machine generated */ + +#ifndef __org_kde_koala_TDEConfigGroupSaver__ +#define __org_kde_koala_TDEConfigGroupSaver__ + +#include + +#ifdef __cplusplus +extern "C" +{ +#endif + +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigGroupSaver_newTDEConfigGroupSaver (JNIEnv *env, jobject, jobject, jstring); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_TDEConfigGroupSaver_config (JNIEnv *env, jobject); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigGroupSaver_finalize (JNIEnv *env, jobject); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigGroupSaver_dispose (JNIEnv *env, jobject); +extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_TDEConfigGroupSaver_isDisposed (JNIEnv *env, jobject); + +#ifdef __cplusplus +} +#endif + +#endif /* __org_kde_koala_TDEConfigGroupSaver__ */ diff --git a/kdejava/koala/kdejava/TDEConfigINIBackEnd.cpp b/kdejava/koala/kdejava/TDEConfigINIBackEnd.cpp new file mode 100644 index 00000000..585d0e15 --- /dev/null +++ b/kdejava/koala/kdejava/TDEConfigINIBackEnd.cpp @@ -0,0 +1,134 @@ +//Auto-generated by kalyptus. DO NOT EDIT. +#include +#include +#include +#include + +#include +#include +#include + +class TDEConfigINIBackEndJBridge : public TDEConfigINIBackEnd +{ +public: + TDEConfigINIBackEndJBridge(TDEConfigBase* arg1,const TQString& arg2,const char* arg3,bool arg4) : TDEConfigINIBackEnd(arg1,arg2,arg3,arg4) {}; + TDEConfigINIBackEndJBridge(TDEConfigBase* arg1,const TQString& arg2,const char* arg3) : TDEConfigINIBackEnd(arg1,arg2,arg3) {}; + void public_sync() { + TDEConfigINIBackEnd::sync(); + return; + } + void protected_parseSingleConfigFile(TQFile& arg1) { + TDEConfigINIBackEnd::parseSingleConfigFile(arg1); + return; + } + bool protected_writeConfigFile(TQString arg1,bool arg2,bool arg3) { + return (bool) TDEConfigINIBackEnd::writeConfigFile(arg1,arg2,arg3); + } + bool protected_writeConfigFile(TQString arg1,bool arg2) { + return (bool) TDEConfigINIBackEnd::writeConfigFile(arg1,arg2); + } + bool protected_writeConfigFile(TQString arg1) { + return (bool) TDEConfigINIBackEnd::writeConfigFile(arg1); + } + ~TDEConfigINIBackEndJBridge() {QtSupport::qtKeyDeleted(this);} +}; + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigINIBackEnd_dispose(JNIEnv* env, jobject obj) +{ + Java_org_kde_koala_TDEConfigINIBackEnd_finalize(env, obj); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigINIBackEnd_finalize(JNIEnv* env, jobject obj) +{ + if (QtSupport::allocatedInJavaWorld(env, obj)) { + delete (TDEConfigINIBackEnd*)QtSupport::getQt(env, obj); + QtSupport::setQt(env, obj, 0); + } + return; +} + +JNIEXPORT jboolean JNICALL +Java_org_kde_koala_TDEConfigINIBackEnd_isDisposed(JNIEnv* env, jobject obj) +{ + return (QtSupport::getQt(env, obj) == 0); +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigINIBackEnd_newTDEConfigINIBackEnd__Lorg_kde_koala_TDEConfigBase_2Ljava_lang_String_2Ljava_lang_String_2(JNIEnv* env, jobject obj, jobject _config, jstring _fileName, jstring _resType) +{ +static TQString* _qstring__fileName = 0; +static TQCString* _qstring__resType = 0; + if (QtSupport::getQt(env, obj) == 0) { + QtSupport::setQt(env, obj, new TDEConfigINIBackEndJBridge((TDEConfigBase*) QtSupport::getQt(env, _config), (const TQString&)*(TQString*) QtSupport::toTQString(env, _fileName, &_qstring__fileName), (const char*) QtSupport::toCharString(env, _resType, &_qstring__resType))); + QtSupport::setObjectForQtKey(env, obj, QtSupport::getQt(env, obj)); + } + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigINIBackEnd_newTDEConfigINIBackEnd__Lorg_kde_koala_TDEConfigBase_2Ljava_lang_String_2Ljava_lang_String_2Z(JNIEnv* env, jobject obj, jobject _config, jstring _fileName, jstring _resType, jboolean _useKDEGlobals) +{ +static TQString* _qstring__fileName = 0; +static TQCString* _qstring__resType = 0; + if (QtSupport::getQt(env, obj) == 0) { + QtSupport::setQt(env, obj, new TDEConfigINIBackEndJBridge((TDEConfigBase*) QtSupport::getQt(env, _config), (const TQString&)*(TQString*) QtSupport::toTQString(env, _fileName, &_qstring__fileName), (const char*) QtSupport::toCharString(env, _resType, &_qstring__resType), (bool) _useKDEGlobals)); + QtSupport::setObjectForQtKey(env, obj, QtSupport::getQt(env, obj)); + } + return; +} + +JNIEXPORT jboolean JNICALL +Java_org_kde_koala_TDEConfigINIBackEnd_parseConfigFiles(JNIEnv* env, jobject obj) +{ + jboolean xret = (jboolean) ((TDEConfigINIBackEnd*) QtSupport::getQt(env, obj))->parseConfigFiles(); + return xret; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigINIBackEnd_parseSingleConfigFile(JNIEnv* env, jobject obj, jobject rFile) +{ + ((TDEConfigINIBackEndJBridge*) QtSupport::getQt(env, obj))->protected_parseSingleConfigFile((TQFile&)*(TQFile*) QtSupport::getQt(env, rFile)); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigINIBackEnd_sync__(JNIEnv* env, jobject obj) +{ + ((TDEConfigINIBackEndJBridge*) QtSupport::getQt(env, obj))->public_sync(); + return; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_TDEConfigINIBackEnd_sync__Z(JNIEnv* env, jobject obj, jboolean bMerge) +{ + ((TDEConfigINIBackEnd*) QtSupport::getQt(env, obj))->sync((bool) bMerge); + return; +} + +JNIEXPORT jboolean JNICALL +Java_org_kde_koala_TDEConfigINIBackEnd_writeConfigFile__Ljava_lang_String_2(JNIEnv* env, jobject obj, jstring filename) +{ +static TQString* _qstring_filename = 0; + jboolean xret = (jboolean) ((TDEConfigINIBackEndJBridge*) QtSupport::getQt(env, obj))->protected_writeConfigFile((TQString)*(TQString*) QtSupport::toTQString(env, filename, &_qstring_filename)); + return xret; +} + +JNIEXPORT jboolean JNICALL +Java_org_kde_koala_TDEConfigINIBackEnd_writeConfigFile__Ljava_lang_String_2Z(JNIEnv* env, jobject obj, jstring filename, jboolean bGlobal) +{ +static TQString* _qstring_filename = 0; + jboolean xret = (jboolean) ((TDEConfigINIBackEndJBridge*) QtSupport::getQt(env, obj))->protected_writeConfigFile((TQString)*(TQString*) QtSupport::toTQString(env, filename, &_qstring_filename), (bool) bGlobal); + return xret; +} + +JNIEXPORT jboolean JNICALL +Java_org_kde_koala_TDEConfigINIBackEnd_writeConfigFile__Ljava_lang_String_2ZZ(JNIEnv* env, jobject obj, jstring filename, jboolean bGlobal, jboolean bMerge) +{ +static TQString* _qstring_filename = 0; + jboolean xret = (jboolean) ((TDEConfigINIBackEndJBridge*) QtSupport::getQt(env, obj))->protected_writeConfigFile((TQString)*(TQString*) QtSupport::toTQString(env, filename, &_qstring_filename), (bool) bGlobal, (bool) bMerge); + return xret; +} + diff --git a/kdejava/koala/kdejava/TDEConfigINIBackEnd.h b/kdejava/koala/kdejava/TDEConfigINIBackEnd.h new file mode 100644 index 00000000..2e5127dc --- /dev/null +++ b/kdejava/koala/kdejava/TDEConfigINIBackEnd.h @@ -0,0 +1,30 @@ +/* DO NOT EDIT THIS FILE - it is machine generated */ + +#ifndef __org_kde_koala_TDEConfigINIBackEnd__ +#define __org_kde_koala_TDEConfigINIBackEnd__ + +#include + +#ifdef __cplusplus +extern "C" +{ +#endif + +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigINIBackEnd_newTDEConfigINIBackEnd__Lorg_kde_koala_TDEConfigBase_2Ljava_lang_String_2Ljava_lang_String_2Z (JNIEnv *env, jobject, jobject, jstring, jstring, jboolean); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigINIBackEnd_newTDEConfigINIBackEnd__Lorg_kde_koala_TDEConfigBase_2Ljava_lang_String_2Ljava_lang_String_2 (JNIEnv *env, jobject, jobject, jstring, jstring); +extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_TDEConfigINIBackEnd_parseConfigFiles (JNIEnv *env, jobject); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigINIBackEnd_sync__Z (JNIEnv *env, jobject, jboolean); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigINIBackEnd_sync__ (JNIEnv *env, jobject); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigINIBackEnd_parseSingleConfigFile (JNIEnv *env, jobject, jobject); +extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_TDEConfigINIBackEnd_writeConfigFile__Ljava_lang_String_2ZZ (JNIEnv *env, jobject, jstring, jboolean, jboolean); +extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_TDEConfigINIBackEnd_writeConfigFile__Ljava_lang_String_2Z (JNIEnv *env, jobject, jstring, jboolean); +extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_TDEConfigINIBackEnd_writeConfigFile__Ljava_lang_String_2 (JNIEnv *env, jobject, jstring); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigINIBackEnd_finalize (JNIEnv *env, jobject); +extern JNIEXPORT void JNICALL Java_org_kde_koala_TDEConfigINIBackEnd_dispose (JNIEnv *env, jobject); +extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_TDEConfigINIBackEnd_isDisposed (JNIEnv *env, jobject); + +#ifdef __cplusplus +} +#endif + +#endif /* __org_kde_koala_TDEConfigINIBackEnd__ */ diff --git a/kdejava/koala/kdejava/TDEIO.cpp b/kdejava/koala/kdejava/TDEIO.cpp new file mode 100644 index 00000000..12aeca9d --- /dev/null +++ b/kdejava/koala/kdejava/TDEIO.cpp @@ -0,0 +1,1196 @@ +//Auto-generated by kalyptus. DO NOT EDIT. +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include +#include +#include +#include +#include +#include +#include +#include + +JNIEXPORT jstring JNICALL +Java_org_kde_koala_KIO_buildErrorString(JNIEnv* env, jclass cls, jint errorCode, jstring errorText) +{ + TQString _qstring; + (void) cls; +static TQString* _qstring_errorText = 0; + _qstring = TDEIO::buildErrorString((int) errorCode, (const TQString&)*(TQString*) QtSupport::toTQString(env, errorText, &_qstring_errorText)); + return QtSupport::fromTQString(env, &_qstring); +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_chmod(JNIEnv* env, jclass cls, jobject url, jint permissions) +{ + (void) cls; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::chmod((const KURL&)*(const KURL*) QtSupport::getQt(env, url), (int) permissions), "org.kde.koala.SimpleJob"); + return xret; +} + +JNIEXPORT jstring JNICALL +Java_org_kde_koala_KIO_convertSeconds(JNIEnv* env, jclass cls, jint seconds) +{ + TQString _qstring; + (void) cls; + _qstring = TDEIO::convertSeconds((unsigned int) seconds); + return QtSupport::fromTQString(env, &_qstring); +} + +JNIEXPORT jstring JNICALL +Java_org_kde_koala_KIO_convertSizeFromKB(JNIEnv* env, jclass cls, jlong kbSize) +{ + TQString _qstring; + (void) cls; + _qstring = TDEIO::convertSizeFromKB((TDEIO::filesize_t) kbSize); + return QtSupport::fromTQString(env, &_qstring); +} + +JNIEXPORT jstring JNICALL +Java_org_kde_koala_KIO_convertSizeWithBytes(JNIEnv* env, jclass cls, jlong size) +{ + TQString _qstring; + (void) cls; + _qstring = TDEIO::convertSizeWithBytes((TDEIO::filesize_t) size); + return QtSupport::fromTQString(env, &_qstring); +} + +JNIEXPORT jstring JNICALL +Java_org_kde_koala_KIO_convertSize(JNIEnv* env, jclass cls, jlong size) +{ + TQString _qstring; + (void) cls; + _qstring = TDEIO::convertSize((TDEIO::filesize_t) size); + return QtSupport::fromTQString(env, &_qstring); +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_copyAs__Lorg_kde_koala_KURL_2Lorg_kde_koala_KURL_2(JNIEnv* env, jclass cls, jobject src, jobject dest) +{ + (void) cls; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::copyAs((const KURL&)*(const KURL*) QtSupport::getQt(env, src), (const KURL&)*(const KURL*) QtSupport::getQt(env, dest)), "org.kde.koala.CopyJob"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_copyAs__Lorg_kde_koala_KURL_2Lorg_kde_koala_KURL_2Z(JNIEnv* env, jclass cls, jobject src, jobject dest, jboolean showProgressInfo) +{ + (void) cls; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::copyAs((const KURL&)*(const KURL*) QtSupport::getQt(env, src), (const KURL&)*(const KURL*) QtSupport::getQt(env, dest), (bool) showProgressInfo), "org.kde.koala.CopyJob"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_copy__Ljava_util_ArrayList_2Lorg_kde_koala_KURL_2(JNIEnv* env, jclass cls, jobjectArray src, jobject dest) +{ + (void) cls; +static KURL::List* _qlist_src = 0; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::copy((const KURL::List&)*(KURL::List*) KDESupport::toKURLList(env, src, &_qlist_src), (const KURL&)*(const KURL*) QtSupport::getQt(env, dest)), "org.kde.koala.CopyJob"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_copy__Ljava_util_ArrayList_2Lorg_kde_koala_KURL_2Z(JNIEnv* env, jclass cls, jobjectArray src, jobject dest, jboolean showProgressInfo) +{ + (void) cls; +static KURL::List* _qlist_src = 0; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::copy((const KURL::List&)*(KURL::List*) KDESupport::toKURLList(env, src, &_qlist_src), (const KURL&)*(const KURL*) QtSupport::getQt(env, dest), (bool) showProgressInfo), "org.kde.koala.CopyJob"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_copy__Lorg_kde_koala_KURL_2Lorg_kde_koala_KURL_2(JNIEnv* env, jclass cls, jobject src, jobject dest) +{ + (void) cls; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::copy((const KURL&)*(const KURL*) QtSupport::getQt(env, src), (const KURL&)*(const KURL*) QtSupport::getQt(env, dest)), "org.kde.koala.CopyJob"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_copy__Lorg_kde_koala_KURL_2Lorg_kde_koala_KURL_2Z(JNIEnv* env, jclass cls, jobject src, jobject dest, jboolean showProgressInfo) +{ + (void) cls; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::copy((const KURL&)*(const KURL*) QtSupport::getQt(env, src), (const KURL&)*(const KURL*) QtSupport::getQt(env, dest), (bool) showProgressInfo), "org.kde.koala.CopyJob"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_davPropFind__Lorg_kde_koala_KURL_2Lorg_kde_qt_QDomDocument_2Ljava_lang_String_2(JNIEnv* env, jclass cls, jobject url, jobject properties, jstring depth) +{ + (void) cls; +static TQString* _qstring_depth = 0; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::davPropFind((const KURL&)*(const KURL*) QtSupport::getQt(env, url), (const TQDomDocument&)*(const TQDomDocument*) QtSupport::getQt(env, properties), (TQString)*(TQString*) QtSupport::toTQString(env, depth, &_qstring_depth)), "org.kde.koala.DavJob"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_davPropFind__Lorg_kde_koala_KURL_2Lorg_kde_qt_QDomDocument_2Ljava_lang_String_2Z(JNIEnv* env, jclass cls, jobject url, jobject properties, jstring depth, jboolean showProgressInfo) +{ + (void) cls; +static TQString* _qstring_depth = 0; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::davPropFind((const KURL&)*(const KURL*) QtSupport::getQt(env, url), (const TQDomDocument&)*(const TQDomDocument*) QtSupport::getQt(env, properties), (TQString)*(TQString*) QtSupport::toTQString(env, depth, &_qstring_depth), (bool) showProgressInfo), "org.kde.koala.DavJob"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_davPropPatch__Lorg_kde_koala_KURL_2Lorg_kde_qt_QDomDocument_2(JNIEnv* env, jclass cls, jobject url, jobject properties) +{ + (void) cls; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::davPropPatch((const KURL&)*(const KURL*) QtSupport::getQt(env, url), (const TQDomDocument&)*(const TQDomDocument*) QtSupport::getQt(env, properties)), "org.kde.koala.DavJob"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_davPropPatch__Lorg_kde_koala_KURL_2Lorg_kde_qt_QDomDocument_2Z(JNIEnv* env, jclass cls, jobject url, jobject properties, jboolean showProgressInfo) +{ + (void) cls; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::davPropPatch((const KURL&)*(const KURL*) QtSupport::getQt(env, url), (const TQDomDocument&)*(const TQDomDocument*) QtSupport::getQt(env, properties), (bool) showProgressInfo), "org.kde.koala.DavJob"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_davSearch__Lorg_kde_koala_KURL_2Ljava_lang_String_2Ljava_lang_String_2Ljava_lang_String_2(JNIEnv* env, jclass cls, jobject url, jstring nsURI, jstring qName, jstring query) +{ + (void) cls; +static TQString* _qstring_nsURI = 0; +static TQString* _qstring_qName = 0; +static TQString* _qstring_query = 0; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::davSearch((const KURL&)*(const KURL*) QtSupport::getQt(env, url), (const TQString&)*(TQString*) QtSupport::toTQString(env, nsURI, &_qstring_nsURI), (const TQString&)*(TQString*) QtSupport::toTQString(env, qName, &_qstring_qName), (const TQString&)*(TQString*) QtSupport::toTQString(env, query, &_qstring_query)), "org.kde.koala.DavJob"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_davSearch__Lorg_kde_koala_KURL_2Ljava_lang_String_2Ljava_lang_String_2Ljava_lang_String_2Z(JNIEnv* env, jclass cls, jobject url, jstring nsURI, jstring qName, jstring query, jboolean showProgressInfo) +{ + (void) cls; +static TQString* _qstring_nsURI = 0; +static TQString* _qstring_qName = 0; +static TQString* _qstring_query = 0; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::davSearch((const KURL&)*(const KURL*) QtSupport::getQt(env, url), (const TQString&)*(TQString*) QtSupport::toTQString(env, nsURI, &_qstring_nsURI), (const TQString&)*(TQString*) QtSupport::toTQString(env, qName, &_qstring_qName), (const TQString&)*(TQString*) QtSupport::toTQString(env, query, &_qstring_query), (bool) showProgressInfo), "org.kde.koala.DavJob"); + return xret; +} + +JNIEXPORT jstring JNICALL +Java_org_kde_koala_KIO_decodeFileName(JNIEnv* env, jclass cls, jstring str) +{ + TQString _qstring; + (void) cls; +static TQString* _qstring_str = 0; + _qstring = TDEIO::decodeFileName((const TQString&)*(TQString*) QtSupport::toTQString(env, str, &_qstring_str)); + return QtSupport::fromTQString(env, &_qstring); +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_del__Ljava_util_ArrayList_2(JNIEnv* env, jclass cls, jobjectArray src) +{ + (void) cls; +static KURL::List* _qlist_src = 0; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::del((const KURL::List&)*(KURL::List*) KDESupport::toKURLList(env, src, &_qlist_src)), "org.kde.koala.DeleteJob"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_del__Ljava_util_ArrayList_2Z(JNIEnv* env, jclass cls, jobjectArray src, jboolean shred) +{ + (void) cls; +static KURL::List* _qlist_src = 0; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::del((const KURL::List&)*(KURL::List*) KDESupport::toKURLList(env, src, &_qlist_src), (bool) shred), "org.kde.koala.DeleteJob"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_del__Ljava_util_ArrayList_2ZZ(JNIEnv* env, jclass cls, jobjectArray src, jboolean shred, jboolean showProgressInfo) +{ + (void) cls; +static KURL::List* _qlist_src = 0; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::del((const KURL::List&)*(KURL::List*) KDESupport::toKURLList(env, src, &_qlist_src), (bool) shred, (bool) showProgressInfo), "org.kde.koala.DeleteJob"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_del__Lorg_kde_koala_KURL_2(JNIEnv* env, jclass cls, jobject src) +{ + (void) cls; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::del((const KURL&)*(const KURL*) QtSupport::getQt(env, src)), "org.kde.koala.DeleteJob"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_del__Lorg_kde_koala_KURL_2Z(JNIEnv* env, jclass cls, jobject src, jboolean shred) +{ + (void) cls; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::del((const KURL&)*(const KURL*) QtSupport::getQt(env, src), (bool) shred), "org.kde.koala.DeleteJob"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_del__Lorg_kde_koala_KURL_2ZZ(JNIEnv* env, jclass cls, jobject src, jboolean shred, jboolean showProgressInfo) +{ + (void) cls; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::del((const KURL&)*(const KURL*) QtSupport::getQt(env, src), (bool) shred, (bool) showProgressInfo), "org.kde.koala.DeleteJob"); + return xret; +} + +JNIEXPORT jstring JNICALL +Java_org_kde_koala_KIO_encodeFileName(JNIEnv* env, jclass cls, jstring str) +{ + TQString _qstring; + (void) cls; +static TQString* _qstring_str = 0; + _qstring = TDEIO::encodeFileName((const TQString&)*(TQString*) QtSupport::toTQString(env, str, &_qstring_str)); + return QtSupport::fromTQString(env, &_qstring); +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_fileMetaInfo(JNIEnv* env, jclass cls, jobjectArray items) +{ + (void) cls; +static KFileItemList* _qlist_items = 0; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::fileMetaInfo((const KFileItemList&)*(TQStrList*) KDESupport::toKFileItemList(env, items, &_qlist_items)), "org.kde.koala.MetaInfoJob"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_filePreview__Ljava_util_ArrayList_2I(JNIEnv* env, jclass cls, jobjectArray items, jint width) +{ + (void) cls; +static KFileItemList* _qlist_items = 0; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::filePreview((const KFileItemList&)*(TQStrList*) KDESupport::toKFileItemList(env, items, &_qlist_items), (int) width), "org.kde.koala.PreviewJob"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_filePreview__Ljava_util_ArrayList_2II(JNIEnv* env, jclass cls, jobjectArray items, jint width, jint height) +{ + (void) cls; +static KFileItemList* _qlist_items = 0; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::filePreview((const KFileItemList&)*(TQStrList*) KDESupport::toKFileItemList(env, items, &_qlist_items), (int) width, (int) height), "org.kde.koala.PreviewJob"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_filePreview__Ljava_util_ArrayList_2III(JNIEnv* env, jclass cls, jobjectArray items, jint width, jint height, jint iconSize) +{ + (void) cls; +static KFileItemList* _qlist_items = 0; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::filePreview((const KFileItemList&)*(TQStrList*) KDESupport::toKFileItemList(env, items, &_qlist_items), (int) width, (int) height, (int) iconSize), "org.kde.koala.PreviewJob"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_filePreview__Ljava_util_ArrayList_2IIII(JNIEnv* env, jclass cls, jobjectArray items, jint width, jint height, jint iconSize, jint iconAlpha) +{ + (void) cls; +static KFileItemList* _qlist_items = 0; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::filePreview((const KFileItemList&)*(TQStrList*) KDESupport::toKFileItemList(env, items, &_qlist_items), (int) width, (int) height, (int) iconSize, (int) iconAlpha), "org.kde.koala.PreviewJob"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_filePreview__Ljava_util_ArrayList_2IIIIZ(JNIEnv* env, jclass cls, jobjectArray items, jint width, jint height, jint iconSize, jint iconAlpha, jboolean scale) +{ + (void) cls; +static KFileItemList* _qlist_items = 0; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::filePreview((const KFileItemList&)*(TQStrList*) KDESupport::toKFileItemList(env, items, &_qlist_items), (int) width, (int) height, (int) iconSize, (int) iconAlpha, (bool) scale), "org.kde.koala.PreviewJob"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_filePreview__Ljava_util_ArrayList_2IIIIZZ(JNIEnv* env, jclass cls, jobjectArray items, jint width, jint height, jint iconSize, jint iconAlpha, jboolean scale, jboolean save) +{ + (void) cls; +static KFileItemList* _qlist_items = 0; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::filePreview((const KFileItemList&)*(TQStrList*) KDESupport::toKFileItemList(env, items, &_qlist_items), (int) width, (int) height, (int) iconSize, (int) iconAlpha, (bool) scale, (bool) save), "org.kde.koala.PreviewJob"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_filePreview__Ljava_util_ArrayList_2IIIIZZ_3Ljava_lang_String_2(JNIEnv* env, jclass cls, jobjectArray items, jint width, jint height, jint iconSize, jint iconAlpha, jboolean scale, jboolean save, jobjectArray enabledPlugins) +{ + (void) cls; +static KFileItemList* _qlist_items = 0; +static TQStringList* _qlist_enabledPlugins = 0; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::filePreview((const KFileItemList&)*(TQStrList*) KDESupport::toKFileItemList(env, items, &_qlist_items), (int) width, (int) height, (int) iconSize, (int) iconAlpha, (bool) scale, (bool) save, (const TQStringList*) QtSupport::toTQStringList(env, enabledPlugins, &_qlist_enabledPlugins)), "org.kde.koala.PreviewJob"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_file_1copy__Lorg_kde_koala_KURL_2Lorg_kde_koala_KURL_2(JNIEnv* env, jclass cls, jobject src, jobject dest) +{ + (void) cls; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::file_copy((const KURL&)*(const KURL*) QtSupport::getQt(env, src), (const KURL&)*(const KURL*) QtSupport::getQt(env, dest)), "org.kde.koala.FileCopyJob"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_file_1copy__Lorg_kde_koala_KURL_2Lorg_kde_koala_KURL_2I(JNIEnv* env, jclass cls, jobject src, jobject dest, jint permissions) +{ + (void) cls; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::file_copy((const KURL&)*(const KURL*) QtSupport::getQt(env, src), (const KURL&)*(const KURL*) QtSupport::getQt(env, dest), (int) permissions), "org.kde.koala.FileCopyJob"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_file_1copy__Lorg_kde_koala_KURL_2Lorg_kde_koala_KURL_2IZ(JNIEnv* env, jclass cls, jobject src, jobject dest, jint permissions, jboolean overwrite) +{ + (void) cls; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::file_copy((const KURL&)*(const KURL*) QtSupport::getQt(env, src), (const KURL&)*(const KURL*) QtSupport::getQt(env, dest), (int) permissions, (bool) overwrite), "org.kde.koala.FileCopyJob"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_file_1copy__Lorg_kde_koala_KURL_2Lorg_kde_koala_KURL_2IZZ(JNIEnv* env, jclass cls, jobject src, jobject dest, jint permissions, jboolean overwrite, jboolean resume) +{ + (void) cls; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::file_copy((const KURL&)*(const KURL*) QtSupport::getQt(env, src), (const KURL&)*(const KURL*) QtSupport::getQt(env, dest), (int) permissions, (bool) overwrite, (bool) resume), "org.kde.koala.FileCopyJob"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_file_1copy__Lorg_kde_koala_KURL_2Lorg_kde_koala_KURL_2IZZZ(JNIEnv* env, jclass cls, jobject src, jobject dest, jint permissions, jboolean overwrite, jboolean resume, jboolean showProgressInfo) +{ + (void) cls; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::file_copy((const KURL&)*(const KURL*) QtSupport::getQt(env, src), (const KURL&)*(const KURL*) QtSupport::getQt(env, dest), (int) permissions, (bool) overwrite, (bool) resume, (bool) showProgressInfo), "org.kde.koala.FileCopyJob"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_file_1delete__Lorg_kde_koala_KURL_2(JNIEnv* env, jclass cls, jobject src) +{ + (void) cls; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::file_delete((const KURL&)*(const KURL*) QtSupport::getQt(env, src)), "org.kde.koala.SimpleJob"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_file_1delete__Lorg_kde_koala_KURL_2Z(JNIEnv* env, jclass cls, jobject src, jboolean showProgressInfo) +{ + (void) cls; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::file_delete((const KURL&)*(const KURL*) QtSupport::getQt(env, src), (bool) showProgressInfo), "org.kde.koala.SimpleJob"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_file_1move__Lorg_kde_koala_KURL_2Lorg_kde_koala_KURL_2(JNIEnv* env, jclass cls, jobject src, jobject dest) +{ + (void) cls; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::file_move((const KURL&)*(const KURL*) QtSupport::getQt(env, src), (const KURL&)*(const KURL*) QtSupport::getQt(env, dest)), "org.kde.koala.FileCopyJob"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_file_1move__Lorg_kde_koala_KURL_2Lorg_kde_koala_KURL_2I(JNIEnv* env, jclass cls, jobject src, jobject dest, jint permissions) +{ + (void) cls; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::file_move((const KURL&)*(const KURL*) QtSupport::getQt(env, src), (const KURL&)*(const KURL*) QtSupport::getQt(env, dest), (int) permissions), "org.kde.koala.FileCopyJob"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_file_1move__Lorg_kde_koala_KURL_2Lorg_kde_koala_KURL_2IZ(JNIEnv* env, jclass cls, jobject src, jobject dest, jint permissions, jboolean overwrite) +{ + (void) cls; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::file_move((const KURL&)*(const KURL*) QtSupport::getQt(env, src), (const KURL&)*(const KURL*) QtSupport::getQt(env, dest), (int) permissions, (bool) overwrite), "org.kde.koala.FileCopyJob"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_file_1move__Lorg_kde_koala_KURL_2Lorg_kde_koala_KURL_2IZZ(JNIEnv* env, jclass cls, jobject src, jobject dest, jint permissions, jboolean overwrite, jboolean resume) +{ + (void) cls; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::file_move((const KURL&)*(const KURL*) QtSupport::getQt(env, src), (const KURL&)*(const KURL*) QtSupport::getQt(env, dest), (int) permissions, (bool) overwrite, (bool) resume), "org.kde.koala.FileCopyJob"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_file_1move__Lorg_kde_koala_KURL_2Lorg_kde_koala_KURL_2IZZZ(JNIEnv* env, jclass cls, jobject src, jobject dest, jint permissions, jboolean overwrite, jboolean resume, jboolean showProgressInfo) +{ + (void) cls; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::file_move((const KURL&)*(const KURL*) QtSupport::getQt(env, src), (const KURL&)*(const KURL*) QtSupport::getQt(env, dest), (int) permissions, (bool) overwrite, (bool) resume, (bool) showProgressInfo), "org.kde.koala.FileCopyJob"); + return xret; +} + +JNIEXPORT jstring JNICALL +Java_org_kde_koala_KIO_findDeviceMountPoint(JNIEnv* env, jclass cls, jstring device) +{ + TQString _qstring; + (void) cls; +static TQString* _qstring_device = 0; + _qstring = TDEIO::findDeviceMountPoint((const TQString&)*(TQString*) QtSupport::toTQString(env, device, &_qstring_device)); + return QtSupport::fromTQString(env, &_qstring); +} + +JNIEXPORT jstring JNICALL +Java_org_kde_koala_KIO_findPathMountPoint(JNIEnv* env, jclass cls, jstring filename) +{ + TQString _qstring; + (void) cls; +static TQString* _qstring_filename = 0; + _qstring = TDEIO::findPathMountPoint((const TQString&)*(TQString*) QtSupport::toTQString(env, filename, &_qstring_filename)); + return QtSupport::fromTQString(env, &_qstring); +} + +JNIEXPORT jstring JNICALL +Java_org_kde_koala_KIO_getCacheControlString(JNIEnv* env, jclass cls, jint cacheControl) +{ + TQString _qstring; + (void) cls; + _qstring = TDEIO::getCacheControlString((TDEIO::CacheControl) cacheControl); + return QtSupport::fromTQString(env, &_qstring); +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_get__Lorg_kde_koala_KURL_2(JNIEnv* env, jclass cls, jobject url) +{ + (void) cls; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::get((const KURL&)*(const KURL*) QtSupport::getQt(env, url)), "org.kde.koala.TransferJob"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_get__Lorg_kde_koala_KURL_2Z(JNIEnv* env, jclass cls, jobject url, jboolean reload) +{ + (void) cls; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::get((const KURL&)*(const KURL*) QtSupport::getQt(env, url), (bool) reload), "org.kde.koala.TransferJob"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_get__Lorg_kde_koala_KURL_2ZZ(JNIEnv* env, jclass cls, jobject url, jboolean reload, jboolean showProgressInfo) +{ + (void) cls; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::get((const KURL&)*(const KURL*) QtSupport::getQt(env, url), (bool) reload, (bool) showProgressInfo), "org.kde.koala.TransferJob"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_http_1post__Lorg_kde_koala_KURL_2_3B(JNIEnv* env, jclass cls, jobject url, jbyteArray postData) +{ + (void) cls; +static TQByteArray* _qbyteArray_postData = 0; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::http_post((const KURL&)*(const KURL*) QtSupport::getQt(env, url), (const TQByteArray&)*(TQByteArray*) QtSupport::toTQByteArray(env, postData, &_qbyteArray_postData)), "org.kde.koala.TransferJob"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_http_1post__Lorg_kde_koala_KURL_2_3BZ(JNIEnv* env, jclass cls, jobject url, jbyteArray postData, jboolean showProgressInfo) +{ + (void) cls; +static TQByteArray* _qbyteArray_postData = 0; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::http_post((const KURL&)*(const KURL*) QtSupport::getQt(env, url), (const TQByteArray&)*(TQByteArray*) QtSupport::toTQByteArray(env, postData, &_qbyteArray_postData), (bool) showProgressInfo), "org.kde.koala.TransferJob"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_http_1update_1cache(JNIEnv* env, jclass cls, jobject url, jboolean no_cache, jint expireDate) +{ + (void) cls; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::http_update_cache((const KURL&)*(const KURL*) QtSupport::getQt(env, url), (bool) no_cache, (time_t) expireDate), "org.kde.koala.SimpleJob"); + return xret; +} + +JNIEXPORT jboolean JNICALL +Java_org_kde_koala_KIO_isClipboardEmpty(JNIEnv* env, jclass cls) +{ + (void) cls; + (void) env; + jboolean xret = (jboolean) TDEIO::isClipboardEmpty(); + return xret; +} + +JNIEXPORT jstring JNICALL +Java_org_kde_koala_KIO_itemsSummaryString(JNIEnv* env, jclass cls, jint items, jint files, jint dirs, jlong size, jboolean showSize) +{ + TQString _qstring; + (void) cls; + _qstring = TDEIO::itemsSummaryString((uint) items, (uint) files, (uint) dirs, (TDEIO::filesize_t) size, (bool) showSize); + return QtSupport::fromTQString(env, &_qstring); +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_linkAs__Lorg_kde_koala_KURL_2Lorg_kde_koala_KURL_2(JNIEnv* env, jclass cls, jobject src, jobject dest) +{ + (void) cls; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::linkAs((const KURL&)*(const KURL*) QtSupport::getQt(env, src), (const KURL&)*(const KURL*) QtSupport::getQt(env, dest)), "org.kde.koala.CopyJob"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_linkAs__Lorg_kde_koala_KURL_2Lorg_kde_koala_KURL_2Z(JNIEnv* env, jclass cls, jobject src, jobject dest, jboolean showProgressInfo) +{ + (void) cls; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::linkAs((const KURL&)*(const KURL*) QtSupport::getQt(env, src), (const KURL&)*(const KURL*) QtSupport::getQt(env, dest), (bool) showProgressInfo), "org.kde.koala.CopyJob"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_link__Ljava_util_ArrayList_2Lorg_kde_koala_KURL_2(JNIEnv* env, jclass cls, jobjectArray src, jobject destDir) +{ + (void) cls; +static KURL::List* _qlist_src = 0; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::link((const KURL::List&)*(KURL::List*) KDESupport::toKURLList(env, src, &_qlist_src), (const KURL&)*(const KURL*) QtSupport::getQt(env, destDir)), "org.kde.koala.CopyJob"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_link__Ljava_util_ArrayList_2Lorg_kde_koala_KURL_2Z(JNIEnv* env, jclass cls, jobjectArray src, jobject destDir, jboolean showProgressInfo) +{ + (void) cls; +static KURL::List* _qlist_src = 0; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::link((const KURL::List&)*(KURL::List*) KDESupport::toKURLList(env, src, &_qlist_src), (const KURL&)*(const KURL*) QtSupport::getQt(env, destDir), (bool) showProgressInfo), "org.kde.koala.CopyJob"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_link__Lorg_kde_koala_KURL_2Lorg_kde_koala_KURL_2(JNIEnv* env, jclass cls, jobject src, jobject destDir) +{ + (void) cls; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::link((const KURL&)*(const KURL*) QtSupport::getQt(env, src), (const KURL&)*(const KURL*) QtSupport::getQt(env, destDir)), "org.kde.koala.CopyJob"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_link__Lorg_kde_koala_KURL_2Lorg_kde_koala_KURL_2Z(JNIEnv* env, jclass cls, jobject src, jobject destDir, jboolean showProgressInfo) +{ + (void) cls; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::link((const KURL&)*(const KURL*) QtSupport::getQt(env, src), (const KURL&)*(const KURL*) QtSupport::getQt(env, destDir), (bool) showProgressInfo), "org.kde.koala.CopyJob"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_listDir__Lorg_kde_koala_KURL_2(JNIEnv* env, jclass cls, jobject url) +{ + (void) cls; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::listDir((const KURL&)*(const KURL*) QtSupport::getQt(env, url)), "org.kde.koala.ListJob"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_listDir__Lorg_kde_koala_KURL_2Z(JNIEnv* env, jclass cls, jobject url, jboolean showProgressInfo) +{ + (void) cls; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::listDir((const KURL&)*(const KURL*) QtSupport::getQt(env, url), (bool) showProgressInfo), "org.kde.koala.ListJob"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_listDir__Lorg_kde_koala_KURL_2ZZ(JNIEnv* env, jclass cls, jobject url, jboolean showProgressInfo, jboolean includeHidden) +{ + (void) cls; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::listDir((const KURL&)*(const KURL*) QtSupport::getQt(env, url), (bool) showProgressInfo, (bool) includeHidden), "org.kde.koala.ListJob"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_listRecursive__Lorg_kde_koala_KURL_2(JNIEnv* env, jclass cls, jobject url) +{ + (void) cls; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::listRecursive((const KURL&)*(const KURL*) QtSupport::getQt(env, url)), "org.kde.koala.ListJob"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_listRecursive__Lorg_kde_koala_KURL_2Z(JNIEnv* env, jclass cls, jobject url, jboolean showProgressInfo) +{ + (void) cls; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::listRecursive((const KURL&)*(const KURL*) QtSupport::getQt(env, url), (bool) showProgressInfo), "org.kde.koala.ListJob"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_listRecursive__Lorg_kde_koala_KURL_2ZZ(JNIEnv* env, jclass cls, jobject url, jboolean showProgressInfo, jboolean includeHidden) +{ + (void) cls; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::listRecursive((const KURL&)*(const KURL*) QtSupport::getQt(env, url), (bool) showProgressInfo, (bool) includeHidden), "org.kde.koala.ListJob"); + return xret; +} + +JNIEXPORT jboolean JNICALL +Java_org_kde_koala_KIO_manually_1mounted(JNIEnv* env, jclass cls, jstring filename) +{ + (void) cls; +static TQString* _qstring_filename = 0; + jboolean xret = (jboolean) TDEIO::manually_mounted((const TQString&)*(TQString*) QtSupport::toTQString(env, filename, &_qstring_filename)); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_mimetype__Lorg_kde_koala_KURL_2(JNIEnv* env, jclass cls, jobject url) +{ + (void) cls; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::mimetype((const KURL&)*(const KURL*) QtSupport::getQt(env, url)), "org.kde.koala.MimetypeJob"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_mimetype__Lorg_kde_koala_KURL_2Z(JNIEnv* env, jclass cls, jobject url, jboolean showProgressInfo) +{ + (void) cls; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::mimetype((const KURL&)*(const KURL*) QtSupport::getQt(env, url), (bool) showProgressInfo), "org.kde.koala.MimetypeJob"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_mkdir__Lorg_kde_koala_KURL_2(JNIEnv* env, jclass cls, jobject url) +{ + (void) cls; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::mkdir((const KURL&)*(const KURL*) QtSupport::getQt(env, url)), "org.kde.koala.SimpleJob"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_mkdir__Lorg_kde_koala_KURL_2I(JNIEnv* env, jclass cls, jobject url, jint permissions) +{ + (void) cls; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::mkdir((const KURL&)*(const KURL*) QtSupport::getQt(env, url), (int) permissions), "org.kde.koala.SimpleJob"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_mount__ZLjava_lang_String_2Ljava_lang_String_2Ljava_lang_String_2(JNIEnv* env, jclass cls, jboolean ro, jstring fstype, jstring dev, jstring point) +{ + (void) cls; +static TQCString* _qstring_fstype = 0; +static TQString* _qstring_dev = 0; +static TQString* _qstring_point = 0; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::mount((bool) ro, (const char*) QtSupport::toCharString(env, fstype, &_qstring_fstype), (const TQString&)*(TQString*) QtSupport::toTQString(env, dev, &_qstring_dev), (const TQString&)*(TQString*) QtSupport::toTQString(env, point, &_qstring_point)), "org.kde.koala.SimpleJob"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_mount__ZLjava_lang_String_2Ljava_lang_String_2Ljava_lang_String_2Z(JNIEnv* env, jclass cls, jboolean ro, jstring fstype, jstring dev, jstring point, jboolean showProgressInfo) +{ + (void) cls; +static TQCString* _qstring_fstype = 0; +static TQString* _qstring_dev = 0; +static TQString* _qstring_point = 0; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::mount((bool) ro, (const char*) QtSupport::toCharString(env, fstype, &_qstring_fstype), (const TQString&)*(TQString*) QtSupport::toTQString(env, dev, &_qstring_dev), (const TQString&)*(TQString*) QtSupport::toTQString(env, point, &_qstring_point), (bool) showProgressInfo), "org.kde.koala.SimpleJob"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_moveAs__Lorg_kde_koala_KURL_2Lorg_kde_koala_KURL_2(JNIEnv* env, jclass cls, jobject src, jobject dest) +{ + (void) cls; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::moveAs((const KURL&)*(const KURL*) QtSupport::getQt(env, src), (const KURL&)*(const KURL*) QtSupport::getQt(env, dest)), "org.kde.koala.CopyJob"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_moveAs__Lorg_kde_koala_KURL_2Lorg_kde_koala_KURL_2Z(JNIEnv* env, jclass cls, jobject src, jobject dest, jboolean showProgressInfo) +{ + (void) cls; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::moveAs((const KURL&)*(const KURL*) QtSupport::getQt(env, src), (const KURL&)*(const KURL*) QtSupport::getQt(env, dest), (bool) showProgressInfo), "org.kde.koala.CopyJob"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_move__Ljava_util_ArrayList_2Lorg_kde_koala_KURL_2(JNIEnv* env, jclass cls, jobjectArray src, jobject dest) +{ + (void) cls; +static KURL::List* _qlist_src = 0; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::move((const KURL::List&)*(KURL::List*) KDESupport::toKURLList(env, src, &_qlist_src), (const KURL&)*(const KURL*) QtSupport::getQt(env, dest)), "org.kde.koala.CopyJob"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_move__Ljava_util_ArrayList_2Lorg_kde_koala_KURL_2Z(JNIEnv* env, jclass cls, jobjectArray src, jobject dest, jboolean showProgressInfo) +{ + (void) cls; +static KURL::List* _qlist_src = 0; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::move((const KURL::List&)*(KURL::List*) KDESupport::toKURLList(env, src, &_qlist_src), (const KURL&)*(const KURL*) QtSupport::getQt(env, dest), (bool) showProgressInfo), "org.kde.koala.CopyJob"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_move__Lorg_kde_koala_KURL_2Lorg_kde_koala_KURL_2(JNIEnv* env, jclass cls, jobject src, jobject dest) +{ + (void) cls; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::move((const KURL&)*(const KURL*) QtSupport::getQt(env, src), (const KURL&)*(const KURL*) QtSupport::getQt(env, dest)), "org.kde.koala.CopyJob"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_move__Lorg_kde_koala_KURL_2Lorg_kde_koala_KURL_2Z(JNIEnv* env, jclass cls, jobject src, jobject dest, jboolean showProgressInfo) +{ + (void) cls; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::move((const KURL&)*(const KURL*) QtSupport::getQt(env, src), (const KURL&)*(const KURL*) QtSupport::getQt(env, dest), (bool) showProgressInfo), "org.kde.koala.CopyJob"); + return xret; +} + +JNIEXPORT jstring JNICALL +Java_org_kde_koala_KIO_number(JNIEnv* env, jclass cls, jlong size) +{ + TQString _qstring; + (void) cls; + _qstring = TDEIO::number((TDEIO::filesize_t) size); + return QtSupport::fromTQString(env, &_qstring); +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_op_1read(JNIEnv* env, jclass cls, jobject s, jobject a) +{ + (void) cls; + jobject xret = QtSupport::objectForQtKey(env, (void*)(TQDataStream *) &TDEIO::operator>>((TQDataStream&)*(TQDataStream*) QtSupport::getQt(env, s), (TDEIO::AuthInfo&)*(TDEIO::AuthInfo*) QtSupport::getQt(env, a)), "org.kde.qt.TQDataStream"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_op_1write(JNIEnv* env, jclass cls, jobject s, jobject a) +{ + (void) cls; + jobject xret = QtSupport::objectForQtKey(env, (void*)(TQDataStream *) &TDEIO::operator<<((TQDataStream&)*(TQDataStream*) QtSupport::getQt(env, s), (const TDEIO::AuthInfo&)*(const TDEIO::AuthInfo*) QtSupport::getQt(env, a)), "org.kde.qt.TQDataStream"); + return xret; +} + +JNIEXPORT jint JNICALL +Java_org_kde_koala_KIO_open_1RenameDlg__Ljava_lang_String_2Ljava_lang_String_2Ljava_lang_String_2ILjava_lang_StringBuffer_2(JNIEnv* env, jclass cls, jstring caption, jstring src, jstring dest, jint mode, jobject newDestPath) +{ + (void) cls; +static TQString* _qstring_caption = 0; +static TQString* _qstring_src = 0; +static TQString* _qstring_dest = 0; +static TQString* _qstring_newDestPath = 0; + jint xret = (jint) TDEIO::open_RenameDlg((const TQString&)*(TQString*) QtSupport::toTQString(env, caption, &_qstring_caption), (const TQString&)*(TQString*) QtSupport::toTQString(env, src, &_qstring_src), (const TQString&)*(TQString*) QtSupport::toTQString(env, dest, &_qstring_dest), (TDEIO::RenameDlg_Mode) mode, (TQString&)*(TQString*) QtSupport::toTQStringFromStringBuffer(env, newDestPath, &_qstring_newDestPath)); + QtSupport::fromTQStringToStringBuffer(env, _qstring_newDestPath, newDestPath); + return xret; +} + +JNIEXPORT jint JNICALL +Java_org_kde_koala_KIO_open_1RenameDlg__Ljava_lang_String_2Ljava_lang_String_2Ljava_lang_String_2ILjava_lang_StringBuffer_2J(JNIEnv* env, jclass cls, jstring caption, jstring src, jstring dest, jint mode, jobject newDestPath, jlong sizeSrc) +{ + (void) cls; +static TQString* _qstring_caption = 0; +static TQString* _qstring_src = 0; +static TQString* _qstring_dest = 0; +static TQString* _qstring_newDestPath = 0; + jint xret = (jint) TDEIO::open_RenameDlg((const TQString&)*(TQString*) QtSupport::toTQString(env, caption, &_qstring_caption), (const TQString&)*(TQString*) QtSupport::toTQString(env, src, &_qstring_src), (const TQString&)*(TQString*) QtSupport::toTQString(env, dest, &_qstring_dest), (TDEIO::RenameDlg_Mode) mode, (TQString&)*(TQString*) QtSupport::toTQStringFromStringBuffer(env, newDestPath, &_qstring_newDestPath), (TDEIO::filesize_t) sizeSrc); + QtSupport::fromTQStringToStringBuffer(env, _qstring_newDestPath, newDestPath); + return xret; +} + +JNIEXPORT jint JNICALL +Java_org_kde_koala_KIO_open_1RenameDlg__Ljava_lang_String_2Ljava_lang_String_2Ljava_lang_String_2ILjava_lang_StringBuffer_2JJ(JNIEnv* env, jclass cls, jstring caption, jstring src, jstring dest, jint mode, jobject newDestPath, jlong sizeSrc, jlong sizeDest) +{ + (void) cls; +static TQString* _qstring_caption = 0; +static TQString* _qstring_src = 0; +static TQString* _qstring_dest = 0; +static TQString* _qstring_newDestPath = 0; + jint xret = (jint) TDEIO::open_RenameDlg((const TQString&)*(TQString*) QtSupport::toTQString(env, caption, &_qstring_caption), (const TQString&)*(TQString*) QtSupport::toTQString(env, src, &_qstring_src), (const TQString&)*(TQString*) QtSupport::toTQString(env, dest, &_qstring_dest), (TDEIO::RenameDlg_Mode) mode, (TQString&)*(TQString*) QtSupport::toTQStringFromStringBuffer(env, newDestPath, &_qstring_newDestPath), (TDEIO::filesize_t) sizeSrc, (TDEIO::filesize_t) sizeDest); + QtSupport::fromTQStringToStringBuffer(env, _qstring_newDestPath, newDestPath); + return xret; +} + +JNIEXPORT jint JNICALL +Java_org_kde_koala_KIO_open_1RenameDlg__Ljava_lang_String_2Ljava_lang_String_2Ljava_lang_String_2ILjava_lang_StringBuffer_2JJI(JNIEnv* env, jclass cls, jstring caption, jstring src, jstring dest, jint mode, jobject newDestPath, jlong sizeSrc, jlong sizeDest, jint ctimeSrc) +{ + (void) cls; +static TQString* _qstring_caption = 0; +static TQString* _qstring_src = 0; +static TQString* _qstring_dest = 0; +static TQString* _qstring_newDestPath = 0; + jint xret = (jint) TDEIO::open_RenameDlg((const TQString&)*(TQString*) QtSupport::toTQString(env, caption, &_qstring_caption), (const TQString&)*(TQString*) QtSupport::toTQString(env, src, &_qstring_src), (const TQString&)*(TQString*) QtSupport::toTQString(env, dest, &_qstring_dest), (TDEIO::RenameDlg_Mode) mode, (TQString&)*(TQString*) QtSupport::toTQStringFromStringBuffer(env, newDestPath, &_qstring_newDestPath), (TDEIO::filesize_t) sizeSrc, (TDEIO::filesize_t) sizeDest, (time_t) ctimeSrc); + QtSupport::fromTQStringToStringBuffer(env, _qstring_newDestPath, newDestPath); + return xret; +} + +JNIEXPORT jint JNICALL +Java_org_kde_koala_KIO_open_1RenameDlg__Ljava_lang_String_2Ljava_lang_String_2Ljava_lang_String_2ILjava_lang_StringBuffer_2JJII(JNIEnv* env, jclass cls, jstring caption, jstring src, jstring dest, jint mode, jobject newDestPath, jlong sizeSrc, jlong sizeDest, jint ctimeSrc, jint ctimeDest) +{ + (void) cls; +static TQString* _qstring_caption = 0; +static TQString* _qstring_src = 0; +static TQString* _qstring_dest = 0; +static TQString* _qstring_newDestPath = 0; + jint xret = (jint) TDEIO::open_RenameDlg((const TQString&)*(TQString*) QtSupport::toTQString(env, caption, &_qstring_caption), (const TQString&)*(TQString*) QtSupport::toTQString(env, src, &_qstring_src), (const TQString&)*(TQString*) QtSupport::toTQString(env, dest, &_qstring_dest), (TDEIO::RenameDlg_Mode) mode, (TQString&)*(TQString*) QtSupport::toTQStringFromStringBuffer(env, newDestPath, &_qstring_newDestPath), (TDEIO::filesize_t) sizeSrc, (TDEIO::filesize_t) sizeDest, (time_t) ctimeSrc, (time_t) ctimeDest); + QtSupport::fromTQStringToStringBuffer(env, _qstring_newDestPath, newDestPath); + return xret; +} + +JNIEXPORT jint JNICALL +Java_org_kde_koala_KIO_open_1RenameDlg__Ljava_lang_String_2Ljava_lang_String_2Ljava_lang_String_2ILjava_lang_StringBuffer_2JJIII(JNIEnv* env, jclass cls, jstring caption, jstring src, jstring dest, jint mode, jobject newDestPath, jlong sizeSrc, jlong sizeDest, jint ctimeSrc, jint ctimeDest, jint mtimeSrc) +{ + (void) cls; +static TQString* _qstring_caption = 0; +static TQString* _qstring_src = 0; +static TQString* _qstring_dest = 0; +static TQString* _qstring_newDestPath = 0; + jint xret = (jint) TDEIO::open_RenameDlg((const TQString&)*(TQString*) QtSupport::toTQString(env, caption, &_qstring_caption), (const TQString&)*(TQString*) QtSupport::toTQString(env, src, &_qstring_src), (const TQString&)*(TQString*) QtSupport::toTQString(env, dest, &_qstring_dest), (TDEIO::RenameDlg_Mode) mode, (TQString&)*(TQString*) QtSupport::toTQStringFromStringBuffer(env, newDestPath, &_qstring_newDestPath), (TDEIO::filesize_t) sizeSrc, (TDEIO::filesize_t) sizeDest, (time_t) ctimeSrc, (time_t) ctimeDest, (time_t) mtimeSrc); + QtSupport::fromTQStringToStringBuffer(env, _qstring_newDestPath, newDestPath); + return xret; +} + +JNIEXPORT jint JNICALL +Java_org_kde_koala_KIO_open_1RenameDlg__Ljava_lang_String_2Ljava_lang_String_2Ljava_lang_String_2ILjava_lang_StringBuffer_2JJIIII(JNIEnv* env, jclass cls, jstring caption, jstring src, jstring dest, jint mode, jobject newDestPath, jlong sizeSrc, jlong sizeDest, jint ctimeSrc, jint ctimeDest, jint mtimeSrc, jint mtimeDest) +{ + (void) cls; +static TQString* _qstring_caption = 0; +static TQString* _qstring_src = 0; +static TQString* _qstring_dest = 0; +static TQString* _qstring_newDestPath = 0; + jint xret = (jint) TDEIO::open_RenameDlg((const TQString&)*(TQString*) QtSupport::toTQString(env, caption, &_qstring_caption), (const TQString&)*(TQString*) QtSupport::toTQString(env, src, &_qstring_src), (const TQString&)*(TQString*) QtSupport::toTQString(env, dest, &_qstring_dest), (TDEIO::RenameDlg_Mode) mode, (TQString&)*(TQString*) QtSupport::toTQStringFromStringBuffer(env, newDestPath, &_qstring_newDestPath), (TDEIO::filesize_t) sizeSrc, (TDEIO::filesize_t) sizeDest, (time_t) ctimeSrc, (time_t) ctimeDest, (time_t) mtimeSrc, (time_t) mtimeDest); + QtSupport::fromTQStringToStringBuffer(env, _qstring_newDestPath, newDestPath); + return xret; +} + +JNIEXPORT jint JNICALL +Java_org_kde_koala_KIO_open_1SkipDlg__Z(JNIEnv* env, jclass cls, jboolean _multi) +{ + (void) cls; + (void) env; + jint xret = (jint) TDEIO::open_SkipDlg((bool) _multi); + return xret; +} + +JNIEXPORT jint JNICALL +Java_org_kde_koala_KIO_open_1SkipDlg__ZLjava_lang_String_2(JNIEnv* env, jclass cls, jboolean _multi, jstring _error_text) +{ + (void) cls; +static TQString* _qstring__error_text = 0; + jint xret = (jint) TDEIO::open_SkipDlg((bool) _multi, (const TQString&)*(TQString*) QtSupport::toTQString(env, _error_text, &_qstring__error_text)); + return xret; +} + +JNIEXPORT jint JNICALL +Java_org_kde_koala_KIO_parseCacheControl(JNIEnv* env, jclass cls, jstring cacheControl) +{ + (void) cls; +static TQString* _qstring_cacheControl = 0; + jint xret = (jint) TDEIO::parseCacheControl((const TQString&)*(TQString*) QtSupport::toTQString(env, cacheControl, &_qstring_cacheControl)); + return xret; +} + +JNIEXPORT jstring JNICALL +Java_org_kde_koala_KIO_pasteActionText(JNIEnv* env, jclass cls) +{ + TQString _qstring; + (void) cls; + _qstring = TDEIO::pasteActionText(); + return QtSupport::fromTQString(env, &_qstring); +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_pasteClipboard__Lorg_kde_koala_KURL_2(JNIEnv* env, jclass cls, jobject destURL) +{ + (void) cls; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::pasteClipboard((const KURL&)*(const KURL*) QtSupport::getQt(env, destURL)), "org.kde.koala.Job"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_pasteClipboard__Lorg_kde_koala_KURL_2Z(JNIEnv* env, jclass cls, jobject destURL, jboolean move) +{ + (void) cls; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::pasteClipboard((const KURL&)*(const KURL*) QtSupport::getQt(env, destURL), (bool) move), "org.kde.koala.Job"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_pasteDataAsync__Lorg_kde_koala_KURL_2_3B(JNIEnv* env, jclass cls, jobject destURL, jbyteArray data) +{ + (void) cls; +static TQByteArray* _qbyteArray_data = 0; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::pasteDataAsync((const KURL&)*(const KURL*) QtSupport::getQt(env, destURL), (const TQByteArray&)*(TQByteArray*) QtSupport::toTQByteArray(env, data, &_qbyteArray_data)), "org.kde.koala.CopyJob"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_pasteDataAsync__Lorg_kde_koala_KURL_2_3BLjava_lang_String_2(JNIEnv* env, jclass cls, jobject destURL, jbyteArray data, jstring dialogText) +{ + (void) cls; +static TQByteArray* _qbyteArray_data = 0; +static TQString* _qstring_dialogText = 0; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::pasteDataAsync((const KURL&)*(const KURL*) QtSupport::getQt(env, destURL), (const TQByteArray&)*(TQByteArray*) QtSupport::toTQByteArray(env, data, &_qbyteArray_data), (const TQString&)*(TQString*) QtSupport::toTQString(env, dialogText, &_qstring_dialogText)), "org.kde.koala.CopyJob"); + return xret; +} + +JNIEXPORT void JNICALL +Java_org_kde_koala_KIO_pasteData(JNIEnv* env, jclass cls, jobject destURL, jbyteArray data) +{ + (void) cls; +static TQByteArray* _qbyteArray_data = 0; + TDEIO::pasteData((const KURL&)*(const KURL*) QtSupport::getQt(env, destURL), (const TQByteArray&)*(TQByteArray*) QtSupport::toTQByteArray(env, data, &_qbyteArray_data)); + return; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_pasteMimeSource__Lorg_kde_qt_QMimeSourceInterface_2Lorg_kde_koala_KURL_2Ljava_lang_String_2Lorg_kde_qt_QWidget_2(JNIEnv* env, jclass cls, jobject data, jobject destURL, jstring dialogText, jobject widget) +{ + (void) cls; +static TQString* _qstring_dialogText = 0; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::pasteMimeSource((TQMimeSource*) QtSupport::mimeSource(env, data), (const KURL&)*(const KURL*) QtSupport::getQt(env, destURL), (const TQString&)*(TQString*) QtSupport::toTQString(env, dialogText, &_qstring_dialogText), (TQWidget*) QtSupport::getQt(env, widget)), "org.kde.koala.CopyJob"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_pasteMimeSource__Lorg_kde_qt_QMimeSourceInterface_2Lorg_kde_koala_KURL_2Ljava_lang_String_2Lorg_kde_qt_QWidget_2Z(JNIEnv* env, jclass cls, jobject data, jobject destURL, jstring dialogText, jobject widget, jboolean clipboard) +{ + (void) cls; +static TQString* _qstring_dialogText = 0; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::pasteMimeSource((TQMimeSource*) QtSupport::mimeSource(env, data), (const KURL&)*(const KURL*) QtSupport::getQt(env, destURL), (const TQString&)*(TQString*) QtSupport::toTQString(env, dialogText, &_qstring_dialogText), (TQWidget*) QtSupport::getQt(env, widget), (bool) clipboard), "org.kde.koala.CopyJob"); + return xret; +} + +JNIEXPORT jboolean JNICALL +Java_org_kde_koala_KIO_probably_1slow_1mounted(JNIEnv* env, jclass cls, jstring filename) +{ + (void) cls; +static TQString* _qstring_filename = 0; + jboolean xret = (jboolean) TDEIO::probably_slow_mounted((const TQString&)*(TQString*) QtSupport::toTQString(env, filename, &_qstring_filename)); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_put__Lorg_kde_koala_KURL_2IZZ(JNIEnv* env, jclass cls, jobject url, jint permissions, jboolean overwrite, jboolean resume) +{ + (void) cls; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::put((const KURL&)*(const KURL*) QtSupport::getQt(env, url), (int) permissions, (bool) overwrite, (bool) resume), "org.kde.koala.TransferJob"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_put__Lorg_kde_koala_KURL_2IZZZ(JNIEnv* env, jclass cls, jobject url, jint permissions, jboolean overwrite, jboolean resume, jboolean showProgressInfo) +{ + (void) cls; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::put((const KURL&)*(const KURL*) QtSupport::getQt(env, url), (int) permissions, (bool) overwrite, (bool) resume, (bool) showProgressInfo), "org.kde.koala.TransferJob"); + return xret; +} + +JNIEXPORT jbyteArray JNICALL +Java_org_kde_koala_KIO_rawErrorDetail__ILjava_lang_String_2(JNIEnv* env, jclass cls, jint errorCode, jstring errorText) +{ + TQByteArray _qbyteArray; + (void) cls; +static TQString* _qstring_errorText = 0; + _qbyteArray = TDEIO::rawErrorDetail((int) errorCode, (const TQString&)*(TQString*) QtSupport::toTQString(env, errorText, &_qstring_errorText)); + return QtSupport::fromTQByteArray(env, &_qbyteArray); +} + +JNIEXPORT jbyteArray JNICALL +Java_org_kde_koala_KIO_rawErrorDetail__ILjava_lang_String_2Lorg_kde_koala_KURL_2(JNIEnv* env, jclass cls, jint errorCode, jstring errorText, jobject reqUrl) +{ + TQByteArray _qbyteArray; + (void) cls; +static TQString* _qstring_errorText = 0; + _qbyteArray = TDEIO::rawErrorDetail((int) errorCode, (const TQString&)*(TQString*) QtSupport::toTQString(env, errorText, &_qstring_errorText), (const KURL*) QtSupport::getQt(env, reqUrl)); + return QtSupport::fromTQByteArray(env, &_qbyteArray); +} + +JNIEXPORT jbyteArray JNICALL +Java_org_kde_koala_KIO_rawErrorDetail__ILjava_lang_String_2Lorg_kde_koala_KURL_2I(JNIEnv* env, jclass cls, jint errorCode, jstring errorText, jobject reqUrl, jint method) +{ + TQByteArray _qbyteArray; + (void) cls; +static TQString* _qstring_errorText = 0; + _qbyteArray = TDEIO::rawErrorDetail((int) errorCode, (const TQString&)*(TQString*) QtSupport::toTQString(env, errorText, &_qstring_errorText), (const KURL*) QtSupport::getQt(env, reqUrl), (int) method); + return QtSupport::fromTQByteArray(env, &_qbyteArray); +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_rename(JNIEnv* env, jclass cls, jobject src, jobject dest, jboolean overwrite) +{ + (void) cls; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::rename((const KURL&)*(const KURL*) QtSupport::getQt(env, src), (const KURL&)*(const KURL*) QtSupport::getQt(env, dest), (bool) overwrite), "org.kde.koala.SimpleJob"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_rmdir(JNIEnv* env, jclass cls, jobject url) +{ + (void) cls; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::rmdir((const KURL&)*(const KURL*) QtSupport::getQt(env, url)), "org.kde.koala.SimpleJob"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_special__Lorg_kde_koala_KURL_2_3B(JNIEnv* env, jclass cls, jobject url, jbyteArray data) +{ + (void) cls; +static TQByteArray* _qbyteArray_data = 0; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::special((const KURL&)*(const KURL*) QtSupport::getQt(env, url), (const TQByteArray&)*(TQByteArray*) QtSupport::toTQByteArray(env, data, &_qbyteArray_data)), "org.kde.koala.SimpleJob"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_special__Lorg_kde_koala_KURL_2_3BZ(JNIEnv* env, jclass cls, jobject url, jbyteArray data, jboolean showProgressInfo) +{ + (void) cls; +static TQByteArray* _qbyteArray_data = 0; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::special((const KURL&)*(const KURL*) QtSupport::getQt(env, url), (const TQByteArray&)*(TQByteArray*) QtSupport::toTQByteArray(env, data, &_qbyteArray_data), (bool) showProgressInfo), "org.kde.koala.SimpleJob"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_stat__Lorg_kde_koala_KURL_2(JNIEnv* env, jclass cls, jobject url) +{ + (void) cls; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::stat((const KURL&)*(const KURL*) QtSupport::getQt(env, url)), "org.kde.koala.StatJob"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_stat__Lorg_kde_koala_KURL_2Z(JNIEnv* env, jclass cls, jobject url, jboolean showProgressInfo) +{ + (void) cls; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::stat((const KURL&)*(const KURL*) QtSupport::getQt(env, url), (bool) showProgressInfo), "org.kde.koala.StatJob"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_stat__Lorg_kde_koala_KURL_2ZS(JNIEnv* env, jclass cls, jobject url, jboolean sideIsSource, jshort details) +{ + (void) cls; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::stat((const KURL&)*(const KURL*) QtSupport::getQt(env, url), (bool) sideIsSource, (short int) details), "org.kde.koala.StatJob"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_stat__Lorg_kde_koala_KURL_2ZSZ(JNIEnv* env, jclass cls, jobject url, jboolean sideIsSource, jshort details, jboolean showProgressInfo) +{ + (void) cls; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::stat((const KURL&)*(const KURL*) QtSupport::getQt(env, url), (bool) sideIsSource, (short int) details, (bool) showProgressInfo), "org.kde.koala.StatJob"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_storedGet__Lorg_kde_koala_KURL_2(JNIEnv* env, jclass cls, jobject url) +{ + (void) cls; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::storedGet((const KURL&)*(const KURL*) QtSupport::getQt(env, url)), "org.kde.koala.StoredTransferJob"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_storedGet__Lorg_kde_koala_KURL_2Z(JNIEnv* env, jclass cls, jobject url, jboolean reload) +{ + (void) cls; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::storedGet((const KURL&)*(const KURL*) QtSupport::getQt(env, url), (bool) reload), "org.kde.koala.StoredTransferJob"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_storedGet__Lorg_kde_koala_KURL_2ZZ(JNIEnv* env, jclass cls, jobject url, jboolean reload, jboolean showProgressInfo) +{ + (void) cls; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::storedGet((const KURL&)*(const KURL*) QtSupport::getQt(env, url), (bool) reload, (bool) showProgressInfo), "org.kde.koala.StoredTransferJob"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_storedPut___3BLorg_kde_koala_KURL_2IZZ(JNIEnv* env, jclass cls, jbyteArray arr, jobject url, jint permissions, jboolean overwrite, jboolean resume) +{ + (void) cls; +static TQByteArray* _qbyteArray_arr = 0; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::storedPut((const TQByteArray&)*(TQByteArray*) QtSupport::toTQByteArray(env, arr, &_qbyteArray_arr), (const KURL&)*(const KURL*) QtSupport::getQt(env, url), (int) permissions, (bool) overwrite, (bool) resume), "org.kde.koala.StoredTransferJob"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_storedPut___3BLorg_kde_koala_KURL_2IZZZ(JNIEnv* env, jclass cls, jbyteArray arr, jobject url, jint permissions, jboolean overwrite, jboolean resume, jboolean showProgressInfo) +{ + (void) cls; +static TQByteArray* _qbyteArray_arr = 0; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::storedPut((const TQByteArray&)*(TQByteArray*) QtSupport::toTQByteArray(env, arr, &_qbyteArray_arr), (const KURL&)*(const KURL*) QtSupport::getQt(env, url), (int) permissions, (bool) overwrite, (bool) resume, (bool) showProgressInfo), "org.kde.koala.StoredTransferJob"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_symlink__Ljava_lang_String_2Lorg_kde_koala_KURL_2Z(JNIEnv* env, jclass cls, jstring target, jobject dest, jboolean overwrite) +{ + (void) cls; +static TQString* _qstring_target = 0; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::symlink((const TQString&)*(TQString*) QtSupport::toTQString(env, target, &_qstring_target), (const KURL&)*(const KURL*) QtSupport::getQt(env, dest), (bool) overwrite), "org.kde.koala.SimpleJob"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_symlink__Ljava_lang_String_2Lorg_kde_koala_KURL_2ZZ(JNIEnv* env, jclass cls, jstring target, jobject dest, jboolean overwrite, jboolean showProgressInfo) +{ + (void) cls; +static TQString* _qstring_target = 0; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::symlink((const TQString&)*(TQString*) QtSupport::toTQString(env, target, &_qstring_target), (const KURL&)*(const KURL*) QtSupport::getQt(env, dest), (bool) overwrite, (bool) showProgressInfo), "org.kde.koala.SimpleJob"); + return xret; +} + +JNIEXPORT jboolean JNICALL +Java_org_kde_koala_KIO_testFileSystemFlag(JNIEnv* env, jclass cls, jstring filename, jint flag) +{ + (void) cls; +static TQString* _qstring_filename = 0; + jboolean xret = (jboolean) TDEIO::testFileSystemFlag((const TQString&)*(TQString*) QtSupport::toTQString(env, filename, &_qstring_filename), (TDEIO::FileSystemFlag) flag); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_trash__Ljava_util_ArrayList_2(JNIEnv* env, jclass cls, jobjectArray src) +{ + (void) cls; +static KURL::List* _qlist_src = 0; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::trash((const KURL::List&)*(KURL::List*) KDESupport::toKURLList(env, src, &_qlist_src)), "org.kde.koala.CopyJob"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_trash__Ljava_util_ArrayList_2Z(JNIEnv* env, jclass cls, jobjectArray src, jboolean showProgressInfo) +{ + (void) cls; +static KURL::List* _qlist_src = 0; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::trash((const KURL::List&)*(KURL::List*) KDESupport::toKURLList(env, src, &_qlist_src), (bool) showProgressInfo), "org.kde.koala.CopyJob"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_trash__Lorg_kde_koala_KURL_2(JNIEnv* env, jclass cls, jobject src) +{ + (void) cls; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::trash((const KURL&)*(const KURL*) QtSupport::getQt(env, src)), "org.kde.koala.CopyJob"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_trash__Lorg_kde_koala_KURL_2Z(JNIEnv* env, jclass cls, jobject src, jboolean showProgressInfo) +{ + (void) cls; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::trash((const KURL&)*(const KURL*) QtSupport::getQt(env, src), (bool) showProgressInfo), "org.kde.koala.CopyJob"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_unmount__Ljava_lang_String_2(JNIEnv* env, jclass cls, jstring point) +{ + (void) cls; +static TQString* _qstring_point = 0; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::unmount((const TQString&)*(TQString*) QtSupport::toTQString(env, point, &_qstring_point)), "org.kde.koala.SimpleJob"); + return xret; +} + +JNIEXPORT jobject JNICALL +Java_org_kde_koala_KIO_unmount__Ljava_lang_String_2Z(JNIEnv* env, jclass cls, jstring point, jboolean showProgressInfo) +{ + (void) cls; +static TQString* _qstring_point = 0; + jobject xret = QtSupport::objectForQtKey(env, (void*)TDEIO::unmount((const TQString&)*(TQString*) QtSupport::toTQString(env, point, &_qstring_point), (bool) showProgressInfo), "org.kde.koala.SimpleJob"); + return xret; +} + +JNIEXPORT jstring JNICALL +Java_org_kde_koala_KIO_unsupportedActionErrorString(JNIEnv* env, jclass cls, jstring protocol, jint cmd) +{ + TQString _qstring; + (void) cls; +static TQString* _qstring_protocol = 0; + _qstring = TDEIO::unsupportedActionErrorString((const TQString&)*(TQString*) QtSupport::toTQString(env, protocol, &_qstring_protocol), (int) cmd); + return QtSupport::fromTQString(env, &_qstring); +} + diff --git a/kdejava/koala/kdejava/TDEIO.h b/kdejava/koala/kdejava/TDEIO.h new file mode 100644 index 00000000..2da9ca8b --- /dev/null +++ b/kdejava/koala/kdejava/TDEIO.h @@ -0,0 +1,150 @@ +/* DO NOT EDIT THIS FILE - it is machine generated */ + +#ifndef __org_kde_koala_KIO__ +#define __org_kde_koala_KIO__ + +#include + +#ifdef __cplusplus +extern "C" +{ +#endif + +extern JNIEXPORT jint JNICALL Java_org_kde_koala_KIO_open_1SkipDlg__ZLjava_lang_String_2 (JNIEnv *env, jclass, jboolean, jstring); +extern JNIEXPORT jint JNICALL Java_org_kde_koala_KIO_open_1SkipDlg__Z (JNIEnv *env, jclass, jboolean); +extern JNIEXPORT jint JNICALL Java_org_kde_koala_KIO_open_1RenameDlg__Ljava_lang_String_2Ljava_lang_String_2Ljava_lang_String_2ILjava_lang_StringBuffer_2JJIIII (JNIEnv *env, jclass, jstring, jstring, jstring, jint, jobject, jlong, jlong, jint, jint, jint, jint); +extern JNIEXPORT jint JNICALL Java_org_kde_koala_KIO_open_1RenameDlg__Ljava_lang_String_2Ljava_lang_String_2Ljava_lang_String_2ILjava_lang_StringBuffer_2JJIII (JNIEnv *env, jclass, jstring, jstring, jstring, jint, jobject, jlong, jlong, jint, jint, jint); +extern JNIEXPORT jint JNICALL Java_org_kde_koala_KIO_open_1RenameDlg__Ljava_lang_String_2Ljava_lang_String_2Ljava_lang_String_2ILjava_lang_StringBuffer_2JJII (JNIEnv *env, jclass, jstring, jstring, jstring, jint, jobject, jlong, jlong, jint, jint); +extern JNIEXPORT jint JNICALL Java_org_kde_koala_KIO_open_1RenameDlg__Ljava_lang_String_2Ljava_lang_String_2Ljava_lang_String_2ILjava_lang_StringBuffer_2JJI (JNIEnv *env, jclass, jstring, jstring, jstring, jint, jobject, jlong, jlong, jint); +extern JNIEXPORT jint JNICALL Java_org_kde_koala_KIO_open_1RenameDlg__Ljava_lang_String_2Ljava_lang_String_2Ljava_lang_String_2ILjava_lang_StringBuffer_2JJ (JNIEnv *env, jclass, jstring, jstring, jstring, jint, jobject, jlong, jlong); +extern JNIEXPORT jint JNICALL Java_org_kde_koala_KIO_open_1RenameDlg__Ljava_lang_String_2Ljava_lang_String_2Ljava_lang_String_2ILjava_lang_StringBuffer_2J (JNIEnv *env, jclass, jstring, jstring, jstring, jint, jobject, jlong); +extern JNIEXPORT jint JNICALL Java_org_kde_koala_KIO_open_1RenameDlg__Ljava_lang_String_2Ljava_lang_String_2Ljava_lang_String_2ILjava_lang_StringBuffer_2 (JNIEnv *env, jclass, jstring, jstring, jstring, jint, jobject); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_op_1write (JNIEnv *env, jclass, jobject, jobject); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_op_1read (JNIEnv *env, jclass, jobject, jobject); +extern JNIEXPORT jstring JNICALL Java_org_kde_koala_KIO_convertSize (JNIEnv *env, jclass, jlong); +extern JNIEXPORT jstring JNICALL Java_org_kde_koala_KIO_convertSizeWithBytes (JNIEnv *env, jclass, jlong); +extern JNIEXPORT jstring JNICALL Java_org_kde_koala_KIO_number (JNIEnv *env, jclass, jlong); +extern JNIEXPORT jstring JNICALL Java_org_kde_koala_KIO_convertSizeFromKB (JNIEnv *env, jclass, jlong); +extern JNIEXPORT jstring JNICALL Java_org_kde_koala_KIO_convertSeconds (JNIEnv *env, jclass, jint); +extern JNIEXPORT jstring JNICALL Java_org_kde_koala_KIO_itemsSummaryString (JNIEnv *env, jclass, jint, jint, jint, jlong, jboolean); +extern JNIEXPORT jstring JNICALL Java_org_kde_koala_KIO_encodeFileName (JNIEnv *env, jclass, jstring); +extern JNIEXPORT jstring JNICALL Java_org_kde_koala_KIO_decodeFileName (JNIEnv *env, jclass, jstring); +extern JNIEXPORT jstring JNICALL Java_org_kde_koala_KIO_buildErrorString (JNIEnv *env, jclass, jint, jstring); +extern JNIEXPORT jbyteArray JNICALL Java_org_kde_koala_KIO_rawErrorDetail__ILjava_lang_String_2Lorg_kde_koala_KURL_2I (JNIEnv *env, jclass, jint, jstring, jobject, jint); +extern JNIEXPORT jbyteArray JNICALL Java_org_kde_koala_KIO_rawErrorDetail__ILjava_lang_String_2Lorg_kde_koala_KURL_2 (JNIEnv *env, jclass, jint, jstring, jobject); +extern JNIEXPORT jbyteArray JNICALL Java_org_kde_koala_KIO_rawErrorDetail__ILjava_lang_String_2 (JNIEnv *env, jclass, jint, jstring); +extern JNIEXPORT jstring JNICALL Java_org_kde_koala_KIO_unsupportedActionErrorString (JNIEnv *env, jclass, jstring, jint); +extern JNIEXPORT jint JNICALL Java_org_kde_koala_KIO_parseCacheControl (JNIEnv *env, jclass, jstring); +extern JNIEXPORT jstring JNICALL Java_org_kde_koala_KIO_getCacheControlString (JNIEnv *env, jclass, jint); +extern JNIEXPORT jstring JNICALL Java_org_kde_koala_KIO_findDeviceMountPoint (JNIEnv *env, jclass, jstring); +extern JNIEXPORT jstring JNICALL Java_org_kde_koala_KIO_findPathMountPoint (JNIEnv *env, jclass, jstring); +extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_KIO_probably_1slow_1mounted (JNIEnv *env, jclass, jstring); +extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_KIO_manually_1mounted (JNIEnv *env, jclass, jstring); +extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_KIO_testFileSystemFlag (JNIEnv *env, jclass, jstring, jint); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_filePreview__Ljava_util_ArrayList_2IIIIZZ_3Ljava_lang_String_2 (JNIEnv *env, jclass, jobject, jint, jint, jint, jint, jboolean, jboolean, jobjectArray); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_filePreview__Ljava_util_ArrayList_2IIIIZZ (JNIEnv *env, jclass, jobject, jint, jint, jint, jint, jboolean, jboolean); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_filePreview__Ljava_util_ArrayList_2IIIIZ (JNIEnv *env, jclass, jobject, jint, jint, jint, jint, jboolean); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_filePreview__Ljava_util_ArrayList_2IIII (JNIEnv *env, jclass, jobject, jint, jint, jint, jint); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_filePreview__Ljava_util_ArrayList_2III (JNIEnv *env, jclass, jobject, jint, jint, jint); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_filePreview__Ljava_util_ArrayList_2II (JNIEnv *env, jclass, jobject, jint, jint); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_filePreview__Ljava_util_ArrayList_2I (JNIEnv *env, jclass, jobject, jint); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_davPropFind__Lorg_kde_koala_KURL_2Lorg_kde_qt_QDomDocument_2Ljava_lang_String_2Z (JNIEnv *env, jclass, jobject, jobject, jstring, jboolean); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_davPropFind__Lorg_kde_koala_KURL_2Lorg_kde_qt_QDomDocument_2Ljava_lang_String_2 (JNIEnv *env, jclass, jobject, jobject, jstring); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_davPropPatch__Lorg_kde_koala_KURL_2Lorg_kde_qt_QDomDocument_2Z (JNIEnv *env, jclass, jobject, jobject, jboolean); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_davPropPatch__Lorg_kde_koala_KURL_2Lorg_kde_qt_QDomDocument_2 (JNIEnv *env, jclass, jobject, jobject); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_davSearch__Lorg_kde_koala_KURL_2Ljava_lang_String_2Ljava_lang_String_2Ljava_lang_String_2Z (JNIEnv *env, jclass, jobject, jstring, jstring, jstring, jboolean); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_davSearch__Lorg_kde_koala_KURL_2Ljava_lang_String_2Ljava_lang_String_2Ljava_lang_String_2 (JNIEnv *env, jclass, jobject, jstring, jstring, jstring); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_fileMetaInfo (JNIEnv *env, jclass, jobject); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_mkdir__Lorg_kde_koala_KURL_2I (JNIEnv *env, jclass, jobject, jint); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_mkdir__Lorg_kde_koala_KURL_2 (JNIEnv *env, jclass, jobject); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_rmdir (JNIEnv *env, jclass, jobject); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_chmod (JNIEnv *env, jclass, jobject, jint); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_rename (JNIEnv *env, jclass, jobject, jobject, jboolean); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_symlink__Ljava_lang_String_2Lorg_kde_koala_KURL_2ZZ (JNIEnv *env, jclass, jstring, jobject, jboolean, jboolean); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_symlink__Ljava_lang_String_2Lorg_kde_koala_KURL_2Z (JNIEnv *env, jclass, jstring, jobject, jboolean); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_special__Lorg_kde_koala_KURL_2_3BZ (JNIEnv *env, jclass, jobject, jbyteArray, jboolean); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_special__Lorg_kde_koala_KURL_2_3B (JNIEnv *env, jclass, jobject, jbyteArray); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_mount__ZLjava_lang_String_2Ljava_lang_String_2Ljava_lang_String_2Z (JNIEnv *env, jclass, jboolean, jstring, jstring, jstring, jboolean); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_mount__ZLjava_lang_String_2Ljava_lang_String_2Ljava_lang_String_2 (JNIEnv *env, jclass, jboolean, jstring, jstring, jstring); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_unmount__Ljava_lang_String_2Z (JNIEnv *env, jclass, jstring, jboolean); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_unmount__Ljava_lang_String_2 (JNIEnv *env, jclass, jstring); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_http_1update_1cache (JNIEnv *env, jclass, jobject, jboolean, jint); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_stat__Lorg_kde_koala_KURL_2Z (JNIEnv *env, jclass, jobject, jboolean); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_stat__Lorg_kde_koala_KURL_2 (JNIEnv *env, jclass, jobject); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_stat__Lorg_kde_koala_KURL_2ZSZ (JNIEnv *env, jclass, jobject, jboolean, jshort, jboolean); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_stat__Lorg_kde_koala_KURL_2ZS (JNIEnv *env, jclass, jobject, jboolean, jshort); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_get__Lorg_kde_koala_KURL_2ZZ (JNIEnv *env, jclass, jobject, jboolean, jboolean); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_get__Lorg_kde_koala_KURL_2Z (JNIEnv *env, jclass, jobject, jboolean); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_get__Lorg_kde_koala_KURL_2 (JNIEnv *env, jclass, jobject); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_put__Lorg_kde_koala_KURL_2IZZZ (JNIEnv *env, jclass, jobject, jint, jboolean, jboolean, jboolean); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_put__Lorg_kde_koala_KURL_2IZZ (JNIEnv *env, jclass, jobject, jint, jboolean, jboolean); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_http_1post__Lorg_kde_koala_KURL_2_3BZ (JNIEnv *env, jclass, jobject, jbyteArray, jboolean); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_http_1post__Lorg_kde_koala_KURL_2_3B (JNIEnv *env, jclass, jobject, jbyteArray); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_storedGet__Lorg_kde_koala_KURL_2ZZ (JNIEnv *env, jclass, jobject, jboolean, jboolean); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_storedGet__Lorg_kde_koala_KURL_2Z (JNIEnv *env, jclass, jobject, jboolean); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_storedGet__Lorg_kde_koala_KURL_2 (JNIEnv *env, jclass, jobject); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_storedPut___3BLorg_kde_koala_KURL_2IZZZ (JNIEnv *env, jclass, jbyteArray, jobject, jint, jboolean, jboolean, jboolean); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_storedPut___3BLorg_kde_koala_KURL_2IZZ (JNIEnv *env, jclass, jbyteArray, jobject, jint, jboolean, jboolean); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_mimetype__Lorg_kde_koala_KURL_2Z (JNIEnv *env, jclass, jobject, jboolean); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_mimetype__Lorg_kde_koala_KURL_2 (JNIEnv *env, jclass, jobject); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_file_1copy__Lorg_kde_koala_KURL_2Lorg_kde_koala_KURL_2IZZZ (JNIEnv *env, jclass, jobject, jobject, jint, jboolean, jboolean, jboolean); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_file_1copy__Lorg_kde_koala_KURL_2Lorg_kde_koala_KURL_2IZZ (JNIEnv *env, jclass, jobject, jobject, jint, jboolean, jboolean); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_file_1copy__Lorg_kde_koala_KURL_2Lorg_kde_koala_KURL_2IZ (JNIEnv *env, jclass, jobject, jobject, jint, jboolean); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_file_1copy__Lorg_kde_koala_KURL_2Lorg_kde_koala_KURL_2I (JNIEnv *env, jclass, jobject, jobject, jint); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_file_1copy__Lorg_kde_koala_KURL_2Lorg_kde_koala_KURL_2 (JNIEnv *env, jclass, jobject, jobject); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_file_1move__Lorg_kde_koala_KURL_2Lorg_kde_koala_KURL_2IZZZ (JNIEnv *env, jclass, jobject, jobject, jint, jboolean, jboolean, jboolean); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_file_1move__Lorg_kde_koala_KURL_2Lorg_kde_koala_KURL_2IZZ (JNIEnv *env, jclass, jobject, jobject, jint, jboolean, jboolean); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_file_1move__Lorg_kde_koala_KURL_2Lorg_kde_koala_KURL_2IZ (JNIEnv *env, jclass, jobject, jobject, jint, jboolean); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_file_1move__Lorg_kde_koala_KURL_2Lorg_kde_koala_KURL_2I (JNIEnv *env, jclass, jobject, jobject, jint); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_file_1move__Lorg_kde_koala_KURL_2Lorg_kde_koala_KURL_2 (JNIEnv *env, jclass, jobject, jobject); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_file_1delete__Lorg_kde_koala_KURL_2Z (JNIEnv *env, jclass, jobject, jboolean); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_file_1delete__Lorg_kde_koala_KURL_2 (JNIEnv *env, jclass, jobject); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_listDir__Lorg_kde_koala_KURL_2ZZ (JNIEnv *env, jclass, jobject, jboolean, jboolean); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_listDir__Lorg_kde_koala_KURL_2Z (JNIEnv *env, jclass, jobject, jboolean); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_listDir__Lorg_kde_koala_KURL_2 (JNIEnv *env, jclass, jobject); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_listRecursive__Lorg_kde_koala_KURL_2ZZ (JNIEnv *env, jclass, jobject, jboolean, jboolean); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_listRecursive__Lorg_kde_koala_KURL_2Z (JNIEnv *env, jclass, jobject, jboolean); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_listRecursive__Lorg_kde_koala_KURL_2 (JNIEnv *env, jclass, jobject); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_copy__Lorg_kde_koala_KURL_2Lorg_kde_koala_KURL_2Z (JNIEnv *env, jclass, jobject, jobject, jboolean); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_copy__Lorg_kde_koala_KURL_2Lorg_kde_koala_KURL_2 (JNIEnv *env, jclass, jobject, jobject); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_copyAs__Lorg_kde_koala_KURL_2Lorg_kde_koala_KURL_2Z (JNIEnv *env, jclass, jobject, jobject, jboolean); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_copyAs__Lorg_kde_koala_KURL_2Lorg_kde_koala_KURL_2 (JNIEnv *env, jclass, jobject, jobject); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_copy__Ljava_util_ArrayList_2Lorg_kde_koala_KURL_2Z (JNIEnv *env, jclass, jobject, jobject, jboolean); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_copy__Ljava_util_ArrayList_2Lorg_kde_koala_KURL_2 (JNIEnv *env, jclass, jobject, jobject); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_move__Lorg_kde_koala_KURL_2Lorg_kde_koala_KURL_2Z (JNIEnv *env, jclass, jobject, jobject, jboolean); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_move__Lorg_kde_koala_KURL_2Lorg_kde_koala_KURL_2 (JNIEnv *env, jclass, jobject, jobject); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_moveAs__Lorg_kde_koala_KURL_2Lorg_kde_koala_KURL_2Z (JNIEnv *env, jclass, jobject, jobject, jboolean); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_moveAs__Lorg_kde_koala_KURL_2Lorg_kde_koala_KURL_2 (JNIEnv *env, jclass, jobject, jobject); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_move__Ljava_util_ArrayList_2Lorg_kde_koala_KURL_2Z (JNIEnv *env, jclass, jobject, jobject, jboolean); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_move__Ljava_util_ArrayList_2Lorg_kde_koala_KURL_2 (JNIEnv *env, jclass, jobject, jobject); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_link__Lorg_kde_koala_KURL_2Lorg_kde_koala_KURL_2Z (JNIEnv *env, jclass, jobject, jobject, jboolean); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_link__Lorg_kde_koala_KURL_2Lorg_kde_koala_KURL_2 (JNIEnv *env, jclass, jobject, jobject); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_link__Ljava_util_ArrayList_2Lorg_kde_koala_KURL_2Z (JNIEnv *env, jclass, jobject, jobject, jboolean); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_link__Ljava_util_ArrayList_2Lorg_kde_koala_KURL_2 (JNIEnv *env, jclass, jobject, jobject); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_linkAs__Lorg_kde_koala_KURL_2Lorg_kde_koala_KURL_2Z (JNIEnv *env, jclass, jobject, jobject, jboolean); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_linkAs__Lorg_kde_koala_KURL_2Lorg_kde_koala_KURL_2 (JNIEnv *env, jclass, jobject, jobject); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_trash__Lorg_kde_koala_KURL_2Z (JNIEnv *env, jclass, jobject, jboolean); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_trash__Lorg_kde_koala_KURL_2 (JNIEnv *env, jclass, jobject); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_trash__Ljava_util_ArrayList_2Z (JNIEnv *env, jclass, jobject, jboolean); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_trash__Ljava_util_ArrayList_2 (JNIEnv *env, jclass, jobject); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_del__Lorg_kde_koala_KURL_2ZZ (JNIEnv *env, jclass, jobject, jboolean, jboolean); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_del__Lorg_kde_koala_KURL_2Z (JNIEnv *env, jclass, jobject, jboolean); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_del__Lorg_kde_koala_KURL_2 (JNIEnv *env, jclass, jobject); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_del__Ljava_util_ArrayList_2ZZ (JNIEnv *env, jclass, jobject, jboolean, jboolean); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_del__Ljava_util_ArrayList_2Z (JNIEnv *env, jclass, jobject, jboolean); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_del__Ljava_util_ArrayList_2 (JNIEnv *env, jclass, jobject); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_pasteClipboard__Lorg_kde_koala_KURL_2Z (JNIEnv *env, jclass, jobject, jboolean); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_pasteClipboard__Lorg_kde_koala_KURL_2 (JNIEnv *env, jclass, jobject); +extern JNIEXPORT void JNICALL Java_org_kde_koala_KIO_pasteData (JNIEnv *env, jclass, jobject, jbyteArray); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_pasteDataAsync__Lorg_kde_koala_KURL_2_3B (JNIEnv *env, jclass, jobject, jbyteArray); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_pasteDataAsync__Lorg_kde_koala_KURL_2_3BLjava_lang_String_2 (JNIEnv *env, jclass, jobject, jbyteArray, jstring); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_pasteMimeSource__Lorg_kde_qt_QMimeSourceInterface_2Lorg_kde_koala_KURL_2Ljava_lang_String_2Lorg_kde_qt_QWidget_2Z (JNIEnv *env, jclass, jobject, jobject, jstring, jobject, jboolean); +extern JNIEXPORT jobject JNICALL Java_org_kde_koala_KIO_pasteMimeSource__Lorg_kde_qt_QMimeSourceInterface_2Lorg_kde_koala_KURL_2Ljava_lang_String_2Lorg_kde_qt_QWidget_2 (JNIEnv *env, jclass, jobject, jobject, jstring, jobject); +extern JNIEXPORT jboolean JNICALL Java_org_kde_koala_KIO_isClipboardEmpty (JNIEnv *env, jclass); +extern JNIEXPORT jstring JNICALL Java_org_kde_koala_KIO_pasteActionText (JNIEnv *env, jclass); + +#ifdef __cplusplus +} +#endif + +#endif /* __org_kde_koala_KIO__ */ diff --git a/kdejava/koala/org/kde/koala/KBufferedIO.java b/kdejava/koala/org/kde/koala/KBufferedIO.java index ce43f24d..0af84786 100644 --- a/kdejava/koala/org/kde/koala/KBufferedIO.java +++ b/kdejava/koala/org/kde/koala/KBufferedIO.java @@ -16,7 +16,7 @@ import org.kde.qt.QtSupport; KExtendedSocket is a subclass of this one. This is so that applications written using TQSocket's buffering characteristics will be more easily ported to the more powerful KExtendedSocket class. - KBufferedIO already provides a powerful internal buffering algorithm. However, + TDEBufferedIO already provides a powerful internal buffering algorithm. However, this does not include the I/O itself, which must be implemented in derived classes. Thus, to implement a class that does some I/O, you must override, in addition to the pure TQIODevice methods, these two: @@ -31,14 +31,14 @@ import org.kde.qt.QtSupport; If your derived class reimplements the buffering algorithm, you must then decide which buffering functions to override. For instance, you may want to change the protected functions like feedReadBuffer() and consumeReadBuffer(). - See {@link KBufferedIOSignals} for signals emitted by KBufferedIO + See {@link TDEBufferedIOSignals} for signals emitted by TDEBufferedIO @author Thiago Macieira @short Buffered I/O. */ -public class KBufferedIO extends KAsyncIO { - protected KBufferedIO(Class dummy){super((Class) null);} +public class TDEBufferedIO extends KAsyncIO { + protected TDEBufferedIO(Class dummy){super((Class) null);} /** The modes for closed() signal @short The modes for closed() signal diff --git a/kdejava/koala/org/kde/koala/KBufferedIOSignals.java b/kdejava/koala/org/kde/koala/KBufferedIOSignals.java index 229cae4e..1b81b725 100644 --- a/kdejava/koala/org/kde/koala/KBufferedIOSignals.java +++ b/kdejava/koala/org/kde/koala/KBufferedIOSignals.java @@ -4,7 +4,7 @@ package org.kde.koala; import org.kde.qt.TQMetaObject; import org.kde.qt.QtSupport; -public interface KBufferedIOSignals { +public interface TDEBufferedIOSignals { /** This signal gets sent whenever bytes are written from the buffer. @param nbytes the number of bytes sent. diff --git a/kdejava/koala/org/kde/koala/KCModule.java b/kdejava/koala/org/kde/koala/KCModule.java deleted file mode 100644 index 3f26535e..00000000 --- a/kdejava/koala/org/kde/koala/KCModule.java +++ /dev/null @@ -1,275 +0,0 @@ -//Auto-generated by kalyptus. DO NOT EDIT. -package org.kde.koala; - -import org.kde.qt.Qt; -import org.kde.qt.TQMetaObject; -import org.kde.qt.QtSupport; -import org.kde.qt.TQWidget; -import org.kde.qt.TQWidget; - -/** - - The base class for control center modules. - Starting from KDE 2.0, control center modules are realized as shared - libraries that are loaded into the control center at runtime. - The module in principle is a simple widget displaying the - item to be changed. The module has a very small interface. - All the necessary glue logic and the GUI bells and whistles - are provided by the control center and must not concern - the module author. - To write a config module, you have to create a library - that contains at one factory function like this: -
- #include 
- typedef KGenericFactory YourTDECModuleFactory;
- K_EXPORT_COMPONENT_FACTORY( yourLibName, YourTDECModuleFactory("name_of_the_po_file") );
- 
- The parameter "name_of_the_po_file" has to correspond with the messages target - that you created in your Makefile.am. - See http://developer.kde.org/documentation/other/kcm_howto.html - for more detailed documentation. - See {@link TDECModuleSignals} for signals emitted by TDECModule - @author Matthias Hoelzer-Kluepfel - - @short The base class for control center modules. - -*/ -public class TDECModule extends TQWidget { - protected TDECModule(Class dummy){super((Class) null);} - /** - An enumeration type for the buttons used by this module. - You should only use Help, Default and Apply. The rest is obsolete. - @short An enumeration type for the buttons used by this module. - @see TDECModule#buttons - @see @see - @see TDECModule#setButtons - */ - public static final int Help = 1; - public static final int Default = 2; - public static final int Apply = 16; - public static final int Reset = 4; - public static final int Cancel = 8; - public static final int Ok = 32; - public static final int SysDefault = 64; - - public native TQMetaObject metaObject(); - public native String className(); - public TDECModule(TQWidget parent, String name, String[] args) { - super((Class) null); - newTDECModule(parent,name,args); - } - private native void newTDECModule(TQWidget parent, String name, String[] args); - public TDECModule(TQWidget parent, String name) { - super((Class) null); - newTDECModule(parent,name); - } - private native void newTDECModule(TQWidget parent, String name); - public TDECModule(TQWidget parent) { - super((Class) null); - newTDECModule(parent); - } - private native void newTDECModule(TQWidget parent); - public TDECModule() { - super((Class) null); - newTDECModule(); - } - private native void newTDECModule(); - public TDECModule(TDEInstanceInterface instance, TQWidget parent, String[] args) { - super((Class) null); - newTDECModule(instance,parent,args); - } - private native void newTDECModule(TDEInstanceInterface instance, TQWidget parent, String[] args); - public TDECModule(TDEInstanceInterface instance, TQWidget parent) { - super((Class) null); - newTDECModule(instance,parent); - } - private native void newTDECModule(TDEInstanceInterface instance, TQWidget parent); - public TDECModule(TDEInstanceInterface instance) { - super((Class) null); - newTDECModule(instance); - } - private native void newTDECModule(TDEInstanceInterface instance); - /** - Load the configuration data into the module. - The load method sets the user interface elements of the - module to reflect the current settings stored in the - configuration files. - This method is invoked whenever the module should read its configuration - (most of the times from a config file) and update the user interface. - This happens when the user clicks the "Reset" button in the control - center, to undo all of his changes and restore the currently valid - settings. - If you use TDEConfigXT, loading is taken care of automatically and - you do not need to do it manually. However, if you for some reason reimplement it and - also are using TDEConfigXT, you must call this function otherwise the loading of TDEConfigXT - options will not work. - @short Load the configuration data into the module. - */ - public native void load(); - /** - Save the configuration data. - The save method stores the config information as shown - in the user interface in the config files. - If necessary, this method also updates the running system, - e.g. by restarting applications. This normally does not apply for - KSettings.Dialog modules where the updating is taken care of by - KSettings.Dispatcher. - save is called when the user clicks "Apply" or "Ok". - If you use TDEConfigXT, saving is taken care off automatically and - you do not need to load manually. However, if you for some reason reimplement it and - also are using TDEConfigXT, you must call this function, otherwise the saving of TDEConfigXT - options will not work. Call it at the very end of your reimplementation, to avoid - changed() signals getting emitted when you modify widgets. - @short Save the configuration data. - */ - public native void save(); - /** - Sets the configuration to sensible default values. - This method is called when the user clicks the "Default" - button. It should set the display to useful values. - If you use TDEConfigXT, you do not have to reimplement this function since - the fetching and settings of default values is done automatically. However, if you - reimplement and also are using TDEConfigXT, remember to call the base function at the - very end of your reimplementation. - @short Sets the configuration to sensible default values. - */ - public native void defaults(); - /** - Set the configuration to system default values. - This method is called when the user clicks the "System-Default" - button. It should set the display to the system default values. - @note The default behavior is to call defaults(). - @short Set the configuration to system default values. - */ - public native void sysdefaults(); - /** - Return a tquick-help text. - This method is called when the module is docked. - The tquick-help text should contain a short description of the module and - links to the module's help files. You can use TQML formatting tags in the text. - @note make sure the tquick help text gets translated (use i18n()). - @short Return a tquick-help text. - */ - public native String quickHelp(); - /** - This is generally only called for the KBugReport. - If you override you should have it return a pointer to a constant. - @return the TDEAboutData for this module - - @short This is generally only called for the KBugReport. - */ - public native TDEAboutData aboutData(); - /** - This sets the TDEAboutData returned by aboutData() - @short This sets the TDEAboutData returned by aboutData() - */ - public native void setAboutData(TDEAboutData about); - /** - Indicate which buttons will be used. - The return value is a value or'ed together from - the Button enumeration type. - @short Indicate which buttons will be used. - @see TDECModule#setButtons - */ - public native int buttons(); - /** - Get the RootOnly message for this module. - When the module must be run as root, or acts differently - for root and a normal user, it is sometimes useful to - customize the message that appears at the top of the module - when used as a normal user. This function returns this - customized message. If none has been set, a default message - will be used. - @short Get the RootOnly message for this module. - @see TDECModule#setRootOnlyMsg - */ - public native String rootOnlyMsg(); - /** - Tell if KControl should show a RootOnly message when run as - a normal user. - In some cases, the module don't want a RootOnly message to - appear (for example if it has already one). This function - tells KControl if a RootOnly message should be shown - @short Tell if KControl should show a RootOnly message when run as a normal user. - @see TDECModule#setUseRootOnlyMsg - */ - public native boolean useRootOnlyMsg(); - public native TDEInstanceInterface instance(); - /** - @return a list of @ref TDEConfigDialogManager's in use, if any. - - @short - */ - // const TQPtrList& configs(); >>>> NOT CONVERTED - /** - Adds a TDEConfigskeleton config to watch the widget widget - This function is useful if you need to handle multiple configuration files. - @param config the TDEConfigSkeleton to use - @param widget the widget to watch - @return a pointer to the TDEConfigDialogManager in use - - @short Adds a TDEConfigskeleton config to watch the widget widget - */ - // TDEConfigDialogManager* addConfig(TDEConfigSkeleton* arg1,TQWidget* arg2); >>>> NOT CONVERTED - /** - Sets the tquick help. - @short Sets the tquick help. - */ - protected native void setQuickHelp(String help); - /** - Sets the buttons to display. - Help: shows a "Help" button. - Default: shows a "Use Defaults" button - Apply: in kcontrol this will show an "Apply" and "Reset" button - in kcmshell this will show an "Ok", "Apply" and "Cancel" button - If Apply is not specified, kcmshell will show a "Close" button. - @short Sets the buttons to display. - @see TDECModule#buttons - */ - protected native void setButtons(int btn); - /** - Sets the RootOnly message. - This message will be shown at the top of the module of the - corresponding desktop file contains the line X-TDE-RootOnly=true. - If no message is set, a default one will be used. - @short Sets the RootOnly message. - @see TDECModule#rootOnlyMsg - */ - protected native void setRootOnlyMsg(String msg); - /** - Change whether or not the RootOnly message should be shown. - Following the value of on, the RootOnly message will be - shown or not. - @short Change whether or not the RootOnly message should be shown. - @see TDECModule#useRootOnlyMsg - */ - protected native void setUseRootOnlyMsg(boolean on); - /** - Returns the changed state of automatically managed widgets in this dialog - @short Returns the changed state of automatically managed widgets in this dialog - */ - protected native boolean managedWidgetChangeState(); - /** - Call this method when your manually managed widgets change state between - changed and not changed - @short Call this method when your manually managed widgets change state between changed and not changed - */ - protected native void unmanagedWidgetChangeState(boolean arg1); - /** - Calling this slot is equivalent to emitting changed(true). - @short Calling this slot is equivalent to emitting changed(true). - */ - protected native void changed(); - /** - A managed widget was changed, the widget settings and the current - settings are compared and a corresponding changed() signal is emitted - @short A managed widget was changed, the widget settings and the current settings are compared and a corresponding changed() signal is emitted - */ - protected native void widgetChanged(); - /** Deletes the wrapped C++ instance */ - protected native void finalize() throws InternalError; - /** Delete the wrapped C++ instance ahead of finalize() */ - public native void dispose(); - /** Has the wrapped C++ instance been deleted? */ - public native boolean isDisposed(); -} diff --git a/kdejava/koala/org/kde/koala/KCModuleInfo.java b/kdejava/koala/org/kde/koala/KCModuleInfo.java deleted file mode 100644 index c1461b1c..00000000 --- a/kdejava/koala/org/kde/koala/KCModuleInfo.java +++ /dev/null @@ -1,231 +0,0 @@ -//Auto-generated by kalyptus. DO NOT EDIT. -package org.kde.koala; - -import org.kde.qt.Qt; -import org.kde.qt.QtSupport; -import java.util.ArrayList; - -/** - - A class that provides information about a TDECModule - TDECModuleInfo provides various technical information, such as icon, library - etc. about a TDECModule.n - @note Any values set with the set functions is not - written back with TDECModuleInfo it only reads value from the desktop file. - @author Daniel Molkentin - - @short A class that provides information about a TDECModule - -*/ -public class TDECModuleInfo implements QtSupport { - private long _qt; - private boolean _allocatedInJavaWorld = true; - protected TDECModuleInfo(Class dummy){} - - /** - Constructs a TDECModuleInfo. - @note a TDECModuleInfo object will have to be manually deleted, it is not - done automatically for you. - @param desktopFile the desktop file representing the module, or - the name of the module. - @short Constructs a TDECModuleInfo. - */ - public TDECModuleInfo(String desktopFile) { - newTDECModuleInfo(desktopFile); - } - private native void newTDECModuleInfo(String desktopFile); - /** - Same as above but takes a KService.Ptr as argument. - @note moduleInfo must be a valid pointer. - @param moduleInfo specifies the module - @short Same as above but takes a KService.Ptr as argument. - */ - // TDECModuleInfo* TDECModuleInfo(KService::Ptr arg1); >>>> NOT CONVERTED - /** - Same as above but takes a TDECModuleInfo as argument. - @param rhs specifies the module - @short Same as above but takes a TDECModuleInfo as argument. - */ - public TDECModuleInfo(TDECModuleInfo rhs) { - newTDECModuleInfo(rhs); - } - private native void newTDECModuleInfo(TDECModuleInfo rhs); - /** - Same as above but creates an empty TDECModuleInfo. - You should not normally call this. - @short Same as above but creates an empty TDECModuleInfo. - */ - public TDECModuleInfo() { - newTDECModuleInfo(); - } - private native void newTDECModuleInfo(); - /** - Equal operator - @return true if rhs equals itself - - @short Equal operator - */ - public native boolean op_equals(TDECModuleInfo rhs); - /** - @return true if rhs is not equal itself - - @short - */ - public native boolean op_not_equals(TDECModuleInfo rhs); - /** - @return the filename of the .desktop file that describes the KCM - - @short - */ - public native String fileName(); - /** - @return the keywords associated with this KCM. - - @short - */ - public native ArrayList keywords(); - /** - Returns the module's factory name, if it's set. If not, the library - name is returned. - @return the module's factory name - - @short Returns the module's factory name, if it's set. - */ - public native String factoryName(); - /** - @return the module\'s (translated) name - - @short - */ - public native String moduleName(); - /** - @return a KSharedPtr to KService created from the modules .desktop file - - @short - */ - // KService::Ptr service(); >>>> NOT CONVERTED - /** - @return the module's (translated) comment field - - @short - */ - public native String comment(); - /** - @return the module's icon name - - @short - */ - public native String icon(); - /** - @return the path of the module's documentation - - @short - */ - public native String docPath(); - /** - @return the library name - - @short - */ - public native String library(); - /** - @return a handle (usually the contents of the FactoryName field) - - @short - */ - public native String handle(); - /** - @return the weight of the module which determines the order of the pages in - the KCMultiDialog. It's set by the X-TDE-Weight field. - - @short - */ - public native int weight(); - /** - @return whether the module might require root permissions - - @short - */ - public native boolean needsRootPrivileges(); - /** - @return true if the module should be conditionally - loaded. - - @short - */ - public native boolean needsTest(); - /** - Sets the object's keywords. - @param keyword the new keywords - @short Sets the object's keywords. - */ - protected native void setKeywords(String[] keyword); - /** - Sets the object's name. - @param name the new name - @short Sets the object's name. - */ - protected native void setName(String name); - /** - Sets the object's name. - @param comment the new comment - @short Sets the object's name. - */ - protected native void setComment(String comment); - /** - Sets the object's icon. - @param icon the name of the new icon - @short Sets the object's icon. - */ - protected native void setIcon(String icon); - /** - Set the object's library - @param lib the name of the new library without any extensions or prefixs. - @short Set the object's library - */ - protected native void setLibrary(String lib); - /** - Sets the factory name - @param handle The new factory name - @short Sets the factory name - */ - protected native void setHandle(String handle); - /** - Sets the object's weight property which determines in what - order modules will be displayed. Default is 100. - @param weight the new weight - @short Sets the object's weight property which determines in what order modules will be displayed. - */ - protected native void setWeight(int weight); - /** - Sets if the module should be tested for loading. - @param val the value to set - @short Sets if the module should be tested for loading. - */ - protected native void setNeedsTest(boolean val); - /** - Toggles whether the represented module needs root privileges. - Use with caution. - @param needsRootPrivileges if module needs root privilges - @short Toggles whether the represented module needs root privileges. - */ - protected native void setNeedsRootPrivileges(boolean needsRootPrivileges); - /** - Sets the object's documentation path - @param p the new documentation path - @short Sets the object's documentation path - */ - protected native void setDocPath(String p); - /** - Reads the service entries specific for TDECModule from the desktop file. - The usual desktop entries are read in init. - @short Reads the service entries specific for TDECModule from the desktop file. - */ - protected native void loadAll(); - /** Deletes the wrapped C++ instance */ - protected native void finalize() throws InternalError; - /** Delete the wrapped C++ instance ahead of finalize() */ - public native void dispose(); - /** Has the wrapped C++ instance been deleted? */ - public native boolean isDisposed(); -} diff --git a/kdejava/koala/org/kde/koala/KCModuleLoader.java b/kdejava/koala/org/kde/koala/KCModuleLoader.java deleted file mode 100644 index 926a5088..00000000 --- a/kdejava/koala/org/kde/koala/KCModuleLoader.java +++ /dev/null @@ -1,120 +0,0 @@ -//Auto-generated by kalyptus. DO NOT EDIT. -package org.kde.koala; - -import org.kde.qt.Qt; -import org.kde.qt.QtSupport; -import org.kde.qt.TQWidget; - -/** - - @class Loads a KControl Module. - TDECModuleLoader tries in several ways - to locate and load a TDECModule. If loading fails a - zero pointer is returned. \n - It is very unlikely TDECModuleLoader is what you want - and {@link TDECModuleProxy} suits your needs. - @author Frans Englich - - @short @class Loads a KControl Module. - -*/ -public class TDECModuleLoader implements QtSupport { - private long _qt; - private boolean _allocatedInJavaWorld = true; - protected TDECModuleLoader(Class dummy){} - - /** - Determines the way errors are reported - @short Determines the way errors are reported - */ - public static final int None = 0; - public static final int Inline = 1; - public static final int Dialog = 2; - public static final int Both = 3; - - public TDECModuleLoader() { - newTDECModuleLoader(); - } - private native void newTDECModuleLoader(); - /** - Loads a {@link TDECModule}. If loading fails a zero pointer is returned. - @param module what module to load - @param report see ErrorReporting - @param withFallback if true and loading failed a separate window - with the module may appear and a zero pointer is a returned - @return a pointer to the loaded @ref TDECModule - - @short Loads a @ref TDECModule. - */ - public static native TDECModule loadModule(TDECModuleInfo module, int report, boolean withFallback, TQWidget parent, String name, String[] args); - public static native TDECModule loadModule(TDECModuleInfo module, int report, boolean withFallback, TQWidget parent, String name); - public static native TDECModule loadModule(TDECModuleInfo module, int report, boolean withFallback, TQWidget parent); - public static native TDECModule loadModule(TDECModuleInfo module, int report, boolean withFallback); - public static native TDECModule loadModule(TDECModuleInfo module, int report); - /** - Loads a {@link TDECModule}. If loading fails a zero pointer is returned. - @param module what module to load - @param report see ErrorReporting - with the module may appear and a zero pointer is a returned - @return a pointer to the loaded @ref TDECModule - - @short Loads a @ref TDECModule. - */ - public static native TDECModule loadModule(String module, int report, TQWidget parent, String name, String[] args); - public static native TDECModule loadModule(String module, int report, TQWidget parent, String name); - public static native TDECModule loadModule(String module, int report, TQWidget parent); - public static native TDECModule loadModule(String module, int report); - /** - Unloads the module's library - @param mod What module to unload for - @short Unloads the module's library - */ - public static native void unloadModule(TDECModuleInfo mod); - /** - Checks whether an TDECModule should be shown by running its - test function. If it is unsure whether a module should be shown, it should - be made available, leaving the decision to the user. - If false is returned, the module should not be loaded in any interface. - A module declares it needs to be tested by having "X-TDE-Test-Module=true" in - its desktop file. When that line exists, the following code must be available - in the module's library: -
-		 extern "C"
-		 {
-		    boolean test_moduleName()
-		    {
-		      // Code testing for hardware/software presence.
-		      return true; // and the modue will be loaded.
-		    }
-			 }
-		 
- where moduleName is the library name for the module. - @param module the module to check - @return true if the module should be loaded - - @short Checks whether an TDECModule should be shown by running its test function. - */ - public static native boolean testModule(String module); - /** - Convenience function, essentially the same as above. - @param module the module to check - @return true if the module should be loaded - - @short Convenience function, essentially the same as above. - */ - public static native boolean testModule(TDECModuleInfo module); - /** - Returns a TDECModule containing the messages report and text. - @param report the type of error reporting, see ErrorReporting - @param text the main message - @param details any additional details - @short Returns a TDECModule containing the messages report and text. - */ - public static native TDECModule reportError(int report, String text, String details, TQWidget parent); - /** Deletes the wrapped C++ instance */ - protected native void finalize() throws InternalError; - /** Delete the wrapped C++ instance ahead of finalize() */ - public native void dispose(); - /** Has the wrapped C++ instance been deleted? */ - public native boolean isDisposed(); -} diff --git a/kdejava/koala/org/kde/koala/KCModuleSignals.java b/kdejava/koala/org/kde/koala/KCModuleSignals.java deleted file mode 100644 index fe4bfa22..00000000 --- a/kdejava/koala/org/kde/koala/KCModuleSignals.java +++ /dev/null @@ -1,25 +0,0 @@ -//Auto-generated by kalyptus. DO NOT EDIT. -package org.kde.koala; - -import org.kde.qt.TQMetaObject; -import org.kde.qt.QtSupport; -import org.kde.qt.TQWidget; - -public interface TDECModuleSignals { - /** - Indicate that the state of the modules contents has changed. - This signal is emitted whenever the state of the configuration - shown in the module changes. It allows the control center to - keep track of unsaved changes. - @short Indicate that the state of the modules contents has changed. - */ - void changed(boolean state); - /** - Indicate that the module's tquickhelp has changed. - Emit this signal whenever the module's tquickhelp changes. - Modules implemented as tabbed dialogs might want to implement - per-tab tquickhelp for example. - @short Indicate that the module's tquickhelp has changed. - */ - void quickHelpChanged(); -} diff --git a/kdejava/koala/org/kde/koala/KConfig.java b/kdejava/koala/org/kde/koala/KConfig.java deleted file mode 100644 index 9eedc94d..00000000 --- a/kdejava/koala/org/kde/koala/KConfig.java +++ /dev/null @@ -1,232 +0,0 @@ -//Auto-generated by kalyptus. DO NOT EDIT. -package org.kde.koala; - -import org.kde.qt.Qt; -import org.kde.qt.TQMetaObject; -import org.kde.qt.QtSupport; -import java.util.ArrayList; - -/** - - Access KDE Configuration entries. - This class implements KDE's default configuration system. - @author Kalle Dalheimer , Preston Brown - - @short KDE Configuration Management class. - @see TDEGlobal#config - @see TDEConfigBase - @see KSimpleConfig - -*/ -public class TDEConfig extends TDEConfigBase { - protected TDEConfig(Class dummy){super((Class) null);} - public native TQMetaObject metaObject(); - public native String className(); - /** - Constructs a TDEConfig object. - @param fileName A file to parse in addition to the - system-wide file(s). If it is not provided, only global - KDE configuration data will be read (depending on the value of - bUseKDEGlobals). - @param bReadOnly Set the config object's read-only status. Note that the - object will automatically become read-only if either the user does not have - write permission to fileName or if no file was specified. - @param bUseKDEGlobals Toggle reading the global KDE configuration file. - @param resType the place to look in (config, data, etc) See KStandardDirs. - @short Constructs a TDEConfig object. - */ - public TDEConfig(String fileName, boolean bReadOnly, boolean bUseKDEGlobals, String resType) { - super((Class) null); - newTDEConfig(fileName,bReadOnly,bUseKDEGlobals,resType); - } - private native void newTDEConfig(String fileName, boolean bReadOnly, boolean bUseKDEGlobals, String resType); - public TDEConfig(String fileName, boolean bReadOnly, boolean bUseKDEGlobals) { - super((Class) null); - newTDEConfig(fileName,bReadOnly,bUseKDEGlobals); - } - private native void newTDEConfig(String fileName, boolean bReadOnly, boolean bUseKDEGlobals); - public TDEConfig(String fileName, boolean bReadOnly) { - super((Class) null); - newTDEConfig(fileName,bReadOnly); - } - private native void newTDEConfig(String fileName, boolean bReadOnly); - public TDEConfig(String fileName) { - super((Class) null); - newTDEConfig(fileName); - } - private native void newTDEConfig(String fileName); - public TDEConfig() { - super((Class) null); - newTDEConfig(); - } - private native void newTDEConfig(); - public TDEConfig(TDEConfigBackEnd backEnd, boolean bReadOnly) { - super((Class) null); - newTDEConfig(backEnd,bReadOnly); - } - private native void newTDEConfig(TDEConfigBackEnd backEnd, boolean bReadOnly); - public TDEConfig(TDEConfigBackEnd backEnd) { - super((Class) null); - newTDEConfig(backEnd); - } - private native void newTDEConfig(TDEConfigBackEnd backEnd); - /** - Clears all entries out of the dirtyEntryMap, so the - values will not be written to disk on a later call to - sync(). - @param bDeep If true, the dirty map is actually emptied. - otherwise, the config object's global dirty flag is set to - false, but the dirty entries remain in the dirty entry - map. - @short Clears all entries out of the dirtyEntryMap, so the values will not be written to disk on a later call to sync(). - @see TDEConfigBase#rollback - */ - public native void rollback(boolean bDeep); - public native void rollback(); - /** - Returns a list of groups that are known. - @return a list of of groups - - @short Returns a list of groups that are known. - */ - public native ArrayList groupList(); - /** - Returns a map (tree) of entries for all entries in a particular - group. - Only the actual entry string is returned, none of the - other internal data should be included. - @param pGroup A group to get keys from. - @return A map of entries in the group specified, indexed by key. - The returned map may be empty if the group is not found. - - @short Returns a map (tree) of entries for all entries in a particular group. - */ - // TQMap entryMap(const TQString& arg1); >>>> NOT CONVERTED - /** - Clears all internal data structures and then reread - configuration information from disk. - @short Clears all internal data structures and then reread configuration information from disk. - */ - public native void reparseConfiguration(); - /** - Set the file mode for newly created files. - @param mode the mode for new files as described in chmod(2) - @short Set the file mode for newly created files. - @see #man:chmod(2) - @see #for - @see #a - @see #description - @see #of - @see @see #mode - */ - public native void setFileWriteMode(int mode); - /** - Forces all following write-operations being performed on kdeglobals, - independent of the bGlobal flag in writeEntry(). - @param force true to force writing in kdeglobals - @short Forces all following write-operations being performed on kdeglobals, independent of the bGlobal flag in writeEntry(). - @see #forceGlobal - */ - public native void setForceGlobal(boolean force); - /** - Returns true if all entries are being written into kdeglobals. - @return true if all entries are being written into kdeglobals - - @short Returns true if all entries are being written into kdeglobals. - @see #setForceGlobal - */ - public native boolean forceGlobal(); - /** - Checks whether the config file contains the update id - as contained in updateFile. If not, it runs kconf_update - to update the config file. - If you install config update files with critical fixes - you may wish to use this method to verify that a critical - update has indeed been performed to catch the case where - a user restores an old config file from backup that has - not been updated yet. - @param id the update to check - @param updateFile the file containing the update - @short Checks whether the config file contains the update id as contained in updateFile. - */ - public native void checkUpdate(String id, String updateFile); - /** - Copies all entries from this config object to a new config - object that will save itself to file. - Actual saving to file happens when the returned object is - destructed or when sync() is called upon it. - @param file the new config object will save itself to. - @param config optional config object to reuse - @short Copies all entries from this config object to a new config object that will save itself to file. - */ - public native TDEConfig copyTo(String file, TDEConfig config); - public native TDEConfig copyTo(String file); - /** - Returns a lock file object for the configuration file or 0 if - the backend does not support locking. - @param bGlobal if true, return the lock file for the global config file - NOTE: TDEConfig.sync() requires a lock on both the normal and global - config file. When calling TDEConfig.sync() while having a lock on the - global config file, the normal config file MUST be locked AS WELL and the - normal config file MUST be locked BEFORE the global config file! - Otherwise there is a risk of deadlock. - @short Returns a lock file object for the configuration file or 0 if the backend does not support locking. - */ - // KLockFile::Ptr lockFile(bool arg1); >>>> NOT CONVERTED - // KLockFile::Ptr lockFile(); >>>> NOT CONVERTED - /** - Returns true if the specified group is known. - @param group The group to search for. - @return true if the group exists. - - @short Returns true if the specified group is known. - */ - protected native boolean internalHasGroup(String group); - /** - Returns a map (tree) of the entries in the specified group. - Do not use this function, the implementation / return type are - subject to change. - @param pGroup the group to provide a KEntryMap for. - @return The map of the entries in the group. - - @short - */ - // KEntryMap internalEntryMap(const TQString& arg1); >>>> NOT CONVERTED - /** - Returns a copy of the internal map used to hold all entries. - Do not use this function, the implementation / return type are - subject to change. - @return The map of the entries in the group. - - @short - */ - // KEntryMap internalEntryMap(); >>>> NOT CONVERTED - /** - Inserts a (key, value) pair into the internal storage mechanism of - the configuration object. - @param _key The key to insert. It contains information both on - the group of the key and the key itself. If the key already - exists, the old value will be replaced. - @param _data the KEntry that is to be stored. - @param _checkGroup When false, assume that the group already exists. - @short Inserts a (key, value) pair into the internal storage mechanism of the configuration object. - */ - protected native void putData(KEntryKey _key, KEntry _data, boolean _checkGroup); - protected native void putData(KEntryKey _key, KEntry _data); - /** - Looks up an entry in the config object's internal structure. - @param _key The key to look up It contains information both on - the group of the key and the entry's key itself. - @return the KEntry value (data) found for the key. KEntry.aValue - will be the null string if nothing was located. - - @short Looks up an entry in the config object's internal structure. - */ - protected native KEntry lookupData(KEntryKey _key); - /** Deletes the wrapped C++ instance */ - protected native void finalize() throws InternalError; - /** Delete the wrapped C++ instance ahead of finalize() */ - public native void dispose(); - /** Has the wrapped C++ instance been deleted? */ - public native boolean isDisposed(); -} diff --git a/kdejava/koala/org/kde/koala/KConfigBackEnd.java b/kdejava/koala/org/kde/koala/KConfigBackEnd.java deleted file mode 100644 index b708f574..00000000 --- a/kdejava/koala/org/kde/koala/KConfigBackEnd.java +++ /dev/null @@ -1,120 +0,0 @@ -//Auto-generated by kalyptus. DO NOT EDIT. -package org.kde.koala; - -import org.kde.qt.Qt; -import org.kde.qt.QtSupport; - -/** - - Abstract base class for KDE configuration file loading/saving. - This class forms the base for all classes that implement some - manner of loading/saving to configuration files. It is an - abstract base class, meaning that you cannot directly instantiate - objects of this class. As of right now, the only back end available - is one to read/write to INI-style files, but in the future, other - formats may be available, such as XML or a database. - @author Preston Brown , - Matthias Kalle Dalheimer - - @short KDE Configuration file loading/saving abstract base class. - -*/ -public class TDEConfigBackEnd implements QtSupport { - private long _qt; - private boolean _allocatedInJavaWorld = true; - protected TDEConfigBackEnd(Class dummy){} - - /** - Constructs a configuration back end. - @param _config Specifies the configuration object which values - will be passed to as they are read, or from where values - to be written to will be obtained from. - @param _fileName The name of the file in which config - data is stored. All registered configuration directories - will be looked in in order of decreasing relevance. - @param _resType the resource type of the fileName specified, _if_ - it is not an absolute path (otherwise this parameter is ignored). - @param _useKDEGlobals If true, the user's system-wide kdeglobals file - will be imported into the config object. If false, only - the filename specified will be dealt with. - @short Constructs a configuration back end. - */ - /** - Parses all configuration files for a configuration object. This - method must be reimplemented by the derived classes. - @return Whether or not parsing was successful. - - @short Parses all configuration files for a configuration object. - */ - public native boolean parseConfigFiles(); - /** - Writes configuration data to file(s). This method must be - reimplemented by the derived classes. - @param bMerge Specifies whether the old config file already - on disk should be merged in with the data in memory. If true, - data is read off the disk and merged. If false, the on-disk - file is removed and only in-memory data is written out. - @short Writes configuration data to file(s). - */ - public native void sync(boolean bMerge); - public native void sync(); - /** - Changes the filenames associated with this back end. You should - probably reparse your config info after doing this. - @param _fileName the new filename to use - @param _resType the resource type of the fileName specified, _if_ - it is not an absolute path (otherwise this parameter is ignored). - @param _useKDEGlobals specifies whether or not to also parse the - global KDE configuration files. - @short Changes the filenames associated with this back end. - */ - public native void changeFileName(String _fileName, String _resType, boolean _useKDEGlobals); - /** - Returns the state of the app-config object. - @short Returns the state of the app-config object. - @see TDEConfig#getConfigState - */ - public native int getConfigState(); - /** - Returns the filename as passed to the constructor. - @return the filename as passed to the constructor. - - @short Returns the filename as passed to the constructor. - */ - public native String fileName(); - /** - Returns the resource type as passed to the constructor. - @return the resource type as passed to the constructor. - - @short Returns the resource type as passed to the constructor. - */ - public native String resource(); - /** - Set the locale string that defines the current language. - @param _localeString the identifier of the language - @short Set the locale string that defines the current language. - @see KLocale - */ - public native void setLocaleString(String _localeString); - /** - Set the file mode for newly created files. - @param mode the filemode (as in chmod) - @short Set the file mode for newly created files. - */ - public native void setFileWriteMode(int mode); - /** - Check whether the config files are writable. - @param warnUser Warn the user if the configuration files are not writable. - @return Indicates that all of the configuration files used are writable. - - @short Check whether the config files are writable. - */ - public native boolean checkConfigFilesWritable(boolean warnUser); - /** - Returns a lock file object for the configuration file - @param bGlobal If true, returns a lock file object for kdeglobals - @short Returns a lock file object for the configuration file - */ - // KLockFile::Ptr lockFile(bool arg1); >>>> NOT CONVERTED - // KLockFile::Ptr lockFile(); >>>> NOT CONVERTED -} diff --git a/kdejava/koala/org/kde/koala/KConfigBase.java b/kdejava/koala/org/kde/koala/KConfigBase.java deleted file mode 100644 index 5baa01ff..00000000 --- a/kdejava/koala/org/kde/koala/KConfigBase.java +++ /dev/null @@ -1,936 +0,0 @@ -//Auto-generated by kalyptus. DO NOT EDIT. -package org.kde.koala; - -import org.kde.qt.Qt; -import org.kde.qt.TQColor; -import org.kde.qt.TQRect; -import org.kde.qt.TQFont; -import org.kde.qt.TQMetaObject; -import org.kde.qt.QtSupport; -import org.kde.qt.TQPoint; -import java.util.Calendar; -import org.kde.qt.TQSize; -import java.util.ArrayList; -import org.kde.qt.TQVariant; -import org.kde.qt.TQObject; - -/** - - This class forms the base for all %KDE configuration. It is an - abstract base class, meaning that you cannot directly instantiate - objects of this class. Either use TDEConfig (for usual %KDE - configuration) or KSimpleConfig (for special needs as in ksamba), or - even KSharedConfig (stores values in shared memory). - All configuration entries are key, value pairs. Each entry also - belongs to a specific group of related entries. All configuration - entries that do not explicitly specify which group they are in are - in a special group called the default group. - If there is a $ character in an entry, TDEConfigBase tries to expand - environment variable and uses its value instead of its name. You - can avoid this feature by having two consecutive $ characters in - your config file which get expanded to one. - Note:<> the '=' char is not allowed in keys and the ']' char is not allowed in - a group name. - @author Kalle Dalheimer , Preston Brown - - @short KDE Configuration Management abstract base class. - @see TDEGlobal#config - @see TDEConfig - @see KSimpleConfig - @see KSharedConfig - -*/ -public class TDEConfigBase extends TQObject { - protected TDEConfigBase(Class dummy){super((Class) null);} - /** - Possible return values for getConfigState(). - @short Possible return values for getConfigState(). - @see #getConfigState - */ - public static final int NoAccess = 0; - public static final int ReadOnly = 1; - public static final int ReadWrite = 2; - - public native TQMetaObject metaObject(); - public native String className(); - /** - Construct a TDEConfigBase object. - @short Construct a TDEConfigBase object. - */ - /** - Specifies the group in which keys will be read and written. - Subsequent - calls to readEntry() and writeEntry() will be applied only in the - activated group. - Switch back to the default group by passing a null string. - @param group The name of the new group. - @short Specifies the group in which keys will be read and written. - */ - public native void setGroup(String group); - /** - Sets the group to the "Desktop Entry" group used for - desktop configuration files for applications, mime types, etc. - @short Sets the group to the "Desktop Entry" group used for desktop configuration files for applications, mime types, etc. - */ - public native void setDesktopGroup(); - /** - Returns the name of the group in which we are - searching for keys and from which we are retrieving entries. - @return The current group. - - @short Returns the name of the group in which we are searching for keys and from which we are retrieving entries. - */ - public native String group(); - /** - Returns true if the specified group is known about. - @param group The group to search for. - @return true if the group exists. - - @short Returns true if the specified group is known about. - */ - public native boolean hasGroup(String group); - /** - Returns a list of groups that are known about. - @return The list of groups. - - @short Returns a list of groups that are known about. - */ - public native ArrayList groupList(); - /** - Returns a the current locale. - @return A string representing the current locale. - - @short Returns a the current locale. - */ - public native String locale(); - /** - Reads the value of an entry specified by pKey in the current group. - If you want to read a path, please use readPathEntry(). - @param pKey The key to search for. - @param aDefault A default value returned if the key was not found. - @return The value for this key. Can be null if aDefault is null. - - @short Reads the value of an entry specified by pKey in the current group. - */ - public native String readEntry(String pKey, String aDefault); - public native String readEntry(String pKey); - /** - Reads the value of an entry specified by pKey in the current group. - The value is treated as if it is of the type of the given default value. - Note that only the following TQVariant types are allowed : String, - StringList, List, Font, Point, Rect, Size, Color, Int, UInt, Bool, - Double, DateTime and Date. - @param pKey The key to search for. - @param aDefault A default value returned if the key was not found or - if the read value cannot be converted to the TQVariant.Type. - @return The value for the key or the default value if the key was not - found. - - @short Reads the value of an entry specified by pKey in the current group. - */ - public native TQVariant readPropertyEntry(String pKey, TQVariant aDefault); - /** - Reads a list of strings. - @param pKey The key to search for. - @param sep The list separator (default is ","). - @return The list. Empty if the entry does not exist. - - @short Reads a list of strings. - */ - public native ArrayList readListEntry(String pKey, char sep); - public native ArrayList readListEntry(String pKey); - /** - Reads a list of strings, but returns a default if the key - did not exist. - @param pKey The key to search for. - @param aDefault The default value to use if the key does not exist. - @param sep The list separator (default is ","). - @return The list. Contains aDefault if the Key does not exist. - - @short Reads a list of strings, but returns a default if the key did not exist. - */ - public native ArrayList readListEntry(String pKey, String[] aDefault, char sep); - public native ArrayList readListEntry(String pKey, String[] aDefault); - /** - Reads a list of Integers. - @param pKey The key to search for. - @return The list. Empty if the entry does not exist. - - @short Reads a list of Integers. - */ - public native int[] readIntListEntry(String pKey); - /** - Reads a path. - Read the value of an entry specified by pKey in the current group - and interpret it as a path. This means, dollar expansion is activated - for this value, so that e.g. $HOME gets expanded. - @param pKey The key to search for. - @param aDefault A default value returned if the key was not found. - @return The value for this key. Can be null if aDefault is null. - - @short Reads a path. - */ - public native String readPathEntry(String pKey, String aDefault); - public native String readPathEntry(String pKey); - /** - Reads a list of string paths. - Read the value of an entry specified by pKey in the current group - and interpret it as a list of paths. This means, dollar expansion is activated - for this value, so that e.g. $HOME gets expanded. - @param pKey The key to search for. - @param sep The list separator (default is ","). - @return The list. Empty if the entry does not exist. - - @short Reads a list of string paths. - */ - public native ArrayList readPathListEntry(String pKey, char sep); - public native ArrayList readPathListEntry(String pKey); - /** - Reads a numerical value. - Read the value of an entry specified by pKey in the current group - and interpret it numerically. - @param pKey The key to search for. - @param nDefault A default value returned if the key was not found or if - the read value cannot be interpreted. - @return The value for this key. - - @short Reads a numerical value. - */ - public native int readNumEntry(String pKey, int nDefault); - public native int readNumEntry(String pKey); - /** - Reads an unsigned numerical value. - Read the value of an entry specified by pKey in the current group - and interpret it numerically. - @param pKey The key to search for. - @param nDefault A default value returned if the key was not found or if - the read value cannot be interpreted. - @return The value for this key. - - @short Reads an unsigned numerical value. - */ - public native int readUnsignedNumEntry(String pKey, int nDefault); - public native int readUnsignedNumEntry(String pKey); - /** - Reads a numerical value. - Read the value of an entry specified by pKey in the current group - and interpret it numerically. - @param pKey The key to search for. - @param nDefault A default value returned if the key was not found or if - the read value cannot be interpreted. - @return The value for this key. - - @short Reads a numerical value. - */ - public native long readLongNumEntry(String pKey, long nDefault); - public native long readLongNumEntry(String pKey); - /** - Read an unsigned numerical value. - Read the value of an entry specified by pKey in the current group - and interpret it numerically. - @param pKey The key to search for. - @param nDefault A default value returned if the key was not found or if - the read value cannot be interpreted. - @return The value for this key. - - @short Read an unsigned numerical value. - */ - public native long readUnsignedLongNumEntry(String pKey, long nDefault); - public native long readUnsignedLongNumEntry(String pKey); - /** - Reads a 64-bit numerical value. - Read the value of an entry specified by pKey in the current group - and interpret it numerically. - @param pKey The key to search for. - @param nDefault A default value returned if the key was not found or if - the read value cannot be interpreted. - @return The value for this key. - - @short Reads a 64-bit numerical value. - */ - public native long readNum64Entry(String pKey, long nDefault); - public native long readNum64Entry(String pKey); - /** - Read an 64-bit unsigned numerical value. - Read the value of an entry specified by pKey in the current group - and interpret it numerically. - @param pKey The key to search for. - @param nDefault A default value returned if the key was not found or if - the read value cannot be interpreted. - @return The value for this key. - - @short Read an 64-bit unsigned numerical value. - */ - public native long readUnsignedNum64Entry(String pKey, long nDefault); - public native long readUnsignedNum64Entry(String pKey); - /** - Reads a floating point value. - Read the value of an entry specified by pKey in the current group - and interpret it numerically. - @param pKey The key to search for. - @param nDefault A default value returned if the key was not found or if - the read value cannot be interpreted. - @return The value for this key. - - @short Reads a floating point value. - */ - public native double readDoubleNumEntry(String pKey, double nDefault); - public native double readDoubleNumEntry(String pKey); - /** - Reads a TQFont value. - Read the value of an entry specified by pKey in the current group - and interpret it as a font object. - @param pKey The key to search for. - @param pDefault A default value (null TQFont by default) returned if the - key was not found or if the read value cannot be interpreted. - @return The value for this key. - - @short Reads a TQFont value. - */ - public native TQFont readFontEntry(String pKey, TQFont pDefault); - public native TQFont readFontEntry(String pKey); - /** - Reads a booleanean entry. - Read the value of an entry specified by pKey in the current group - and interpret it as a booleanean value. Currently "on" and "true" are - accepted as true, everything else if false. - @param pKey The key to search for - @param bDefault A default value returned if the key was not found. - @return The value for this key. - - @short Reads a boolean entry. - */ - public native boolean readBoolEntry(String pKey, boolean bDefault); - public native boolean readBoolEntry(String pKey); - /** - Reads a TQRect entry. - Read the value of an entry specified by pKey in the current group - and interpret it as a TQRect object. - @param pKey The key to search for - @param pDefault A default value (null TQRect by default) returned if the - key was not found or if the read value cannot be interpreted. - @return The value for this key. - - @short Reads a TQRect entry. - */ - public native TQRect readRectEntry(String pKey, TQRect pDefault); - public native TQRect readRectEntry(String pKey); - /** - Reads a TQPoint entry. - Read the value of an entry specified by pKey in the current group - and interpret it as a TQPoint object. - @param pKey The key to search for - @param pDefault A default value (null TQPoint by default) returned if the - key was not found or if the read value cannot be interpreted. - @return The value for this key. - - @short Reads a TQPoint entry. - */ - public native TQPoint readPointEntry(String pKey, TQPoint pDefault); - public native TQPoint readPointEntry(String pKey); - /** - Reads a TQSize entry. - Read the value of an entry specified by pKey in the current group - and interpret it as a TQSize object. - @param pKey The key to search for - @param pDefault A default value (null TQSize by default) returned if the - key was not found or if the read value cannot be interpreted. - @return The value for this key. - - @short Reads a TQSize entry. - */ - public native TQSize readSizeEntry(String pKey, TQSize pDefault); - public native TQSize readSizeEntry(String pKey); - /** - Reads a TQColor entry. - Read the value of an entry specified by pKey in the current group - and interpret it as a color. - @param pKey The key to search for. - @param pDefault A default value (null TQColor by default) returned if the - key was not found or if the value cannot be interpreted. - @return The value for this key. - - @short Reads a TQColor entry. - */ - public native TQColor readColorEntry(String pKey, TQColor pDefault); - public native TQColor readColorEntry(String pKey); - /** - Reads a Calendar entry. - Read the value of an entry specified by pKey in the current group - and interpret it as a date and time. - @param pKey The key to search for. - @param pDefault A default value ( currentDateTime() by default) - returned if the key was not found or if the read value cannot be - interpreted. - @return The value for this key. - - @short Reads a TQDateTime entry. - */ - public native Calendar readDateTimeEntry(String pKey, Calendar pDefault); - public native Calendar readDateTimeEntry(String pKey); - /** - Reads the value of an entry specified by pKey in the current group. - The untranslated entry is returned, you normally do not need this. - @param pKey The key to search for. - @param aDefault A default value returned if the key was not found. - @return The value for this key. - - @short Reads the value of an entry specified by pKey in the current group. - */ - public native String readEntryUntranslated(String pKey, String aDefault); - public native String readEntryUntranslated(String pKey); - /** - Writes a key/value pair. - This is stored in the most specific config file when destroying the - config object or when calling sync(). - If you want to write a path, please use writePathEntry(). - @param pKey The key to write. - @param pValue The value to write. - @param bPersistent If bPersistent is false, the entry's dirty - flag will not be set and thus the entry will - not be written to disk at deletion time. - @param bGlobal If bGlobal is true, the pair is not saved to the - application specific config file, but to the - global KDE config file. - @param bNLS If bNLS is true, the locale tag is added to the key - when writing it back. - @short Writes a key/value pair. - */ - public native void writeEntry(String pKey, String pValue, boolean bPersistent, boolean bGlobal, boolean bNLS); - public native void writeEntry(String pKey, String pValue, boolean bPersistent, boolean bGlobal); - public native void writeEntry(String pKey, String pValue, boolean bPersistent); - public native void writeEntry(String pKey, String pValue); - /** - writeEntry() Overridden to accept a property. - Note: Unlike the other writeEntry() functions, the old value is - _not_ returned here! - @param pKey The key to write - @param rValue The property to write - @param bPersistent If bPersistent is false, the entry's dirty flag - will not be set and thus the entry will not be - written to disk at deletion time. - @param bGlobal If bGlobal is true, the pair is not saved to the - application specific config file, but to the - global KDE config file. - @param bNLS If bNLS is true, the locale tag is added to the key - when writing it back. - @short writeEntry() Overridden to accept a property. - @see #writeEntry - */ - public native void writeEntry(String pKey, TQVariant rValue, boolean bPersistent, boolean bGlobal, boolean bNLS); - public native void writeEntry(String pKey, TQVariant rValue, boolean bPersistent, boolean bGlobal); - public native void writeEntry(String pKey, TQVariant rValue, boolean bPersistent); - public native void writeEntry(String pKey, TQVariant rValue); - /** - writeEntry() overridden to accept a list of strings. - Note: Unlike the other writeEntry() functions, the old value is - _not_ returned here! - @param pKey The key to write - @param rValue The list to write - @param sep The list separator (default is ","). - @param bPersistent If bPersistent is false, the entry's dirty flag - will not be set and thus the entry will not be - written to disk at deletion time. - @param bGlobal If bGlobal is true, the pair is not saved to the - application specific config file, but to the - global KDE config file. - @param bNLS If bNLS is true, the locale tag is added to the key - when writing it back. - @short writeEntry() overridden to accept a list of strings. - @see #writeEntry - */ - public native void writeEntry(String pKey, String[] rValue, char sep, boolean bPersistent, boolean bGlobal, boolean bNLS); - public native void writeEntry(String pKey, String[] rValue, char sep, boolean bPersistent, boolean bGlobal); - public native void writeEntry(String pKey, String[] rValue, char sep, boolean bPersistent); - public native void writeEntry(String pKey, String[] rValue, char sep); - public native void writeEntry(String pKey, String[] rValue); - /** - writeEntry() overridden to accept a list of Integers. - Note: Unlike the other writeEntry() functions, the old value is - _not_ returned here! - @param pKey The key to write - @param rValue The list to write - @param bPersistent If bPersistent is false, the entry's dirty flag - will not be set and thus the entry will not be - written to disk at deletion time. - @param bGlobal If bGlobal is true, the pair is not saved to the - application specific config file, but to the - global KDE config file. - @param bNLS If bNLS is true, the locale tag is added to the key - when writing it back. - @short writeEntry() overridden to accept a list of Integers. - @see #writeEntry - */ - public native void writeEntry(String pKey, int[] rValue, boolean bPersistent, boolean bGlobal, boolean bNLS); - public native void writeEntry(String pKey, int[] rValue, boolean bPersistent, boolean bGlobal); - public native void writeEntry(String pKey, int[] rValue, boolean bPersistent); - public native void writeEntry(String pKey, int[] rValue); - /** - Write a (key/value) pair. - Same as above, but writes a numerical value. - @param pKey The key to write. - @param nValue The value to write. - @param bPersistent If bPersistent is false, the entry's dirty - flag will not be set and thus the entry will not be written to - disk at deletion time. - @param bGlobal If bGlobal is true, the pair is not saved to the - application specific config file, but to the - global KDE config file. - @param bNLS If bNLS is true, the locale tag is added to the key - when writing it back. - @short Write a (key/value) pair. - */ - public native void writeEntry(String pKey, int nValue, boolean bPersistent, boolean bGlobal, boolean bNLS); - public native void writeEntry(String pKey, int nValue, boolean bPersistent, boolean bGlobal); - public native void writeEntry(String pKey, int nValue, boolean bPersistent); - public native void writeEntry(String pKey, int nValue); - /** - Writes a (key/value) pair. - Same as above, but write a long numerical value. - @param pKey The key to write. - @param nValue The value to write. - @param bPersistent If bPersistent is false, the entry's dirty - flag will not be set and thus the entry will not be written to - disk at deletion time. - @param bGlobal If bGlobal is true, the pair is not saved to the - application specific config file, but to the global KDE config file. - @param bNLS If bNLS is true, the locale tag is added to the key - when writing it back. - @short Writes a (key/value) pair. - */ - public native void writeEntry(String pKey, long nValue, boolean bPersistent, boolean bGlobal, boolean bNLS); - public native void writeEntry(String pKey, long nValue, boolean bPersistent, boolean bGlobal); - public native void writeEntry(String pKey, long nValue, boolean bPersistent); - public native void writeEntry(String pKey, long nValue); - /** - Writes a (key/value) pair. - Same as above, but writes a floating-point value. - @param pKey The key to write. - @param nValue The value to write. - @param bPersistent If bPersistent is false, the entry's dirty - flag will not be set and thus the entry will not be written to - disk at deletion time. - @param bGlobal If bGlobal is true, the pair is not saved to the - application specific config file, but to the global KDE config file. - @param format format determines the format to which the value - is converted. Default is 'g'. - @param precision precision sets the precision with which the - value is converted. Default is 6 as in String. - @param bNLS If bNLS is true, the locale tag is added to the key - when writing it back. - @short Writes a (key/value) pair. - */ - public native void writeEntry(String pKey, double nValue, boolean bPersistent, boolean bGlobal, char format, int precision, boolean bNLS); - public native void writeEntry(String pKey, double nValue, boolean bPersistent, boolean bGlobal, char format, int precision); - public native void writeEntry(String pKey, double nValue, boolean bPersistent, boolean bGlobal, char format); - public native void writeEntry(String pKey, double nValue, boolean bPersistent, boolean bGlobal); - public native void writeEntry(String pKey, double nValue, boolean bPersistent); - public native void writeEntry(String pKey, double nValue); - /** - Writes a (key/value) pair. - Same as above, but writes a booleanean value. - @param pKey The key to write. - @param bValue The value to write. - @param bPersistent If bPersistent is false, the entry's dirty - flag will not be set and thus the entry will not be written to - disk at deletion time. - @param bGlobal If bGlobal is true, the pair is not saved to the - application specific config file, but to the global KDE config file. - @param bNLS If bNLS is true, the locale tag is added to the key - when writing it back. - @short Writes a (key/value) pair. - */ - public native void writeEntry(String pKey, boolean bValue, boolean bPersistent, boolean bGlobal, boolean bNLS); - public native void writeEntry(String pKey, boolean bValue, boolean bPersistent, boolean bGlobal); - public native void writeEntry(String pKey, boolean bValue, boolean bPersistent); - public native void writeEntry(String pKey, boolean bValue); - /** - Writes a (key/value) pair. - Same as above, but writes a font value. - @param pKey The key to write. - @param rFont The font value to write. - @param bPersistent If bPersistent is false, the entry's dirty - flag will not be set and thus the entry will not be written to - disk at deletion time. - @param bGlobal If bGlobal is true, the pair is not saved to the - application specific config file, but to the global KDE config file. - @param bNLS If bNLS is true, the locale tag is added to the key - when writing it back. - @short Writes a (key/value) pair. - */ - public native void writeEntry(String pKey, TQFont rFont, boolean bPersistent, boolean bGlobal, boolean bNLS); - public native void writeEntry(String pKey, TQFont rFont, boolean bPersistent, boolean bGlobal); - public native void writeEntry(String pKey, TQFont rFont, boolean bPersistent); - public native void writeEntry(String pKey, TQFont rFont); - /** - Writes a (key/value) pair. - Same as above, but write a color entry. - Note: Unlike the other writeEntry() functions, the old value is - _not_ returned here! - @param pKey The key to write. - @param rColor The color value to write. - @param bPersistent If bPersistent is false, the entry's dirty - flag will not be set and thus the entry will not be written to - disk at deletion time. - @param bGlobal If bGlobal is true, the pair is not saved to the - application specific config file, but to the global KDE config file. - @param bNLS If bNLS is true, the locale tag is added to the key - when writing it back. - @short Writes a (key/value) pair. - */ - public native void writeEntry(String pKey, TQColor rColor, boolean bPersistent, boolean bGlobal, boolean bNLS); - public native void writeEntry(String pKey, TQColor rColor, boolean bPersistent, boolean bGlobal); - public native void writeEntry(String pKey, TQColor rColor, boolean bPersistent); - public native void writeEntry(String pKey, TQColor rColor); - /** - Writes a (key/value) pair. - Same as above, but writes a date and time entry. - Note: Unlike the other writeEntry() functions, the old value is - not returned here! - @param pKey The key to write. - @param rDateTime The date and time value to write. - @param bPersistent If bPersistent is false, the entry's dirty - flag will not be set and thus the entry will not be written to - disk at deletion time. - @param bGlobal If bGlobal is true, the pair is not saved to the - application specific config file, but to the global KDE config file. - @param bNLS If bNLS is true, the locale tag is added to the key - when writing it back. - @short Writes a (key/value) pair. - */ - public native void writeEntry(String pKey, Calendar rDateTime, boolean bPersistent, boolean bGlobal, boolean bNLS); - public native void writeEntry(String pKey, Calendar rDateTime, boolean bPersistent, boolean bGlobal); - public native void writeEntry(String pKey, Calendar rDateTime, boolean bPersistent); - public native void writeEntry(String pKey, Calendar rDateTime); - /** - Writes a (key/value) pair. - Same as above, but writes a rectangle. - Note: Unlike the other writeEntry() functions, the old value is - _not_ returned here! - @param pKey The key to write. - @param rValue The rectangle value to write. - @param bPersistent If bPersistent is false, the entry's dirty - flag will not be set and thus the entry will not be written to - disk at deletion time. - @param bGlobal If bGlobal is true, the pair is not saved to the - application specific config file, but to the global KDE config file. - @param bNLS If bNLS is true, the locale tag is added to the key - when writing it back. - @short Writes a (key/value) pair. - */ - public native void writeEntry(String pKey, TQRect rValue, boolean bPersistent, boolean bGlobal, boolean bNLS); - public native void writeEntry(String pKey, TQRect rValue, boolean bPersistent, boolean bGlobal); - public native void writeEntry(String pKey, TQRect rValue, boolean bPersistent); - public native void writeEntry(String pKey, TQRect rValue); - /** - Writes a (key/value) pair. - Same as above, but writes a point. - Note: Unlike the other writeEntry() functions, the old value is - _not_ returned here! - @param pKey The key to write. - @param rValue The point value to write. - @param bPersistent If bPersistent is false, the entry's dirty - flag will not be set and thus the entry will not be written to - disk at deletion time. - @param bGlobal If bGlobal is true, the pair is not saved to the - application specific config file, but to the global KDE config file. - @param bNLS If bNLS is true, the locale tag is added to the key - when writing it back. - @short Writes a (key/value) pair. - */ - public native void writeEntry(String pKey, TQPoint rValue, boolean bPersistent, boolean bGlobal, boolean bNLS); - public native void writeEntry(String pKey, TQPoint rValue, boolean bPersistent, boolean bGlobal); - public native void writeEntry(String pKey, TQPoint rValue, boolean bPersistent); - public native void writeEntry(String pKey, TQPoint rValue); - /** - Writes a (key/value) pair. - Same as above, but writes a size. - Note: Unlike the other writeEntry() functions, the old value is - _not_ returned here! - @param pKey The key to write. - @param rValue The size value to write. - @param bPersistent If bPersistent is false, the entry's dirty - flag will not be set and thus the entry will not be written to - disk at deletion time. - @param bGlobal If bGlobal is true, the pair is not saved to the - application specific config file, but to the global KDE config file. - @param bNLS If bNLS is true, the locale tag is added to the key - when writing it back. - @short Writes a (key/value) pair. - */ - public native void writeEntry(String pKey, TQSize rValue, boolean bPersistent, boolean bGlobal, boolean bNLS); - public native void writeEntry(String pKey, TQSize rValue, boolean bPersistent, boolean bGlobal); - public native void writeEntry(String pKey, TQSize rValue, boolean bPersistent); - public native void writeEntry(String pKey, TQSize rValue); - /** - Writes a file path. - It is checked whether the path is located under $HOME. If so the - path is written out with the user's home-directory replaced with - $HOME. The path should be read back with readPathEntry() - @param pKey The key to write. - @param path The path to write. - @param bPersistent If bPersistent is false, the entry's dirty - flag will not be set and thus the entry will not be written to - disk at deletion time. - @param bGlobal If bGlobal is true, the pair is not saved to the - application specific config file, but to the global KDE config file. - @param bNLS If bNLS is true, the locale tag is added to the key - when writing it back. - @short Writes a file path. - */ - public native void writePathEntry(String pKey, String path, boolean bPersistent, boolean bGlobal, boolean bNLS); - public native void writePathEntry(String pKey, String path, boolean bPersistent, boolean bGlobal); - public native void writePathEntry(String pKey, String path, boolean bPersistent); - public native void writePathEntry(String pKey, String path); - /** - writePathEntry() overridden to accept a list of paths (strings). - It is checked whether the paths are located under $HOME. If so each of - the paths are written out with the user's home-directory replaced with - $HOME. The paths should be read back with readPathListEntry() - @param pKey The key to write - @param rValue The list to write - @param sep The list separator (default is ","). - @param bPersistent If bPersistent is false, the entry's dirty flag - will not be set and thus the entry will not be - written to disk at deletion time. - @param bGlobal If bGlobal is true, the pair is not saved to the - application specific config file, but to the - global KDE config file. - @param bNLS If bNLS is true, the locale tag is added to the key - when writing it back. - @short writePathEntry() overridden to accept a list of paths (strings). - @see #writePathEntry - @see #readPathListEntry - */ - public native void writePathEntry(String pKey, String[] rValue, char sep, boolean bPersistent, boolean bGlobal, boolean bNLS); - public native void writePathEntry(String pKey, String[] rValue, char sep, boolean bPersistent, boolean bGlobal); - public native void writePathEntry(String pKey, String[] rValue, char sep, boolean bPersistent); - public native void writePathEntry(String pKey, String[] rValue, char sep); - public native void writePathEntry(String pKey, String[] rValue); - /** - Deletes the entry specified by pKey in the current group. - @param pKey The key to delete. - @param bGlobal If bGlobal is true, the pair is not removed from the - application specific config file, but to the global KDE config file. - @param bNLS If bNLS is true, the key with the locale tag is removed. - @short Deletes the entry specified by pKey in the current group. - */ - public native void deleteEntry(String pKey, boolean bNLS, boolean bGlobal); - public native void deleteEntry(String pKey, boolean bNLS); - public native void deleteEntry(String pKey); - /** - Deletes a configuration entry group - If the group is not empty and bDeep is false, nothing gets - deleted and false is returned. - If this group is the current group and it is deleted, the - current group is undefined and should be set with setGroup() - before the next operation on the configuration object. - @param group The name of the group - @param bDeep Specify whether non-empty groups should be completely - deleted (including their entries). - @param bGlobal If bGlobal is true, the group is not removed from the - application specific config file, but from the global KDE config file. - @return If the group is not empty and bDeep is false, - deleteGroup returns false. - - @short Deletes a configuration entry group - */ - public native boolean deleteGroup(String group, boolean bDeep, boolean bGlobal); - public native boolean deleteGroup(String group, boolean bDeep); - public native boolean deleteGroup(String group); - /** - Turns on or off "dollar expansion" (see TDEConfigBase introduction) - when reading config entries. - Dollar sign expansion is initially OFF. - @param _bExpand Tf true, dollar expansion is turned on. - @short Turns on or off "dollar expansion" (see TDEConfigBase introduction) when reading config entries. - */ - public native void setDollarExpansion(boolean _bExpand); - public native void setDollarExpansion(); - /** - Returns whether dollar expansion is on or off. It is initially OFF. - @return true if dollar expansion is on. - - @short Returns whether dollar expansion is on or off. - */ - public native boolean isDollarExpansion(); - /** - Mark the config object as "clean," i.e. don't write dirty entries - at destruction time. If bDeep is false, only the global dirty - flag of the TDEConfig object gets cleared. If you then call - writeEntry() again, the global dirty flag is set again and all - dirty entries will be written at a subsequent sync() call. - Classes that derive from TDEConfigBase should override this - method and implement storage-specific behavior, as well as - calling the TDEConfigBase.rollback() explicitly in the initializer. - @param bDeep If true, the dirty flags of all entries are cleared, - as well as the global dirty flag. - @short Mark the config object as "clean," i. - */ - public native void rollback(boolean bDeep); - public native void rollback(); - /** - Flushes all changes that currently reside only in memory - back to disk / permanent storage. Dirty configuration entries are - written to the most specific file available. - Asks the back end to flush out all pending writes, and then calls - rollback(). No changes are made if the object has readOnly - status. - You should call this from your destructor in derivative classes. - @short Flushes all changes that currently reside only in memory back to disk / permanent storage. - @see #rollback - @see #isReadOnly - */ - public native void sync(); - /** - Checks whether the config file has any dirty (modified) entries. - @return true if the config file has any dirty (modified) entries. - - @short Checks whether the config file has any dirty (modified) entries. - */ - public native boolean isDirty(); - /** - Sets the config object's read-only status. - @param _ro If true, the config object will not write out any - changes to disk even if it is destroyed or sync() is called. - @short Sets the config object's read-only status. - */ - public native void setReadOnly(boolean _ro); - /** - Returns the read-only status of the config object. - @return The read-only status. - - @short Returns the read-only status of the config object. - */ - public native boolean isReadOnly(); - /** - Checks whether the key has an entry in the currently active group. - Use this to determine whether a key is not specified for the current - group (hasKey() returns false). Keys with null data are considered - nonexistent. - @param key The key to search for. - @return If true, the key is available. - - @short Checks whether the key has an entry in the currently active group. - */ - public native boolean hasKey(String key); - /** - Returns a map (tree) of entries for all entries in a particular - group. Only the actual entry string is returned, none of the - other internal data should be included. - @param group A group to get keys from. - @return A map of entries in the group specified, indexed by key. - The returned map may be empty if the group is not found. - - @short Returns a map (tree) of entries for all entries in a particular group. - @see org.kde.qt.TQMap - */ - // TQMap entryMap(const TQString& arg1); >>>> NOT CONVERTED - /** - Reparses all configuration files. This is useful for programs - that use stand alone graphical configuration tools. The base - method implemented here only clears the group list and then - appends the default group. - Derivative classes should clear any internal data structures and - then simply call parseConfigFiles() when implementing this - method. - @short Reparses all configuration files. - @see #parseConfigFiles - */ - public native void reparseConfiguration(); - /** - Checks whether this configuration file can be modified. - @return whether changes may be made to this configuration file. - - @short Checks whether this configuration file can be modified. - */ - public native boolean isImmutable(); - /** - Checks whether it is possible to change the given group. - @param group the group to check - @return whether changes may be made to group in this configuration - file. - - @short Checks whether it is possible to change the given group. - */ - public native boolean groupIsImmutable(String group); - /** - Checks whether it is possible to change the given entry. - @param key the key to check - @return whether the entry key may be changed in the current group - in this configuration file. - - @short Checks whether it is possible to change the given entry. - */ - public native boolean entryIsImmutable(String key); - /** - Returns the state of the app-config object. - Possible return values - are NoAccess (the application-specific config file could not be - opened neither read-write nor read-only), ReadOnly (the - application-specific config file is opened read-only, but not - read-write) and ReadWrite (the application-specific config - file is opened read-write). - @return the state of the app-config object - - @short Returns the state of the app-config object. - @see ConfigState - */ - public native int getConfigState(); - /** - Check whether the config files are writable. - @param warnUser Warn the user if the configuration files are not writable. - @return Indicates that all of the configuration files used are writable. - - @short Check whether the config files are writable. - */ - public native boolean checkConfigFilesWritable(boolean warnUser); - /** - When set, all readEntry and readXXXEntry calls return the system - wide (default) values instead of the user's preference. - This is off by default. - @short When set, all readEntry and readXXXEntry calls return the system wide (default) values instead of the user's preference. - */ - public native void setReadDefaults(boolean b); - /** - @return true if all readEntry and readXXXEntry calls return the system - wide (default) values instead of the user's preference. - - @short - */ - public native boolean readDefaults(); - /** - Reverts the entry with key key in the current group in the - application specific config file to either the system wide (default) - value or the value specified in the global KDE config file. - To revert entries in the global KDE config file, the global KDE config - file should be opened explicitly in a separate config object. - @param key The key of the entry to revert. - @short Reverts the entry with key key in the current group in the application specific config file to either the system wide (default) value or the value specified in the global KDE config file. - */ - public native void revertToDefault(String key); - /** - Returns whether a default is specified for an entry in either the - system wide configuration file or the global KDE config file. - If an application computes a default value at runtime for - a certain entry, e.g. like: -
-		 TQColor computedDefault = kapp.palette().color(TQPalette.Active, TQColorGroup.Text)
-		 TQColor color = config.readEntry(key, computedDefault);
-		 \encode
-			 Then it may wish to make the following check before
-		 writing back changes:
-		 
-		 if ( (value == computedDefault) && !config.hasDefault(key) )
-		    config.revertToDefault(key)
-		 else
-		    config.writeEntry(key, value)
-		 
- This ensures that as long as the entry is not modified to differ from - the computed default, the application will keep using the computed default - and will follow changes the computed default makes over time. - @param key The key of the entry to check. - @short Returns whether a default is specified for an entry in either the system wide configuration file or the global KDE config file. - */ - public native boolean hasDefault(String key); -} diff --git a/kdejava/koala/org/kde/koala/KConfigGroup.java b/kdejava/koala/org/kde/koala/KConfigGroup.java deleted file mode 100644 index 344597e8..00000000 --- a/kdejava/koala/org/kde/koala/KConfigGroup.java +++ /dev/null @@ -1,53 +0,0 @@ -//Auto-generated by kalyptus. DO NOT EDIT. -package org.kde.koala; - -import org.kde.qt.Qt; -import org.kde.qt.QtSupport; - -/** - - A TDEConfigBase derived class for one specific group in a TDEConfig object. - @short A TDEConfigBase derived class for one specific group in a TDEConfig object. - -*/ -public class TDEConfigGroup extends TDEConfigBase { - protected TDEConfigGroup(Class dummy){super((Class) null);} - /** - Construct a config group corresponding to group in master. - group is the group name encoded in UTF-8. - @short Construct a config group corresponding to group in master. - */ - public TDEConfigGroup(TDEConfigBase master, String group) { - super((Class) null); - newTDEConfigGroup(master,group); - } - private native void newTDEConfigGroup(TDEConfigBase master, String group); - /** - Delete all entries in the entire group - @param bGlobal If bGlobal is true, the entries are not removed - from the application specific config file, but from the global - KDE config file. - @short Delete all entries in the entire group - */ - public native void deleteGroup(boolean bGlobal); - public native void deleteGroup(); - /** - Checks whether it is possible to change this group. - @return whether changes may be made to this group in this configuration - file. - - @short Checks whether it is possible to change this group. - */ - public native boolean groupIsImmutable(); - public native void setDirty(boolean b); - public native void putData(KEntryKey _key, KEntry _data, boolean _checkGroup); - public native void putData(KEntryKey _key, KEntry _data); - public native KEntry lookupData(KEntryKey _key); - public native void sync(); - /** Deletes the wrapped C++ instance */ - protected native void finalize() throws InternalError; - /** Delete the wrapped C++ instance ahead of finalize() */ - public native void dispose(); - /** Has the wrapped C++ instance been deleted? */ - public native boolean isDisposed(); -} diff --git a/kdejava/koala/org/kde/koala/KConfigGroupSaver.java b/kdejava/koala/org/kde/koala/KConfigGroupSaver.java deleted file mode 100644 index 6cc7051d..00000000 --- a/kdejava/koala/org/kde/koala/KConfigGroupSaver.java +++ /dev/null @@ -1,66 +0,0 @@ -//Auto-generated by kalyptus. DO NOT EDIT. -package org.kde.koala; - -import org.kde.qt.Qt; -import org.kde.qt.QtSupport; - -/** - - Helper class to facilitate working with TDEConfig / KSimpleConfig - groups. - Careful programmers always set the group of a - TDEConfig KSimpleConfig object to the group they want to read from - and set it back to the old one of afterwards. This is usually - written as: -
- String oldgroup config.group();
- config.setGroup( "TheGroupThatIWant" );
- ...
- config.writeEntry( "Blah", "Blubb" );
- config.setGroup( oldgroup );
- 
- In order to facilitate this task, you can use - TDEConfigGroupSaver. Simply construct such an object ON THE STACK - when you want to switch to a new group. Then, when the object goes - out of scope, the group will automatically be restored. If you - want to use several different groups within a function or method, - you can still use TDEConfigGroupSaver: Simply enclose all work with - one group (including the creation of the TDEConfigGroupSaver object) - in one block. - TDEConfigGroup provides similar functionality in a more object oriented - way. - @author Matthias Kalle Dalheimer - - @short Helper class for easier use of TDEConfig/KSimpleConfig groups. - @see TDEConfigBase - @see TDEConfig - @see KSimpleConfig - @see TDEConfigGroup - -*/ -public class TDEConfigGroupSaver implements QtSupport { - private long _qt; - private boolean _allocatedInJavaWorld = true; - protected TDEConfigGroupSaver(Class dummy){} - - /** - Constructor. You pass a pointer to the TDEConfigBase-derived - object you want to work with and a string indicating the _new_ - group. - @param config The TDEConfigBase-derived object this - TDEConfigGroupSaver works on. - @param group The new group that the config object should switch to. - @short Constructor. - */ - public TDEConfigGroupSaver(TDEConfigBase config, String group) { - newTDEConfigGroupSaver(config,group); - } - private native void newTDEConfigGroupSaver(TDEConfigBase config, String group); - public native TDEConfigBase config(); - /** Deletes the wrapped C++ instance */ - protected native void finalize() throws InternalError; - /** Delete the wrapped C++ instance ahead of finalize() */ - public native void dispose(); - /** Has the wrapped C++ instance been deleted? */ - public native boolean isDisposed(); -} diff --git a/kdejava/koala/org/kde/koala/KConfigINIBackEnd.java b/kdejava/koala/org/kde/koala/KConfigINIBackEnd.java deleted file mode 100644 index fba09220..00000000 --- a/kdejava/koala/org/kde/koala/KConfigINIBackEnd.java +++ /dev/null @@ -1,117 +0,0 @@ -//Auto-generated by kalyptus. DO NOT EDIT. -package org.kde.koala; - -import org.kde.qt.Qt; -import org.kde.qt.QtSupport; -import org.kde.qt.TQFile; - -/** - - Class for KDE INI-style configuration file loading/saving. - @author Preston Brown , - Matthias Kalle Dalheimer - - @short Class for KDE INI-style configuration file loading/saving. - -*/ -public class TDEConfigINIBackEnd extends TDEConfigBackEnd { - protected TDEConfigINIBackEnd(Class dummy){super((Class) null);} - /** - Constructs an ini-style configuration back end. - @param _config Specifies the configuration object which values - will be passed to as they are read, or from where values - to be written to will be obtained from. - @param _fileName The name of the file in which config - data is stored. All registered configuration directories - will be looked in in order of decreasing relevance. - @param _resType the resource type of the fileName specified, _if_ - it is not an absolute path (otherwise this parameter is ignored). - @param _useKDEGlobals If true, the user's system-wide kdeglobals file - will be imported into the config object. If false, only - the filename specified will be dealt with. - @short Constructs an ini-style configuration back end. - */ - public TDEConfigINIBackEnd(TDEConfigBase _config, String _fileName, String _resType, boolean _useKDEGlobals) { - super((Class) null); - newTDEConfigINIBackEnd(_config,_fileName,_resType,_useKDEGlobals); - } - private native void newTDEConfigINIBackEnd(TDEConfigBase _config, String _fileName, String _resType, boolean _useKDEGlobals); - public TDEConfigINIBackEnd(TDEConfigBase _config, String _fileName, String _resType) { - super((Class) null); - newTDEConfigINIBackEnd(_config,_fileName,_resType); - } - private native void newTDEConfigINIBackEnd(TDEConfigBase _config, String _fileName, String _resType); - /** - Parses all INI-style configuration files for a config object. - @return Whether or not parsing was successful. - - @short Parses all INI-style configuration files for a config object. - */ - public native boolean parseConfigFiles(); - /** - Writes configuration data to file(s). - @param bMerge Specifies whether the old config file already - on disk should be merged in with the data in memory. If true, - data is read off the disk and merged. If false, the on-disk - file is removed and only in-memory data is written out. - @short Writes configuration data to file(s). - */ - public native void sync(boolean bMerge); - public native void sync(); - /** - Parses one configuration file. - @param rFile The configuration file to parse - @param pWriteBackMap If specified, points to a KEntryMap where - the data read from the file should be stored, instead of - inserting them directly into the configuration object. - Use this area as a "scratchpad" when you need to know what is - on disk but don't want to effect the configuration object. - @param bGlobal Specifies whether entries should be marked as - belonging to the global KDE configuration file rather - than the application-specific KDE configuration file(s). - @param bDefault Specifies whether entries should be marked as - being default values. - @short Parses one configuration file. - */ - // void parseSingleConfigFile(TQFile& arg1,KEntryMap* arg2,bool arg3,bool arg4); >>>> NOT CONVERTED - // void parseSingleConfigFile(TQFile& arg1,KEntryMap* arg2,bool arg3); >>>> NOT CONVERTED - // void parseSingleConfigFile(TQFile& arg1,KEntryMap* arg2); >>>> NOT CONVERTED - protected native void parseSingleConfigFile(TQFile rFile); - /** - Writes configuration file back. - @param filename The name of the file to write. - @param bGlobal Specifies whether to write only entries which - are marked as belonging to the global KDE config file. - If this is false, it skips those entries. - @param bMerge Specifies whether the old config file already - on disk should be merged in with the data in memory. If true, - data is read off the disk and merged. If false, the on-disk - file is removed and only in-memory data is written out. - @return Whether some entries are left to be written to other - files. - - @short Writes configuration file back. - */ - protected native boolean writeConfigFile(String filename, boolean bGlobal, boolean bMerge); - protected native boolean writeConfigFile(String filename, boolean bGlobal); - protected native boolean writeConfigFile(String filename); - /** Get the entry map. - @param map the entries will be stored in this object. - @param bGlobal Specifies whether to get only entries which - are marked as belonging to the global KDE config file. - If this is false, it skips those entries. - @param mergeFile if not null, the dirty entries for this file will - be merged. - @return Whether there will be some entries left for writing to other - files. - - @short Get the entry map. - */ - // bool getEntryMap(KEntryMap& arg1,bool arg2,TQFile* arg3); >>>> NOT CONVERTED - /** Deletes the wrapped C++ instance */ - protected native void finalize() throws InternalError; - /** Delete the wrapped C++ instance ahead of finalize() */ - public native void dispose(); - /** Has the wrapped C++ instance been deleted? */ - public native boolean isDisposed(); -} diff --git a/kdejava/koala/org/kde/koala/KIO.java b/kdejava/koala/org/kde/koala/KIO.java deleted file mode 100644 index 7fe6837d..00000000 --- a/kdejava/koala/org/kde/koala/KIO.java +++ /dev/null @@ -1,1179 +0,0 @@ -//Auto-generated by kalyptus. DO NOT EDIT. -package org.kde.koala; - -import org.kde.qt.Qt; -import org.kde.qt.TQDomDocument; -import org.kde.qt.TQMimeSourceInterface; -import org.kde.qt.QtSupport; -import org.kde.qt.TQDataStream; -import java.util.ArrayList; -import org.kde.qt.TQMimeSource; -import org.kde.qt.TQWidget; - -/** - - @short A namespace for KIO globals. - -*/ -public class KIO { - public static final int S_SKIP = 1; - public static final int S_AUTO_SKIP = 2; - public static final int S_CANCEL = 0; - - public static final int M_OVERWRITE = 1; - public static final int M_OVERWRITE_ITSELF = 2; - public static final int M_SKIP = 4; - public static final int M_SINGLE = 8; - public static final int M_MULTI = 16; - public static final int M_RESUME = 32; - public static final int M_NORENAME = 64; - - /** - The result of open_RenameDlg(). - @short The result of open_RenameDlg(). - */ - public static final int R_RESUME = 6; - public static final int R_RESUME_ALL = 7; - public static final int R_OVERWRITE = 4; - public static final int R_OVERWRITE_ALL = 5; - public static final int R_SKIP = 2; - public static final int R_AUTO_SKIP = 3; - public static final int R_RENAME = 1; - public static final int R_CANCEL = 0; - - /** - Commands that can be invoked by a job. - @short Commands that can be invoked by a job. - */ - public static final int CMD_HOST = '0'; - public static final int CMD_CONNECT = '1'; - public static final int CMD_DISCONNECT = '2'; - public static final int CMD_SLAVE_STATUS = '3'; - public static final int CMD_SLAVE_CONNECT = '4'; - public static final int CMD_SLAVE_HOLD = '5'; - public static final int CMD_NONE = 'A'; - public static final int CMD_TESTDIR = 'B'; - public static final int CMD_GET = 'C'; - public static final int CMD_PUT = 'D'; - public static final int CMD_STAT = 'E'; - public static final int CMD_MIMETYPE = 'F'; - public static final int CMD_LISTDIR = 'G'; - public static final int CMD_MKDIR = 'H'; - public static final int CMD_RENAME = 'I'; - public static final int CMD_COPY = 'J'; - public static final int CMD_DEL = 'K'; - public static final int CMD_CHMOD = 'L'; - public static final int CMD_SPECIAL = 'M'; - public static final int CMD_USERPASS = 'N'; - public static final int CMD_REPARSECONFIGURATION = 'O'; - public static final int CMD_META_DATA = 'P'; - public static final int CMD_SYMLINK = 'Q'; - public static final int CMD_SUBURL = 'R'; - public static final int CMD_MESSAGEBOXANSWER = 'S'; - public static final int CMD_RESUMEANSWER = 'T'; - public static final int CMD_CONFIG = 'U'; - public static final int CMD_MULTI_GET = 'V'; - - /** - Error codes that can be emitted by KIO. - @short Error codes that can be emitted by KIO. - */ - public static final int ERR_CANNOT_OPEN_FOR_READING = 1; - public static final int ERR_CANNOT_OPEN_FOR_WRITING = 2; - public static final int ERR_CANNOT_LAUNCH_PROCESS = 3; - public static final int ERR_INTERNAL = 4; - public static final int ERR_MALFORMED_URL = 5; - public static final int ERR_UNSUPPORTED_PROTOCOL = 6; - public static final int ERR_NO_SOURCE_PROTOCOL = 7; - public static final int ERR_UNSUPPORTED_ACTION = 8; - public static final int ERR_IS_DIRECTORY = 9; - public static final int ERR_IS_FILE = 10; - public static final int ERR_DOES_NOT_EXIST = 11; - public static final int ERR_FILE_ALREADY_EXIST = 12; - public static final int ERR_DIR_ALREADY_EXIST = 13; - public static final int ERR_UNKNOWN_HOST = 14; - public static final int ERR_ACCESS_DENIED = 15; - public static final int ERR_WRITE_ACCESS_DENIED = 16; - public static final int ERR_CANNOT_ENTER_DIRECTORY = 17; - public static final int ERR_PROTOCOL_IS_NOT_A_FILESYSTEM = 18; - public static final int ERR_CYCLIC_LINK = 19; - public static final int ERR_USER_CANCELED = 20; - public static final int ERR_CYCLIC_COPY = 21; - public static final int ERR_COULD_NOT_CREATE_SOCKET = 22; - public static final int ERR_COULD_NOT_CONNECT = 23; - public static final int ERR_CONNECTION_BROKEN = 24; - public static final int ERR_NOT_FILTER_PROTOCOL = 25; - public static final int ERR_COULD_NOT_MOUNT = 26; - public static final int ERR_COULD_NOT_UNMOUNT = 27; - public static final int ERR_COULD_NOT_READ = 28; - public static final int ERR_COULD_NOT_WRITE = 29; - public static final int ERR_COULD_NOT_BIND = 30; - public static final int ERR_COULD_NOT_LISTEN = 31; - public static final int ERR_COULD_NOT_ACCEPT = 32; - public static final int ERR_COULD_NOT_LOGIN = 33; - public static final int ERR_COULD_NOT_STAT = 34; - public static final int ERR_COULD_NOT_CLOSEDIR = 35; - public static final int ERR_COULD_NOT_MKDIR = 37; - public static final int ERR_COULD_NOT_RMDIR = 38; - public static final int ERR_CANNOT_RESUME = 39; - public static final int ERR_CANNOT_RENAME = 40; - public static final int ERR_CANNOT_CHMOD = 41; - public static final int ERR_CANNOT_DELETE = 42; - public static final int ERR_SLAVE_DIED = 43; - public static final int ERR_OUT_OF_MEMORY = 44; - public static final int ERR_UNKNOWN_PROXY_HOST = 45; - public static final int ERR_COULD_NOT_AUTHENTICATE = 46; - public static final int ERR_ABORTED = 47; - public static final int ERR_INTERNAL_SERVER = 48; - public static final int ERR_SERVER_TIMEOUT = 49; - public static final int ERR_SERVICE_NOT_AVAILABLE = 50; - public static final int ERR_UNKNOWN = 51; - public static final int ERR_UNKNOWN_INTERRUPT = 53; - public static final int ERR_CANNOT_DELETE_ORIGINAL = 54; - public static final int ERR_CANNOT_DELETE_PARTIAL = 55; - public static final int ERR_CANNOT_RENAME_ORIGINAL = 56; - public static final int ERR_CANNOT_RENAME_PARTIAL = 57; - public static final int ERR_NEED_PASSWD = 58; - public static final int ERR_CANNOT_SYMLINK = 59; - public static final int ERR_NO_CONTENT = 60; - public static final int ERR_DISK_FULL = 61; - public static final int ERR_IDENTICAL_FILES = 62; - public static final int ERR_SLAVE_DEFINED = 63; - public static final int ERR_UPGRADE_REQUIRED = 64; - public static final int ERR_POST_DENIED = 65; - - /** - Constants used to specify the type of a KUDSAtom. - @short Constants used to specify the type of a KUDSAtom. - */ - public static final int UDS_STRING = 1; - public static final int UDS_LONG = 2; - public static final int UDS_TIME = 4|UDS_LONG; - public static final int UDS_SIZE = 8|UDS_LONG; - public static final int UDS_SIZE_LARGE = 32768|UDS_LONG; - public static final int UDS_USER = 16|UDS_STRING; - public static final int UDS_ICON_NAME = 24|UDS_STRING; - public static final int UDS_GROUP = 32|UDS_STRING; - public static final int UDS_EXTRA = 48|UDS_STRING; - public static final int UDS_NAME = 64|UDS_STRING; - public static final int UDS_LOCAL_PATH = 72|UDS_STRING; - public static final int UDS_HIDDEN = 80|UDS_LONG; - public static final int UDS_EXTENDED_ACL = 88|UDS_LONG; - public static final int UDS_ACL_STRING = 96|UDS_STRING; - public static final int UDS_DEFAULT_ACL_STRING = 104|UDS_STRING; - public static final int UDS_ACCESS = 128|UDS_LONG; - public static final int UDS_MODIFICATION_TIME = 256|UDS_TIME; - public static final int UDS_ACCESS_TIME = 512|UDS_TIME; - public static final int UDS_CREATION_TIME = 1024|UDS_TIME; - public static final int UDS_FILE_TYPE = 2048|UDS_LONG; - public static final int UDS_LINK_DEST = 4096|UDS_STRING; - public static final int UDS_URL = 8192|UDS_STRING; - public static final int UDS_MIME_TYPE = 16384|UDS_STRING; - public static final int UDS_GUESSED_MIME_TYPE = 16392|UDS_STRING; - public static final int UDS_XML_PROPERTIES = 0x8000|UDS_STRING; - - /** - Specifies how to use the cache. - @short Specifies how to use the cache. - @see #parseCacheControl - @see #getCacheControlString - */ - public static final int CC_CacheOnly = 0; - public static final int CC_Cache = 1; - public static final int CC_Verify = 2; - public static final int CC_Refresh = 3; - public static final int CC_Reload = 4; - - public static final int SupportsChmod = 0; - public static final int SupportsChown = 1; - public static final int SupportsUTime = 2; - public static final int SupportsSymlinks = 3; - public static final int CaseInsensitive = 4; - - /** HTTP / DAV method * @short HTTP / DAV method - */ - public static final int HTTP_GET = 0; - public static final int HTTP_PUT = 1; - public static final int HTTP_POST = 2; - public static final int HTTP_HEAD = 3; - public static final int HTTP_DELETE = 4; - public static final int HTTP_OPTIONS = 5; - public static final int DAV_PROPFIND = 6; - public static final int DAV_PROPPATCH = 7; - public static final int DAV_MKCOL = 8; - public static final int DAV_COPY = 9; - public static final int DAV_MOVE = 10; - public static final int DAV_LOCK = 11; - public static final int DAV_UNLOCK = 12; - public static final int DAV_SEARCH = 13; - public static final int DAV_SUBSCRIBE = 14; - public static final int DAV_UNSUBSCRIBE = 15; - public static final int DAV_POLL = 16; - public static final int DAV_NOTIFY = 17; - public static final int HTTP_UNKNOWN = -1; - - /** - Identifiers for KIO informational messages. - @short Identifiers for KIO informational messages. - */ - public static final int INF_TOTAL_SIZE = 10; - public static final int INF_PROCESSED_SIZE = 11; - public static final int INF_SPEED = 12; - public static final int INF_REDIRECTION = 20; - public static final int INF_MIME_TYPE = 21; - public static final int INF_ERROR_PAGE = 22; - public static final int INF_WARNING = 23; - public static final int INF_GETTING_FILE = 24; - public static final int INF_NEED_PASSWD = 25; - public static final int INF_INFOMESSAGE = 26; - public static final int INF_META_DATA = 27; - public static final int INF_NETWORK_STATUS = 28; - public static final int INF_MESSAGEBOX = 29; - - /** - Identifiers for KIO data messages. - @short Identifiers for KIO data messages. - */ - public static final int MSG_DATA = 100; - public static final int MSG_DATA_REQ = 101; - public static final int MSG_ERROR = 102; - public static final int MSG_CONNECTED = 103; - public static final int MSG_FINISHED = 104; - public static final int MSG_STAT_ENTRY = 105; - public static final int MSG_LIST_ENTRIES = 106; - public static final int MSG_RENAMED = 107; - public static final int MSG_RESUME = 108; - public static final int MSG_SLAVE_STATUS = 109; - public static final int MSG_SLAVE_ACK = 110; - public static final int MSG_NET_RETQUEST = 111; - public static final int MSG_NET_DROP = 112; - public static final int MSG_NEED_SUBURL_DATA = 113; - public static final int MSG_CANRESUME = 114; - public static final int MSG_AUTH_KEY = 115; - public static final int MSG_DEL_AUTH_KEY = 116; - - public static final int DEFAULT = 1; - public static final int STATUSBAR = 2; - public static final int LIST = 3; - - public static native int open_SkipDlg(boolean _multi, String _error_text); - public static native int open_SkipDlg(boolean _multi); - /** -
  • RenameDlg related Functions
  • - {@link KIO#RenameDlg} - Construct a modal, parent-less "rename" dialog, and return - a result code, as well as the new dest. Much easier to use than the - class RenameDlg directly. - @param caption the caption for the dialog box - @param src the URL of the file/dir we're trying to copy, as it's part of the text message - @param dest the URL of the destination file/dir, i.e. the one that already exists - @param mode parameters for the dialog (which buttons to show...), - see RenameDlg_Mode - @param newDest the new destination path, valid if R_RENAME was returned. - @param sizeSrc size of source file - @param sizeDest size of destination file - @param ctimeSrc creation time of source file - @param ctimeDest creation time of destination file - @param mtimeSrc modification time of source file - @param mtimeDest modification time of destination file - @return the result - - @short
  • RenameDlg related Functions
  • {@link KIO#RenameDlg} Construct a modal, parent-less "rename" dialog, and return a result code, as well as the new dest. - */ - public static native int open_RenameDlg(String caption, String src, String dest, int mode, StringBuffer newDestPath, long sizeSrc, long sizeDest, int ctimeSrc, int ctimeDest, int mtimeSrc, int mtimeDest); - public static native int open_RenameDlg(String caption, String src, String dest, int mode, StringBuffer newDestPath, long sizeSrc, long sizeDest, int ctimeSrc, int ctimeDest, int mtimeSrc); - public static native int open_RenameDlg(String caption, String src, String dest, int mode, StringBuffer newDestPath, long sizeSrc, long sizeDest, int ctimeSrc, int ctimeDest); - public static native int open_RenameDlg(String caption, String src, String dest, int mode, StringBuffer newDestPath, long sizeSrc, long sizeDest, int ctimeSrc); - public static native int open_RenameDlg(String caption, String src, String dest, int mode, StringBuffer newDestPath, long sizeSrc, long sizeDest); - public static native int open_RenameDlg(String caption, String src, String dest, int mode, StringBuffer newDestPath, long sizeSrc); - public static native int open_RenameDlg(String caption, String src, String dest, int mode, StringBuffer newDestPath); - public static native TQDataStream op_write(TQDataStream s, AuthInfo a); - public static native TQDataStream op_read(TQDataStream s, AuthInfo a); - /** - Converts size from bytes to the string representation. - @param size size in bytes - @return converted size as a string - e.g. 123.4 kB , 12.0 MB - - @short Converts size from bytes to the string representation. - */ - public static native String convertSize(long size); - /** - Converts size from bytes to a string representation with includes - the size in bytes. - e.g. 90 B, 240 B, 1.4 KB (1495 B), 2.6MB (2,734,344 B), 0 B - @param size size in bytes - @return converted size as a string - e.g. 1.4 KB (1495 B), 45 B - - @short Converts size from bytes to a string representation with includes the size in bytes. - */ - public static native String convertSizeWithBytes(long size); - /** - Converts a size to a string representation - Not unlike String.number(...) - @param size size in bytes - @return converted size as a string - e.g. 123456789 - - @short Converts a size to a string representation Not unlike String.number(. - */ - public static native String number(long size); - /** - Converts size from kilo-bytes to the string representation. - @param kbSize size in kilo-bytes - @return converted size as a string - e.g. 123.4 kB , 12.0 MB - - @short Converts size from kilo-bytes to the string representation. - */ - public static native String convertSizeFromKB(long kbSize); - /** - Convert seconds to a string representing number of days, hours, minutes and seconds - @param seconds number of seconds to convert - @return string representation in a locale depending format - - @short Convert seconds to a string representing number of days, hours, minutes and seconds - */ - public static native String convertSeconds(int seconds); - /** - Helper for showing information about a set of files and directories - @param items the number of items (= files + dirs + number of symlinks :) - @param files the number of files - @param dirs the number of dirs - @param size the sum of the size of the files - @param showSize whether to show the size in the result - @return the summary string - - @short Helper for showing information about a set of files and directories - */ - public static native String itemsSummaryString(int items, int files, int dirs, long size, boolean showSize); - /** - Encodes (from the text displayed to the real filename) - This translates % into %% and / into %2f - Used by KIO.link, for instance. - @param str the file name to encode - @return the encoded file name - - @short Encodes (from the text displayed to the real filename) This translates % into %% and / into %2f Used by KIO.link, for instance. - */ - public static native String encodeFileName(String str); - /** - Decodes (from the filename to the text displayed) - This translates %2[fF] into / and %% into % - @param str the file name to decode - @return the decoded file name - - @short Decodes (from the filename to the text displayed) This translates %2[fF] into / and %% into % - */ - public static native String decodeFileName(String str); - /** - Returns a translated error message for errorCode using the - additional error information provided by errorText. - @param errorCode the error code - @param errorText the additional error text - @return the created error string - - @short Returns a translated error message for errorCode using the additional error information provided by errorText. - */ - public static native String buildErrorString(int errorCode, String errorText); - /** - Returns translated error details for errorCode using the - additional error information provided by errorText , reqUrl - (the request URL), and the ioslave method . - @param errorCode the error code - @param errorText the additional error text - @param reqUrl the request URL - @param method the ioslave method - -
  • - String errorName - the name of the error -
  • - -
  • - String techName - if not null, the more technical name of the error -
  • - -
  • - String description - a description of the error -
  • - -
  • - ArrayList causes - a list of possible causes of the error -
  • - -
  • - ArrayList solutions - a liso of solutions for the error - -
  • @return the following data: - - @short Returns translated error details for errorCode using the additional error information provided by errorText , reqUrl (the request URL), and the ioslave method . - */ - public static native byte[] rawErrorDetail(int errorCode, String errorText, KURL reqUrl, int method); - public static native byte[] rawErrorDetail(int errorCode, String errorText, KURL reqUrl); - public static native byte[] rawErrorDetail(int errorCode, String errorText); - /** - Returns an appropriate error message if the given command cmd - is an unsupported action (ERR_UNSUPPORTED_ACTION). - @param protocol name of the protocol - @param cmd given command - @short Returns an appropriate error message if the given command cmd is an unsupported action (ERR_UNSUPPORTED_ACTION). - @see #enum - @see Command - */ - public static native String unsupportedActionErrorString(String protocol, int cmd); - /** - Parses the string representation of the cache control option. - @param cacheControl the string representation - @return the cache control value - - @short Parses the string representation of the cache control option. - @see #getCacheControlString - */ - public static native int parseCacheControl(String cacheControl); - /** - Returns a string representation of the given cache control method. - @param cacheControl the cache control method - @return the string representation - - @short Returns a string representation of the given cache control method. - @see #parseCacheControl - */ - public static native String getCacheControlString(int cacheControl); - /** - Returns the mount point where device is mounted - right now. This means, it has to be mounted, not just - defined in fstab. - @short Returns the mount point where device is mounted right now. - */ - public static native String findDeviceMountPoint(String device); - /** - Returns the mount point on which resides filename. - For instance if /home is a separate partition, findPathMountPoint("/home/user/blah") - will return /home - @param filename the file name to check - @return the mount point of the given filename - - @short Returns the mount point on which resides filename. - */ - public static native String findPathMountPoint(String filename); - /** - Checks if the path belongs to a filesystem that is probably - slow. It checks for NFS or for paths belonging to automounted - paths not yet mounted - @param filename the file name to check - @return true if the filesystem is probably slow - - @short Checks if the path belongs to a filesystem that is probably slow. - */ - public static native boolean probably_slow_mounted(String filename); - /** - Checks if the path belongs to a filesystem that is manually - mounted. - @param filename the file name to check - @return true if the filesystem is manually mounted - - @short Checks if the path belongs to a filesystem that is manually mounted. - */ - public static native boolean manually_mounted(String filename); - /** - Checks the capabilities of the filesystem to which a given file belongs. - given feature (e.g. chmod). - @param filename the file name to check - @param flag the flag to check - The availables flags are: - -
  • - SupportsChmod: returns true if the filesystem supports chmod - (e.g. msdos filesystems return false) -
  • - -
  • - SupportsChown: returns true if the filesystem supports chown - (e.g. msdos filesystems return false) -
  • - -
  • - SupportsUtime: returns true if the filesystems supports utime - (e.g. msdos filesystems return false) -
  • - -
  • - SupportsSymlinks: returns true if the filesystems supports symlinks - (e.g. msdos filesystems return false) -
  • - -
  • - CaseInsensitive: returns true if the filesystem treats - "foo" and "FOO" as being the same file (true for msdos systems) -
  • - @return true if the filesystem has that flag, false if not (or some error occurred) - - @short Checks the capabilities of the filesystem to which a given file belongs. - */ - public static native boolean testFileSystemFlag(String filename, int flag); - /** - Creates a PreviewJob to generate or retrieve a preview image - for the given URL. - @param items files to get previews for - @param width the maximum width to use - @param height the maximum height to use, if this is 0, the same - value as width is used. - @param iconSize the size of the mimetype icon to overlay over the - preview or zero to not overlay an icon. This has no effect if the - preview plugin that will be used doesn't use icon overlays. - @param iconAlpha transparency to use for the icon overlay - @param scale if the image is to be scaled to the requested size or - returned in its original size - @param save if the image should be cached for later use - @param enabledPlugins if non-zero, this points to a list containing - the names of the plugins that may be used. - @return the new PreviewJob - - @short Creates a PreviewJob to generate or retrieve a preview image for the given URL. - @see PreviewJob#availablePlugins - */ - public static native PreviewJob filePreview(ArrayList items, int width, int height, int iconSize, int iconAlpha, boolean scale, boolean save, String[] enabledPlugins); - public static native PreviewJob filePreview(ArrayList items, int width, int height, int iconSize, int iconAlpha, boolean scale, boolean save); - public static native PreviewJob filePreview(ArrayList items, int width, int height, int iconSize, int iconAlpha, boolean scale); - public static native PreviewJob filePreview(ArrayList items, int width, int height, int iconSize, int iconAlpha); - public static native PreviewJob filePreview(ArrayList items, int width, int height, int iconSize); - public static native PreviewJob filePreview(ArrayList items, int width, int height); - public static native PreviewJob filePreview(ArrayList items, int width); - /** - Creates a new DavJob that issues a PROPFIND command. PROPFIND retrieves - the properties of the resource identified by the given url. - @param url the URL of the resource - @param properties a propfind document that describes the properties that - should be retrieved - @param depth the depth of the request. Can be "0", "1" or "infinity" - @param showProgressInfo true to show progress information - @return the new DavJob - - @short Creates a new DavJob that issues a PROPFIND command. - */ - public static native DavJob davPropFind(KURL url, TQDomDocument properties, String depth, boolean showProgressInfo); - public static native DavJob davPropFind(KURL url, TQDomDocument properties, String depth); - /** - Creates a new DavJob that issues a PROPPATCH command. PROPPATCH sets - the properties of the resource identified by the given url. - @param url the URL of the resource - @param properties a PROPPACTCH document that describes the properties that - should be modified and its new values - @param showProgressInfo true to show progress information - @return the new DavJob - - @short Creates a new DavJob that issues a PROPPATCH command. - */ - public static native DavJob davPropPatch(KURL url, TQDomDocument properties, boolean showProgressInfo); - public static native DavJob davPropPatch(KURL url, TQDomDocument properties); - /** - Creates a new DavJob that issues a SEARCH command. - @param url the URL of the resource - @param nsURI the URI of the search method's qualified name - @param qName the local part of the search method's qualified name - @param query the search string - @param showProgressInfo true to show progress information - @return the new DavJob - - @short Creates a new DavJob that issues a SEARCH command. - */ - public static native DavJob davSearch(KURL url, String nsURI, String qName, String query, boolean showProgressInfo); - public static native DavJob davSearch(KURL url, String nsURI, String qName, String query); - /** - Retrieves meta information for the given items. - @param items files to get metainfo for - @return the MetaInfoJob to retrieve the items - - @short Retrieves meta information for the given items. - */ - public static native MetaInfoJob fileMetaInfo(ArrayList items); - /** - Creates a single directory. - @param url The URL of the directory to create. - @param permissions The permissions to set after creating the - directory (unix-style), -1 for default permissions. - @return A pointer to the job handling the operation. - - @short Creates a single directory. - */ - public static native SimpleJob mkdir(KURL url, int permissions); - public static native SimpleJob mkdir(KURL url); - /** - Removes a single directory. - The directory is assumed to be empty. - @param url The URL of the directory to remove. - @return A pointer to the job handling the operation. - - @short Removes a single directory. - */ - public static native SimpleJob rmdir(KURL url); - /** - Changes permissions on a file or directory. - See the other chmod below for changing many files - or directories. - @param url The URL of file or directory. - @param permissions The permissions to set. - @return the job handling the operation. - - @short Changes permissions on a file or directory. - */ - public static native SimpleJob chmod(KURL url, int permissions); - /** - Rename a file or directory. - Warning: this operation fails if a direct renaming is not - possible (like with files or dirs on separate partitions) - Use move or file_move in this case. - @param src The original URL - @param dest The final URL - @param overwrite whether to automatically overwrite if the dest exists - @return the job handling the operation. - - @short Rename a file or directory. - */ - public static native SimpleJob rename(KURL src, KURL dest, boolean overwrite); - /** - Create or move a symlink. - This is the lowlevel operation, similar to file_copy and file_move. - It doesn't do any check (other than those the slave does) - and it doesn't show rename and skip dialogs - use KIO.link for that. - @param target The string that will become the "target" of the link (can be relative) - @param dest The symlink to create. - @param overwrite whether to automatically overwrite if the dest exists - @param showProgressInfo true to show progress information - @return the job handling the operation. - - @short Create or move a symlink. - */ - public static native SimpleJob symlink(String target, KURL dest, boolean overwrite, boolean showProgressInfo); - public static native SimpleJob symlink(String target, KURL dest, boolean overwrite); - /** - Execute any command that is specific to one slave (protocol). - Examples are : HTTP POST, mount and unmount (kio_file) - @param url The URL isn't passed to the slave, but is used to know - which slave to send it to :-) - @param data Packed data. The meaning is completely dependent on the - slave, but usually starts with an int for the command number. - @param showProgressInfo true to show progress information - @return the job handling the operation. - - @short Execute any command that is specific to one slave (protocol). - */ - public static native SimpleJob special(KURL url, byte[] data, boolean showProgressInfo); - public static native SimpleJob special(KURL url, byte[] data); - /** - Mount filesystem. - Special job for kio_file. - @param ro Mount read-only if true. - @param fstype File system type (e.g. "ext2", can be null). - @param dev Device (e.g. /dev/sda0). - @param point Mount point, can be null. - @param showProgressInfo true to show progress information - @return the job handling the operation. - - @short Mount filesystem. - */ - public static native SimpleJob mount(boolean ro, String fstype, String dev, String point, boolean showProgressInfo); - public static native SimpleJob mount(boolean ro, String fstype, String dev, String point); - /** - Unmount filesystem. - Special job for kio_file. - @param point Point to unmount. - @param showProgressInfo true to show progress information - @return the job handling the operation. - - @short Unmount filesystem. - */ - public static native SimpleJob unmount(String point, boolean showProgressInfo); - public static native SimpleJob unmount(String point); - /** - HTTP cache update - @param url Url to update, protocol must be "http". - @param no_cache If true, cache entry for url is deleted. - @param expireDate Local machine time indicating when the entry is - supposed to expire. - @return the job handling the operation. - - @short HTTP cache update - */ - public static native SimpleJob http_update_cache(KURL url, boolean no_cache, int expireDate); - /** - Find all details for one file or directory. - @param url the URL of the file - @param showProgressInfo true to show progress information - @return the job handling the operation. - - @short Find all details for one file or directory. - */ - public static native StatJob stat(KURL url, boolean showProgressInfo); - public static native StatJob stat(KURL url); - /** - Find all details for one file or directory. - This version of the call includes two additional booleaneans, sideIsSource and details. - @param url the URL of the file - @param sideIsSource is true when stating a source file (we will do a get on it if - the stat works) and false when stating a destination file (target of a copy). - The reason for this parameter is that in some cases the kioslave might not - be able to determine a file's existence (e.g. HTTP doesn't allow it, FTP - has issues with case-sensitivity on some systems). - When the slave can't reliably determine the existence of a file, it will: - -
  • - be optimistic if sideIsSource=true, i.e. it will assume the file exists, - and if it doesn't this will appear when actually trying to download it -
  • - -
  • - be pessimistic if sideIsSource=false, i.e. it will assume the file - doesn't exist, to prevent showing "about to overwrite" errors to the user. - If you simply want to check for existence without downloading/uploading afterwards, - then you should use sideIsSource=false. -
  • - @param details selects the level of details we want. - By default this is 2 (all details wanted, including modification time, size, etc.), - setDetails(1) is used when deleting: we don't need all the information if it takes - too much time, no need to follow symlinks etc. - setDetails(0) is used for very simple probing: we'll only get the answer - "it's a file or a directory, or it doesn't exist". This is used by KRun. - @param showProgressInfo true to show progress information - @return the job handling the operation. - - @short Find all details for one file or directory. - */ - public static native StatJob stat(KURL url, boolean sideIsSource, short details, boolean showProgressInfo); - public static native StatJob stat(KURL url, boolean sideIsSource, short details); - /** - Get (a.k.a. read). - The slave emits the data through data(). - @param url the URL of the file - @param reload true to reload the file, false if it can be taken from the cache - @param showProgressInfo true to show progress information - @return the job handling the operation. - - @short Get (a. - */ - public static native TransferJob get(KURL url, boolean reload, boolean showProgressInfo); - public static native TransferJob get(KURL url, boolean reload); - public static native TransferJob get(KURL url); - /** - Put (a.k.a. write) - @param url Where to write data. - @param permissions May be -1. In this case no special permission mode is set. - @param overwrite If true, any existing file will be overwritten. - @param resume true to resume an operation. Warning, setting this to true means - that the data will be appended to dest if dest exists. - @param showProgressInfo true to show progress information - @return the job handling the operation. - - @short Put (a. - @see #multi_get - */ - public static native TransferJob put(KURL url, int permissions, boolean overwrite, boolean resume, boolean showProgressInfo); - public static native TransferJob put(KURL url, int permissions, boolean overwrite, boolean resume); - /** - HTTP POST (for form data). - Example: -
    -		    job = KIO.http_post( url, postData, false );
    -		    job.addMetaData("content-type", contentType );
    -		    job.addMetaData("referrer", referrerURL);
    -		 
    - postData is the data that you want to send and - contentType is the complete HTTP header line that - specifies the content's MIME type, for example - "Content-Type: text/xml". - You MUST specify content-type! - Often contentType is - "Content-Type: application/x-www-form-urlencoded" and - the postData is then an ASCII string (without null-termination!) - with characters like space, linefeed and percent escaped like %20, - %0A and %25. - @param url Where to write the data. - @param postData Encoded data to post. - @param showProgressInfo true to display - @return the job handling the operation. - - @short HTTP POST (for form data). - */ - public static native TransferJob http_post(KURL url, byte[] postData, boolean showProgressInfo); - public static native TransferJob http_post(KURL url, byte[] postData); - /** - Get (a.k.a. read), into a single byte[]. - @param url the URL of the file - @param reload true to reload the file, false if it can be taken from the cache - @param showProgressInfo true to show progress information - @return the job handling the operation. - - @short Get (a. - @see StoredTransferJob - */ - public static native StoredTransferJob storedGet(KURL url, boolean reload, boolean showProgressInfo); - public static native StoredTransferJob storedGet(KURL url, boolean reload); - public static native StoredTransferJob storedGet(KURL url); - /** - Put (a.k.a. write) data from a single byte[]. - @param arr The data to write - @param url Where to write data. - @param permissions May be -1. In this case no special permission mode is set. - @param overwrite If true, any existing file will be overwritten. - @param resume true to resume an operation. Warning, setting this to true means - that the data will be appended to dest if dest exists. - @param showProgressInfo true to show progress information - @return the job handling the operation. - - @short Put (a. - @see StoredTransferJob - */ - public static native StoredTransferJob storedPut(byte[] arr, KURL url, int permissions, boolean overwrite, boolean resume, boolean showProgressInfo); - public static native StoredTransferJob storedPut(byte[] arr, KURL url, int permissions, boolean overwrite, boolean resume); - /** - Creates a new multiple get job. - @param id the id of the get operation - @param url the URL of the file - @param metaData the MetaData associated with the file - @return the job handling the operation. - - @short Creates a new multiple get job. - @see #get - */ - // TDEIO::MultiGetJob* multi_get(long arg1,const KURL& arg2,const TDEIO::MetaData& arg3); >>>> NOT CONVERTED - /** - Find mimetype for one file or directory. - @param url the URL of the file - @param showProgressInfo true to show progress information - @return the job handling the operation. - - @short Find mimetype for one file or directory. - */ - public static native MimetypeJob mimetype(KURL url, boolean showProgressInfo); - public static native MimetypeJob mimetype(KURL url); - /** - Copy a single file. - Uses either SlaveBase.copy() if the slave supports that - or get() and put() otherwise. - @param src Where to get the file. - @param dest Where to put the file. - @param permissions May be -1. In this case no special permission mode is set. - @param overwrite If true, any existing file will be overwritten. - @param resume true to resume an operation. Warning, setting this to true means - that src will be appended to dest if dest exists. - You probably don't want that, so leave it to false :) - @param showProgressInfo true to show progress information - @return the job handling the operation. - - @short Copy a single file. - */ - public static native FileCopyJob file_copy(KURL src, KURL dest, int permissions, boolean overwrite, boolean resume, boolean showProgressInfo); - public static native FileCopyJob file_copy(KURL src, KURL dest, int permissions, boolean overwrite, boolean resume); - public static native FileCopyJob file_copy(KURL src, KURL dest, int permissions, boolean overwrite); - public static native FileCopyJob file_copy(KURL src, KURL dest, int permissions); - public static native FileCopyJob file_copy(KURL src, KURL dest); - /** - Move a single file. - Use either SlaveBase.rename() if the slave supports that, - or copy() and del() otherwise, or eventually get() & put() & del() - @param src Where to get the file. - @param dest Where to put the file. - @param permissions May be -1. In this case no special permission mode is set. - @param overwrite If true, any existing file will be overwritten. - @param resume true to resume an operation. Warning, setting this to true means - that src will be appended to dest if dest exists. - You probably don't want that, so leave it to false :) - @param showProgressInfo true to show progress information - @return the job handling the operation. - - @short Move a single file. - */ - public static native FileCopyJob file_move(KURL src, KURL dest, int permissions, boolean overwrite, boolean resume, boolean showProgressInfo); - public static native FileCopyJob file_move(KURL src, KURL dest, int permissions, boolean overwrite, boolean resume); - public static native FileCopyJob file_move(KURL src, KURL dest, int permissions, boolean overwrite); - public static native FileCopyJob file_move(KURL src, KURL dest, int permissions); - public static native FileCopyJob file_move(KURL src, KURL dest); - /** - Delete a single file. - @param src File to delete. - @param showProgressInfo true to show progress information - @return the job handling the operation. - - @short Delete a single file. - */ - public static native SimpleJob file_delete(KURL src, boolean showProgressInfo); - public static native SimpleJob file_delete(KURL src); - /** - List the contents of url, which is assumed to be a directory. - "." and ".." are returned, filter them out if you don't want them. - @param url the url of the directory - @param showProgressInfo true to show progress information - @param includeHidden true for all files, false to cull out UNIX hidden - files/dirs (whose names start with dot) - @return the job handling the operation. - - @short List the contents of url, which is assumed to be a directory. - */ - public static native ListJob listDir(KURL url, boolean showProgressInfo, boolean includeHidden); - public static native ListJob listDir(KURL url, boolean showProgressInfo); - public static native ListJob listDir(KURL url); - /** - The same as the previous method, but recurses subdirectories. - Directory links are not followed. - "." and ".." are returned but only for the toplevel directory. - Filter them out if you don't want them. - @param url the url of the directory - @param showProgressInfo true to show progress information - @param includeHidden true for all files, false to cull out UNIX hidden - files/dirs (whose names start with dot) - @return the job handling the operation. - - @short The same as the previous method, but recurses subdirectories. - */ - public static native ListJob listRecursive(KURL url, boolean showProgressInfo, boolean includeHidden); - public static native ListJob listRecursive(KURL url, boolean showProgressInfo); - public static native ListJob listRecursive(KURL url); - /** - Copy a file or directory src into the destination dest, - which can be a file (including the final filename) or a directory - (into which src will be copied). - This emulates the cp command completely. - @param src the file or directory to copy - @param dest the destination - @param showProgressInfo true to show progress information - @return the job handling the operation - - @short Copy a file or directory src into the destination dest, which can be a file (including the final filename) or a directory (into which src will be copied). - @see #copyAs - */ - public static native CopyJob copy(KURL src, KURL dest, boolean showProgressInfo); - public static native CopyJob copy(KURL src, KURL dest); - /** - Copy a file or directory src into the destination dest, - which is the destination name in any case, even for a directory. - As opposed to copy(), this doesn't emulate cp, but is the only - way to copy a directory, giving it a new name and getting an error - box if a directory already exists with the same name. - @param src the file or directory to copy - @param dest the destination - @param showProgressInfo true to show progress information - @return the job handling the operation - - @short Copy a file or directory src into the destination dest, which is the destination name in any case, even for a directory. - */ - public static native CopyJob copyAs(KURL src, KURL dest, boolean showProgressInfo); - public static native CopyJob copyAs(KURL src, KURL dest); - /** - Copy a list of file/dirs src into a destination directory dest. - @param src the list of files and/or directories - @param dest the destination - @param showProgressInfo true to show progress information - @return the job handling the operation - - @short Copy a list of file/dirs src into a destination directory dest. - */ - public static native CopyJob copy(ArrayList src, KURL dest, boolean showProgressInfo); - public static native CopyJob copy(ArrayList src, KURL dest); - /** - Moves a file or directory src to the given destination dest. - @param src the file or directory to copy - @param dest the destination - @param showProgressInfo true to show progress information - @return the job handling the operation - - @short Moves a file or directory src to the given destination dest. - @see #copy - @see #moveAs - */ - public static native CopyJob move(KURL src, KURL dest, boolean showProgressInfo); - public static native CopyJob move(KURL src, KURL dest); - /** - Moves a file or directory src to the given destination dest. Unlike move() - this operation will fail when the directory already exists. - @param src the file or directory to copy - @param dest the destination - @param showProgressInfo true to show progress information - @return the job handling the operation - - @short Moves a file or directory src to the given destination dest. - @see #copyAs - */ - public static native CopyJob moveAs(KURL src, KURL dest, boolean showProgressInfo); - public static native CopyJob moveAs(KURL src, KURL dest); - /** - Moves a list of files or directories src to the given destination dest. - @param src the list of files or directories to copy - @param dest the destination - @param showProgressInfo true to show progress information - @return the job handling the operation - - @short Moves a list of files or directories src to the given destination dest. - @see #copy - */ - public static native CopyJob move(ArrayList src, KURL dest, boolean showProgressInfo); - public static native CopyJob move(ArrayList src, KURL dest); - /** - Create a link. - If the protocols and hosts are the same, a Unix symlink will be created. - Otherwise, a .desktop file of Type Link and pointing to the src URL will be created. - @param src The existing file or directory, 'target' of the link. - @param destDir Destination directory where the link will be created. - @param showProgressInfo true to show progress information - @return the job handling the operation - - @short Create a link. - */ - public static native CopyJob link(KURL src, KURL destDir, boolean showProgressInfo); - public static native CopyJob link(KURL src, KURL destDir); - /** - Create several links - If the protocols and hosts are the same, a Unix symlink will be created. - Otherwise, a .desktop file of Type Link and pointing to the src URL will be created. - @param src The existing files or directories, 'targets' of the link. - @param destDir Destination directory where the links will be created. - @param showProgressInfo true to show progress information - @return the job handling the operation - - @short Create several links If the protocols and hosts are the same, a Unix symlink will be created. - @see #link - */ - public static native CopyJob link(ArrayList src, KURL destDir, boolean showProgressInfo); - public static native CopyJob link(ArrayList src, KURL destDir); - /** - Create a link. Unlike link() this operation will fail when the directory already - exists. - If the protocols and hosts are the same, a Unix symlink will be created. - Otherwise, a .desktop file of Type Link and pointing to the src URL will be created. - @param src The existing file or directory, 'target' of the link. - @param dest Destination directory where the link will be created. - @param showProgressInfo true to show progress information - @return the job handling the operation - - @short Create a link. - @see #link - @see #copyAs - */ - public static native CopyJob linkAs(KURL src, KURL dest, boolean showProgressInfo); - public static native CopyJob linkAs(KURL src, KURL dest); - /** - Trash a file or directory. - This is currently only supported for local files and directories. - Use "KURL src; src.setPath( path );" to create a URL from a path. - @param src file to delete - @param showProgressInfo true to show progress information - @return the job handling the operation - - @short Trash a file or directory. - */ - public static native CopyJob trash(KURL src, boolean showProgressInfo); - public static native CopyJob trash(KURL src); - /** - Trash a list of files or directories. - This is currently only supported for local files and directories. - @param src the files to delete - @param showProgressInfo true to show progress information - @return the job handling the operation - - @short Trash a list of files or directories. - */ - public static native CopyJob trash(ArrayList src, boolean showProgressInfo); - public static native CopyJob trash(ArrayList src); - /** - Delete a file or directory. - @param src file to delete - @param shred obsolete (TODO remove in KDE4) - @param showProgressInfo true to show progress information - @return the job handling the operation - - @short Delete a file or directory. - */ - public static native DeleteJob del(KURL src, boolean shred, boolean showProgressInfo); - public static native DeleteJob del(KURL src, boolean shred); - public static native DeleteJob del(KURL src); - /** - Deletes a list of files or directories. - @param src the files to delete - @param shred obsolete (TODO remove in KDE4) - @param showProgressInfo true to show progress information - @return the job handling the operation - - @short Deletes a list of files or directories. - */ - public static native DeleteJob del(ArrayList src, boolean shred, boolean showProgressInfo); - public static native DeleteJob del(ArrayList src, boolean shred); - public static native DeleteJob del(ArrayList src); - /** - Pastes the content of the clipboard to the given destination URL. - URLs are treated separately (performing a file copy) - from other data (which is saved into a file after asking the user - to choose a filename and the preferred data format) - @param destURL the URL to receive the data - @param move true to move the data, false to copy - @return the job that handles the operation - - @short Pastes the content of the clipboard to the given destination URL. - @see #pasteData - */ - public static native Job pasteClipboard(KURL destURL, boolean move); - public static native Job pasteClipboard(KURL destURL); - /** - Pastes the given data to the given destination URL. - NOTE: This method is blocking (uses NetAccess for saving the data). - Please consider using pasteDataAsync instead. - @param destURL the URL of the directory where the data will be pasted. - The filename to use in that directory is prompted by this method. - @param data the data to copy - @short Pastes the given data to the given destination URL. - @see #pasteClipboard - */ - public static native void pasteData(KURL destURL, byte[] data); - /** - Pastes the given data to the given destination URL. - Note that this method requires the caller to have chosen the byte[] - to paste before hand, unlike pasteClipboard and pasteMimeSource. - @param destURL the URL of the directory where the data will be pasted. - The filename to use in that directory is prompted by this method. - @param data the data to copy - @short Pastes the given data to the given destination URL. - @see #pasteClipboard - */ - public static native CopyJob pasteDataAsync(KURL destURL, byte[] data); - /** - Pastes the given data to the given destination URL. - Note that this method requires the caller to have chosen the byte[] - to paste before hand, unlike pasteClipboard and pasteMimeSource. - @param destURL the URL of the directory where the data will be pasted. - The filename to use in that directory is prompted by this method. - @param data the data to copy - @param dialogText the text to show in the dialog - @short Pastes the given data to the given destination URL. - @see #pasteClipboard - */ - public static native CopyJob pasteDataAsync(KURL destURL, byte[] data, String dialogText); - /** - Save the given mimesource data to the given destination URL - after offering the user to choose a data format. - This is the method used when handling drops (of anything else than URLs) - onto kdesktop and konqueror. - @param data the TQMimeSource (e.g. a TQDropEvent) - @param destURL the URL of the directory where the data will be pasted. - The filename to use in that directory is prompted by this method. - @param dialogText the text to show in the dialog - @param widget parent widget to use for dialogs - @param clipboard whether the TQMimeSource comes from TQClipboard. If you - use pasteClipboard for that case, you never have to worry about this parameter. - @short Save the given mimesource data to the given destination URL after offering the user to choose a data format. - @see #pasteClipboard - */ - public static native CopyJob pasteMimeSource(TQMimeSourceInterface data, KURL destURL, String dialogText, TQWidget widget, boolean clipboard); - public static native CopyJob pasteMimeSource(TQMimeSourceInterface data, KURL destURL, String dialogText, TQWidget widget); - /** - Checks whether the clipboard contains any URLs. - @return true if not - Not used anymore, wrong method name, so it will disappear in KDE4. - - @short Checks whether the clipboard contains any URLs. - */ - public static native boolean isClipboardEmpty(); - /** - Returns the text to use for the Paste action, when the application supports - pasting files, urls, and clipboard data, using pasteClipboard(). - @return a string suitable for KAction.setText, or an empty string if pasting - isn't possible right now. - - @short Returns the text to use for the Paste action, when the application supports pasting files, urls, and clipboard data, using pasteClipboard(). - */ - public static native String pasteActionText(); -} diff --git a/kdejava/koala/org/kde/koala/Makefile.am b/kdejava/koala/org/kde/koala/Makefile.am index 8f80ea55..e2dc5b96 100644 --- a/kdejava/koala/org/kde/koala/Makefile.am +++ b/kdejava/koala/org/kde/koala/Makefile.am @@ -1,7 +1,7 @@ ####### tdevelop will overwrite this part!!! (begin)########## -EXTRA_DIST = TDEGlobal.java KMdiToolViewAccessor.java BrowserExtension.java DCOPClient.java DCOPObject.java DCOPObjectInterface.java DCOPObjectProxy.java KAboutApplication.java KAboutContainer.java TDEAboutData.java KAboutDialog.java KAboutKDE.java KAboutPerson.java KAboutWidget.java KAccel.java KAction.java KActionCollection.java KActionMenu.java KActionSeparator.java KAnimWidget.java TDEApplication.java KAudioPlayer.java KAuthIcon.java KBugReport.java KButtonBox.java TDECModule.java KCharSelect.java KCharSelectTable.java KCharsets.java TDECmdLineArgs.java KColorButton.java KColorCombo.java KColorDrag.java KCombiView.java KComboBox.java KCompletion.java KCompletionBase.java KCompletionBaseInterface.java TDEConfig.java TDEConfigBackEnd.java TDEConfigBase.java TDEConfigGroupSaver.java TDEConfigINIBackEnd.java KContextMenuManager.java KCursor.java KDCOPActionProxy.java KDCOPPropertyProxy.java KDEDesktopMimeType.java KDatePicker.java KDateTable.java KDateValidator.java KDesktopFile.java KDialog.java KDialogBase.java KDirOperator.java KDirWatch.java KDockWidgetAbstractHeader.java KDockWidgetAbstractHeaderDrag.java KDockWidgetHeader.java KDockWidgetHeaderDrag.java KDoubleNumInput.java KDualColorButton.java KEdFind.java KEdGotoLine.java KEdReplace.java KEditToolbar.java KEditToolbarWidget.java KEntry.java KEntryKey.java KExecMimeType.java KFile.java KFileDetailView.java KFileDialog.java KFileFilter.java KFileIconView.java KFileIconViewItem.java KFileItem.java KFileListViewItem.java KFilePreview.java KFileView.java KFileViewInterface.java KFileViewSignaler.java KFolderType.java KFontAction.java KFontChooser.java KFontDialog.java KFontSizeAction.java TDEGlobalAccel.java TDEGlobalSettings.java KGradientSelector.java KHTMLPart.java KHTMLSettings.java KHTMLView.java KHelpMenu.java KHistoryCombo.java KIPC.java KIconButton.java KIconCanvas.java KIconDialog.java KIconEffect.java KIconLoader.java KIconView.java KImageEffect.java KImageIO.java TDEInstance.java TDEInstanceInterface.java KIntNumInput.java KIntSpinBox.java KIntValidator.java KJanusWidget.java KKeyChooser.java KLed.java KLibFactory.java KLibLoader.java KLineEdit.java KListBox.java KListView.java KLocale.java KMainWindow.java KMenuBar.java KMessageBox.java KMimeType.java KNotifyClient.java KNumInput.java KOpenWithDlg.java KPalette.java KPanelApplet.java KPanelMenu.java KPasswordDialog.java KPasswordEdit.java KPixmap.java KPixmapEffect.java KPixmapIO.java KPixmapProvider.java KPopupFrame.java KPopupMenu.java KPopupTitle.java KProcIO.java TDEProcess.java TDEProcessController.java TDEProcessRunner.java KProgress.java KProtocolInfo.java KProtocolManager.java KRFCDate.java KRadioAction.java KRandomSequence.java KRecentDocument.java KRestrictedLine.java KRootPermsIcon.java KRootPixmap.java KRootProp.java KRuler.java KRun.java KSSL.java KSSLCertificate.java KSSLCertificateHome.java KSSLConnectionInfo.java KSSLInfoDlg.java KSSLPeerInfo.java KSSLSettings.java KSSLX509Map.java KSaveFile.java KSelectAction.java KSelector.java KSeparator.java KService.java KServiceGroup.java KServiceOffer.java KServiceType.java KServiceTypeProfile.java KSessionManaged.java KShared.java KShellCompletion.java KShred.java KSimpleConfig.java KSpell.java KSpellConfig.java KSpellDlg.java KStandardDirs.java KStaticDeleterBase.java KStatusBar.java KStatusBarLabel.java KStdAccel.java KStdAction.java KStringHandler.java KSycoca.java KSycocaEntry.java KSystemTray.java KTabCtl.java KTempFile.java KTextBrowser.java KToggleAction.java KToolBar.java KToolBarButton.java KToolBarRadioGroup.java KToolBarSeparator.java KTrader.java KURIFilter.java KURIFilterData.java KURIFilterPlugin.java KURL.java KURLComboBox.java KURLCompletion.java KURLDrag.java KURLLabel.java KURLRequester.java KURLRequesterDlg.java KUniqueApplication.java KWizard.java KWritePermsIcon.java KXMLGUIBuilder.java KXMLGUIBuilderInterface.java KXMLGUIClient.java KXMLGUIClientInterface.java KXMLGUIFactory.java KXYSelector.java Part.java PartBaseInterface.java ReadOnlyPart.java NetAccess.java kdejava.java Event.java GUIActivateEvent.java MouseEvent.java OpenURLEvent.java PartActivateEvent.java PartSelectEvent.java ReadWritePart.java DocumentFragment.java DocumentStyle.java DocumentType.java HTMLDocument.java NamedNodeMap.java CSSStyleSheet.java StyleSheet.java CSSException.java CSSPrimitiveValue.java CSSStyleDeclaration.java CSSValue.java Counter.java RGBColor.java Rect.java Element.java HTMLAnchorElement.java HTMLAppletElement.java HTMLAreaElement.java HTMLBRElement.java HTMLBaseElement.java HTMLBaseFontElement.java HTMLBlockquoteElement.java HTMLBodyElement.java HTMLButtonElement.java HTMLCollection.java HTMLDListElement.java HTMLDirectoryElement.java HTMLDivElement.java HTMLElement.java HTMLFieldSetElement.java HTMLFontElement.java HTMLFormElement.java HTMLFrameElement.java HTMLFrameSetElement.java HTMLHRElement.java HTMLHeadElement.java HTMLHeadingElement.java HTMLHtmlElement.java HTMLIFrameElement.java HTMLImageElement.java HTMLInputElement.java HTMLIsIndexElement.java HTMLLIElement.java HTMLLabelElement.java HTMLLegendElement.java HTMLLinkElement.java HTMLMapElement.java HTMLMenuElement.java HTMLMetaElement.java HTMLModElement.java HTMLOListElement.java HTMLObjectElement.java HTMLOptGroupElement.java HTMLOptionElement.java HTMLParagraphElement.java HTMLParamElement.java HTMLPreElement.java HTMLQuoteElement.java HTMLScriptElement.java HTMLSelectElement.java HTMLStyleElement.java HTMLTableCaptionElement.java HTMLTableCellElement.java HTMLTableColElement.java HTMLTableElement.java HTMLTableRowElement.java HTMLTableSectionElement.java HTMLTextAreaElement.java HTMLTitleElement.java HTMLUListElement.java Attr.java DockMainWindow.java MainWindow.java CDATASection.java Comment.java EntityReference.java NodeFilter.java NodeIterator.java ProcessingInstruction.java Range.java Text.java TreeWalker.java CharacterData.java CopyJob.java DeleteJob.java FileCopyJob.java Job.java KDirNotify.java KDirNotifyInterface.java KDirSize.java ListJob.java MimetypeJob.java SimpleJob.java StatJob.java TransferJob.java Connection.java Slave.java KAboutContributor.java KAboutTranslator.java KCodecs.java KCommand.java KCommandHistory.java KCompletionBox.java KDialogQueue.java KEditListBox.java KFilterBase.java KFilterDev.java KFontCombo.java KMacroCommand.java KPanelExtension.java KPixmapSplitter.java KPreviewWidgetBase.java KPushButton.java KScanDialog.java KSqueezedTextLabel.java KToolBarPopupAction.java KTipDatabase.java KTipDialog.java BrowserExtensionSignals.java CopyJobSignals.java DCOPClientSignals.java DeleteJobSignals.java JobSignals.java KAboutContainerSignals.java KAboutContributorSignals.java KAboutDialogSignals.java KAboutWidgetSignals.java KAccelSignals.java KActionCollectionSignals.java KActionSignals.java KAnimWidgetSignals.java TDEApplicationSignals.java TDECModuleSignals.java KCharSelectSignals.java KCharSelectTableSignals.java KColorButtonSignals.java KColorComboSignals.java KComboBoxSignals.java KCommandHistorySignals.java KCompletionBoxSignals.java KCompletionSignals.java KDatePickerSignals.java KDateTableSignals.java KDialogBaseSignals.java KDialogSignals.java KDirListerSignals.java KDirOperatorSignals.java KDirWatchSignals.java KDoubleNumInputSignals.java KDualColorButtonSignals.java KEdFindSignals.java KEdReplaceSignals.java KEditListBoxSignals.java KEditSignals.java KEditToolbarSignals.java KEditToolbarWidgetSignals.java KFileDetailViewSignals.java KFileDialogSignals.java KFileIconViewSignals.java KFilePreviewSignals.java KFontChooserSignals.java KFontDialogSignals.java KFontSizeActionSignals.java KHTMLPartSignals.java KHTMLViewSignals.java KHelpMenuSignals.java KHistoryComboSignals.java KIconButtonSignals.java KIconCanvasSignals.java KIconDialogSignals.java KIconViewSignals.java KIntNumInputSignals.java KJanusWidgetSignals.java KKeyChooserSignals.java KLineEditSignals.java KListBoxSignals.java KListViewSignals.java KPanelAppletSignals.java KPanelExtensionSignals.java KPopupMenuSignals.java KProcIOSignals.java TDEProcessSignals.java KProgressSignals.java KRecentFilesActionSignals.java KRestrictedLineSignals.java KRootPixmapSignals.java KRunSignals.java KScanDialogSignals.java KSelectActionSignals.java KSelectorSignals.java KShredSignals.java KSpellConfigSignals.java KSpellDlgSignals.java KSpellSignals.java KStatusBarLabelSignals.java KStatusBarSignals.java KSycocaSignals.java KSystemTraySignals.java KTabCtlSignals.java KTextBrowserSignals.java KToggleActionSignals.java KToolBarButtonSignals.java KToolBarSignals.java KURLComboBoxSignals.java KURLLabelSignals.java KURLRequesterSignals.java KXMLGUIFactorySignals.java KXYSelectorSignals.java ListJobSignals.java SlaveSignals.java StatJobSignals.java TransferJobSignals.java KListViewItem.java KTar.java KArchive.java KArchiveDirectory.java KSSLPKCS12.java KArchiveEntry.java KArchiveFile.java KFileMetaInfo.java KFileMetaInfoItem.java KGuiItem.java KIconViewItem.java KStdGuiItem.java KDataTool.java KDataToolAction.java KDataToolInfo.java KDateWidget.java KDirSelectDialog.java KEMailSettings.java KFileFilterCombo.java KFileTreeBranch.java KFileTreeView.java KFileTreeViewItem.java KFileTreeViewToolTip.java KMultipleDrag.java KWordWrap.java KDataToolActionSignals.java KDateWidgetSignals.java KFileFilterComboSignals.java KFileTreeBranchSignals.java KFileTreeViewSignals.java KShortcut.java KKey.java KKeyDialog.java KIO.java Scheduler.java SchedulerSignals.java StatusbarProgress.java ProgressBase.java ProgressBaseSignals.java KKeySequence.java KDockMainWindow.java KDockManager.java KDockManagerSignals.java KDockTabGroup.java KDockWidget.java KDockWidgetSignals.java KURLPixmapProvider.java KAccelAction.java KColor.java KColorCells.java KColorCellsSignals.java KColorDialog.java KColorDialogSignals.java KColorPatch.java KColorPatchSignals.java KHSSelector.java KPaletteTable.java KPaletteTableSignals.java KValueSelector.java DCOPAnswer.java KDE.java KSSLCertDlgRet.java KListAction.java KRecentFilesAction.java KArrowButton.java KDateTimeWidget.java KDateTimeWidgetSignals.java KFindDialog.java KFind.java KFindSignals.java KMultiTabBarButton.java KMultiTabBarButtonSignals.java KMultiTabBarTab.java KPrintAction.java KPrintActionSignals.java KProgressDialog.java KReplaceDialog.java KReplace.java KReplaceSignals.java KURLBarSignals.java KMultiTabBar.java KCatalogue.java KDoubleValidator.java KKeyButton.java KMdiChildArea.java KMdiChildFrmCaption.java KMdiChildFrmDragBeginEvent.java KMdiChildFrmDragEndEvent.java KMdiChildFrm.java KMdiChildFrmMoveEvent.java KMdiChildFrmResizeBeginEvent.java KMdiChildFrmResizeEndEvent.java KMdiChildView.java KMdi.java KMdiMainFrm.java KMdiTaskBarButton.java KMdiTaskBar.java KMdiViewCloseEvent.java KMdiWin32IconButton.java KPasteTextAction.java KStringListValidator.java KTabBar.java KTabWidget.java KTextEdit.java KTimeWidget.java KToggleToolBarAction.java KURLComboRequester.java KMdiChildAreaSignals.java KMdiChildViewSignals.java KMdiMainFrmSignals.java KMdiTaskBarButtonSignals.java KMdiWin32IconButtonSignals.java KTabBarSignals.java KTabWidgetSignals.java KTimeWidgetSignals.java DefaultProgress.java SlaveBase.java KEdit.java KFloatValidator.java KMimeMagic.java KMimeMagicResult.java BrowserInterface.java CSSRule.java CSSRuleList.java CustomNodeFilter.java DavJob.java Document.java DomShared.java EventListener.java Invocation.java KCalendarSystem.java KDirLister.java KFileMetaInfoGroup.java KMimeSourceFactory.java KSharedConfig.java KShellProcess.java KShortcutList.java KSSLCertBox.java KSSLCertChain.java KSSLSession.java KSSLX509V3.java KToggleFullScreenAction.java KURLBarItem.java KURLBar.java KURLBarListBox.java Marchaller.java MetaInfoJob.java Node.java Observer.java PreviewJob.java SlaveInterface.java UIEvent.java KAsyncIO.java KAsyncIOSignals.java KBufferedIO.java KBufferedIOSignals.java AuthInfo.java RenameDlg.java AbstractView.java KInputDialog.java KAuthIconSignals.java KFileViewSignalerSignals.java KKeyButtonSignals.java KLibFactorySignals.java KURLBarListBoxSignals.java MetaInfoJobSignals.java PartSignals.java PreviewJobSignals.java ReadOnlyPartSignals.java ReadWritePartSignals.java SlaveInterfaceSignals.java CSSCharsetRule.java CSSFontFaceRule.java CSSImportRule.java CSSMediaRule.java CSSPageRule.java CSSStyleRule.java CSSUnknownRule.java CSSValueList.java DOMException.java DOMImplementation.java Entity.java EventException.java Factory.java HistoryProvider.java HistoryProviderSignals.java HTMLFormCollection.java KAccelShortcutList.java KActionShortcutList.java KActiveLabel.java KAr.java KCalendarSystemFactory.java TDECModuleInfo.java TDECModuleLoader.java KCMultiDialog.java KCMultiDialogSignals.java TDEConfigGroup.java KCPUInfo.java KCustomMenuEditor.java KDCOPServiceStarter.java KDiskFreeSp.java KDiskFreeSpSignals.java KDockArea.java KDockAreaSignals.java KFilePlugin.java KFileShare.java KFontRequester.java KFontRequesterSignals.java KIDNA.java KKeyNative.java KMD5.java KMimeTypeResolverBase.java KMimeTypeResolverHelper.java KMimeTypeValidator.java KMountPoint.java KOCRDialog.java KOCRDialogSignals.java KPanelAppMenu.java KPanelAppMenuSignals.java KPassivePopup.java KPassivePopupSignals.java KPluginSelector.java KPluginSelectorSignals.java KRegExpEditorInterface.java KServiceSeparator.java KShell.java KSimpleFileFilter.java KSMIMECrypto.java KSpellingHighlighter.java KSSLCertDlg.java KSSLCertificateCache.java KSSLCertificateFactory.java KSSLKeyGen.java KSSLPKCS7.java KSSLSigners.java KSyntaxHighlighter.java KTempDir.java KURLBarItemDialog.java KWidgetAction.java KWindowInfo.java KXMLGUI.java KZipFileEntry.java KZip.java LinkStyle.java LiveConnectExtension.java LiveConnectExtensionSignals.java MultiGetJob.java MultiGetJobSignals.java MutationEvent.java Notation.java PartBase.java PasswordDialog.java Plugin.java RangeException.java SessionData.java SkipDlg.java SkipDlgSignals.java SlaveConfigSignals.java StatusBarExtension.java TextEvent.java KNamedCommand.java PartManager.java PartManagerSignals.java URLArgs.java WindowArgs.java BrowserHostExtension.java BrowserRun.java KAccelActions.java KDockMainWindowSignals.java StoredTransferJob.java +EXTRA_DIST = TDEGlobal.java KMdiToolViewAccessor.java BrowserExtension.java DCOPClient.java DCOPObject.java DCOPObjectInterface.java DCOPObjectProxy.java KAboutApplication.java KAboutContainer.java TDEAboutData.java KAboutDialog.java KAboutKDE.java KAboutPerson.java KAboutWidget.java KAccel.java KAction.java KActionCollection.java KActionMenu.java KActionSeparator.java KAnimWidget.java TDEApplication.java KAudioPlayer.java KAuthIcon.java KBugReport.java KButtonBox.java TDECModule.java KCharSelect.java KCharSelectTable.java KCharsets.java TDECmdLineArgs.java KColorButton.java KColorCombo.java KColorDrag.java KCombiView.java KComboBox.java KCompletion.java KCompletionBase.java KCompletionBaseInterface.java TDEConfig.java TDEConfigBackEnd.java TDEConfigBase.java TDEConfigGroupSaver.java TDEConfigINIBackEnd.java KContextMenuManager.java KCursor.java KDCOPActionProxy.java KDCOPPropertyProxy.java KDEDesktopMimeType.java KDatePicker.java KDateTable.java KDateValidator.java KDesktopFile.java KDialog.java KDialogBase.java KDirOperator.java KDirWatch.java KDockWidgetAbstractHeader.java KDockWidgetAbstractHeaderDrag.java KDockWidgetHeader.java KDockWidgetHeaderDrag.java KDoubleNumInput.java KDualColorButton.java KEdFind.java KEdGotoLine.java KEdReplace.java KEditToolbar.java KEditToolbarWidget.java KEntry.java KEntryKey.java KExecMimeType.java KFile.java KFileDetailView.java KFileDialog.java KFileFilter.java KFileIconView.java KFileIconViewItem.java KFileItem.java KFileListViewItem.java KFilePreview.java KFileView.java KFileViewInterface.java KFileViewSignaler.java KFolderType.java KFontAction.java KFontChooser.java KFontDialog.java KFontSizeAction.java TDEGlobalAccel.java TDEGlobalSettings.java KGradientSelector.java KHTMLPart.java KHTMLSettings.java KHTMLView.java KHelpMenu.java KHistoryCombo.java KIPC.java KIconButton.java KIconCanvas.java KIconDialog.java KIconEffect.java KIconLoader.java KIconView.java KImageEffect.java KImageIO.java TDEInstance.java TDEInstanceInterface.java KIntNumInput.java KIntSpinBox.java KIntValidator.java KJanusWidget.java KKeyChooser.java KLed.java KLibFactory.java KLibLoader.java KLineEdit.java KListBox.java KListView.java KLocale.java KMainWindow.java KMenuBar.java KMessageBox.java KMimeType.java KNotifyClient.java KNumInput.java KOpenWithDlg.java KPalette.java KPanelApplet.java KPanelMenu.java KPasswordDialog.java KPasswordEdit.java KPixmap.java KPixmapEffect.java KPixmapIO.java KPixmapProvider.java KPopupFrame.java KPopupMenu.java KPopupTitle.java KProcIO.java TDEProcess.java TDEProcessController.java TDEProcessRunner.java KProgress.java KProtocolInfo.java KProtocolManager.java KRFCDate.java KRadioAction.java KRandomSequence.java KRecentDocument.java KRestrictedLine.java KRootPermsIcon.java KRootPixmap.java KRootProp.java KRuler.java KRun.java KSSL.java KSSLCertificate.java KSSLCertificateHome.java KSSLConnectionInfo.java KSSLInfoDlg.java KSSLPeerInfo.java KSSLSettings.java KSSLX509Map.java KSaveFile.java KSelectAction.java KSelector.java KSeparator.java KService.java KServiceGroup.java KServiceOffer.java KServiceType.java KServiceTypeProfile.java KSessionManaged.java KShared.java KShellCompletion.java KShred.java KSimpleConfig.java KSpell.java KSpellConfig.java KSpellDlg.java KStandardDirs.java KStaticDeleterBase.java KStatusBar.java KStatusBarLabel.java KStdAccel.java KStdAction.java KStringHandler.java KSycoca.java KSycocaEntry.java KSystemTray.java KTabCtl.java KTempFile.java KTextBrowser.java KToggleAction.java KToolBar.java KToolBarButton.java KToolBarRadioGroup.java KToolBarSeparator.java KTrader.java KURIFilter.java KURIFilterData.java KURIFilterPlugin.java KURL.java KURLComboBox.java KURLCompletion.java KURLDrag.java KURLLabel.java KURLRequester.java KURLRequesterDlg.java KUniqueApplication.java KWizard.java KWritePermsIcon.java KXMLGUIBuilder.java KXMLGUIBuilderInterface.java KXMLGUIClient.java KXMLGUIClientInterface.java KXMLGUIFactory.java KXYSelector.java Part.java PartBaseInterface.java ReadOnlyPart.java NetAccess.java kdejava.java Event.java GUIActivateEvent.java MouseEvent.java OpenURLEvent.java PartActivateEvent.java PartSelectEvent.java ReadWritePart.java DocumentFragment.java DocumentStyle.java DocumentType.java HTMLDocument.java NamedNodeMap.java CSSStyleSheet.java StyleSheet.java CSSException.java CSSPrimitiveValue.java CSSStyleDeclaration.java CSSValue.java Counter.java RGBColor.java Rect.java Element.java HTMLAnchorElement.java HTMLAppletElement.java HTMLAreaElement.java HTMLBRElement.java HTMLBaseElement.java HTMLBaseFontElement.java HTMLBlockquoteElement.java HTMLBodyElement.java HTMLButtonElement.java HTMLCollection.java HTMLDListElement.java HTMLDirectoryElement.java HTMLDivElement.java HTMLElement.java HTMLFieldSetElement.java HTMLFontElement.java HTMLFormElement.java HTMLFrameElement.java HTMLFrameSetElement.java HTMLHRElement.java HTMLHeadElement.java HTMLHeadingElement.java HTMLHtmlElement.java HTMLIFrameElement.java HTMLImageElement.java HTMLInputElement.java HTMLIsIndexElement.java HTMLLIElement.java HTMLLabelElement.java HTMLLegendElement.java HTMLLinkElement.java HTMLMapElement.java HTMLMenuElement.java HTMLMetaElement.java HTMLModElement.java HTMLOListElement.java HTMLObjectElement.java HTMLOptGroupElement.java HTMLOptionElement.java HTMLParagraphElement.java HTMLParamElement.java HTMLPreElement.java HTMLQuoteElement.java HTMLScriptElement.java HTMLSelectElement.java HTMLStyleElement.java HTMLTableCaptionElement.java HTMLTableCellElement.java HTMLTableColElement.java HTMLTableElement.java HTMLTableRowElement.java HTMLTableSectionElement.java HTMLTextAreaElement.java HTMLTitleElement.java HTMLUListElement.java Attr.java DockMainWindow.java MainWindow.java CDATASection.java Comment.java EntityReference.java NodeFilter.java NodeIterator.java ProcessingInstruction.java Range.java Text.java TreeWalker.java CharacterData.java CopyJob.java DeleteJob.java FileCopyJob.java Job.java KDirNotify.java KDirNotifyInterface.java KDirSize.java ListJob.java MimetypeJob.java SimpleJob.java StatJob.java TransferJob.java Connection.java Slave.java KAboutContributor.java KAboutTranslator.java KCodecs.java KCommand.java KCommandHistory.java KCompletionBox.java KDialogQueue.java KEditListBox.java KFilterBase.java KFilterDev.java KFontCombo.java KMacroCommand.java KPanelExtension.java KPixmapSplitter.java KPreviewWidgetBase.java KPushButton.java KScanDialog.java KSqueezedTextLabel.java KToolBarPopupAction.java KTipDatabase.java KTipDialog.java BrowserExtensionSignals.java CopyJobSignals.java DCOPClientSignals.java DeleteJobSignals.java JobSignals.java KAboutContainerSignals.java KAboutContributorSignals.java KAboutDialogSignals.java KAboutWidgetSignals.java KAccelSignals.java KActionCollectionSignals.java KActionSignals.java KAnimWidgetSignals.java TDEApplicationSignals.java TDECModuleSignals.java KCharSelectSignals.java KCharSelectTableSignals.java KColorButtonSignals.java KColorComboSignals.java KComboBoxSignals.java KCommandHistorySignals.java KCompletionBoxSignals.java KCompletionSignals.java KDatePickerSignals.java KDateTableSignals.java KDialogBaseSignals.java KDialogSignals.java KDirListerSignals.java KDirOperatorSignals.java KDirWatchSignals.java KDoubleNumInputSignals.java KDualColorButtonSignals.java KEdFindSignals.java KEdReplaceSignals.java KEditListBoxSignals.java KEditSignals.java KEditToolbarSignals.java KEditToolbarWidgetSignals.java KFileDetailViewSignals.java KFileDialogSignals.java KFileIconViewSignals.java KFilePreviewSignals.java KFontChooserSignals.java KFontDialogSignals.java KFontSizeActionSignals.java KHTMLPartSignals.java KHTMLViewSignals.java KHelpMenuSignals.java KHistoryComboSignals.java KIconButtonSignals.java KIconCanvasSignals.java KIconDialogSignals.java KIconViewSignals.java KIntNumInputSignals.java KJanusWidgetSignals.java KKeyChooserSignals.java KLineEditSignals.java KListBoxSignals.java KListViewSignals.java KPanelAppletSignals.java KPanelExtensionSignals.java KPopupMenuSignals.java KProcIOSignals.java TDEProcessSignals.java KProgressSignals.java KRecentFilesActionSignals.java KRestrictedLineSignals.java KRootPixmapSignals.java KRunSignals.java KScanDialogSignals.java KSelectActionSignals.java KSelectorSignals.java KShredSignals.java KSpellConfigSignals.java KSpellDlgSignals.java KSpellSignals.java KStatusBarLabelSignals.java KStatusBarSignals.java KSycocaSignals.java KSystemTraySignals.java KTabCtlSignals.java KTextBrowserSignals.java KToggleActionSignals.java KToolBarButtonSignals.java KToolBarSignals.java KURLComboBoxSignals.java KURLLabelSignals.java KURLRequesterSignals.java KXMLGUIFactorySignals.java KXYSelectorSignals.java ListJobSignals.java SlaveSignals.java StatJobSignals.java TransferJobSignals.java KListViewItem.java KTar.java KArchive.java KArchiveDirectory.java KSSLPKCS12.java KArchiveEntry.java KArchiveFile.java KFileMetaInfo.java KFileMetaInfoItem.java KGuiItem.java KIconViewItem.java KStdGuiItem.java KDataTool.java KDataToolAction.java KDataToolInfo.java KDateWidget.java KDirSelectDialog.java KEMailSettings.java KFileFilterCombo.java KFileTreeBranch.java KFileTreeView.java KFileTreeViewItem.java KFileTreeViewToolTip.java KMultipleDrag.java KWordWrap.java KDataToolActionSignals.java KDateWidgetSignals.java KFileFilterComboSignals.java KFileTreeBranchSignals.java KFileTreeViewSignals.java KShortcut.java KKey.java KKeyDialog.java KIO.java Scheduler.java SchedulerSignals.java StatusbarProgress.java ProgressBase.java ProgressBaseSignals.java KKeySequence.java KDockMainWindow.java KDockManager.java KDockManagerSignals.java KDockTabGroup.java KDockWidget.java KDockWidgetSignals.java KURLPixmapProvider.java KAccelAction.java KColor.java KColorCells.java KColorCellsSignals.java KColorDialog.java KColorDialogSignals.java KColorPatch.java KColorPatchSignals.java KHSSelector.java KPaletteTable.java KPaletteTableSignals.java KValueSelector.java DCOPAnswer.java KDE.java KSSLCertDlgRet.java KListAction.java KRecentFilesAction.java KArrowButton.java KDateTimeWidget.java KDateTimeWidgetSignals.java KFindDialog.java KFind.java KFindSignals.java KMultiTabBarButton.java KMultiTabBarButtonSignals.java KMultiTabBarTab.java KPrintAction.java KPrintActionSignals.java KProgressDialog.java KReplaceDialog.java KReplace.java KReplaceSignals.java KURLBarSignals.java KMultiTabBar.java KCatalogue.java KDoubleValidator.java KKeyButton.java KMdiChildArea.java KMdiChildFrmCaption.java KMdiChildFrmDragBeginEvent.java KMdiChildFrmDragEndEvent.java KMdiChildFrm.java KMdiChildFrmMoveEvent.java KMdiChildFrmResizeBeginEvent.java KMdiChildFrmResizeEndEvent.java KMdiChildView.java KMdi.java KMdiMainFrm.java KMdiTaskBarButton.java KMdiTaskBar.java KMdiViewCloseEvent.java KMdiWin32IconButton.java KPasteTextAction.java KStringListValidator.java KTabBar.java KTabWidget.java KTextEdit.java KTimeWidget.java KToggleToolBarAction.java KURLComboRequester.java KMdiChildAreaSignals.java KMdiChildViewSignals.java KMdiMainFrmSignals.java KMdiTaskBarButtonSignals.java KMdiWin32IconButtonSignals.java KTabBarSignals.java KTabWidgetSignals.java KTimeWidgetSignals.java DefaultProgress.java SlaveBase.java KEdit.java KFloatValidator.java KMimeMagic.java KMimeMagicResult.java BrowserInterface.java CSSRule.java CSSRuleList.java CustomNodeFilter.java DavJob.java Document.java DomShared.java EventListener.java Invocation.java KCalendarSystem.java KDirLister.java KFileMetaInfoGroup.java KMimeSourceFactory.java KSharedConfig.java KShellProcess.java KShortcutList.java KSSLCertBox.java KSSLCertChain.java KSSLSession.java KSSLX509V3.java KToggleFullScreenAction.java KURLBarItem.java KURLBar.java KURLBarListBox.java Marchaller.java MetaInfoJob.java Node.java Observer.java PreviewJob.java SlaveInterface.java UIEvent.java KAsyncIO.java KAsyncIOSignals.java TDEBufferedIO.java TDEBufferedIOSignals.java AuthInfo.java RenameDlg.java AbstractView.java KInputDialog.java KAuthIconSignals.java KFileViewSignalerSignals.java KKeyButtonSignals.java KLibFactorySignals.java KURLBarListBoxSignals.java MetaInfoJobSignals.java PartSignals.java PreviewJobSignals.java ReadOnlyPartSignals.java ReadWritePartSignals.java SlaveInterfaceSignals.java CSSCharsetRule.java CSSFontFaceRule.java CSSImportRule.java CSSMediaRule.java CSSPageRule.java CSSStyleRule.java CSSUnknownRule.java CSSValueList.java DOMException.java DOMImplementation.java Entity.java EventException.java Factory.java HistoryProvider.java HistoryProviderSignals.java HTMLFormCollection.java KAccelShortcutList.java KActionShortcutList.java KActiveLabel.java KAr.java KCalendarSystemFactory.java TDECModuleInfo.java TDECModuleLoader.java KCMultiDialog.java KCMultiDialogSignals.java TDEConfigGroup.java KCPUInfo.java KCustomMenuEditor.java KDCOPServiceStarter.java KDiskFreeSp.java KDiskFreeSpSignals.java KDockArea.java KDockAreaSignals.java KFilePlugin.java KFileShare.java KFontRequester.java KFontRequesterSignals.java KIDNA.java KKeyNative.java KMD5.java KMimeTypeResolverBase.java KMimeTypeResolverHelper.java KMimeTypeValidator.java KMountPoint.java KOCRDialog.java KOCRDialogSignals.java KPanelAppMenu.java KPanelAppMenuSignals.java KPassivePopup.java KPassivePopupSignals.java KPluginSelector.java KPluginSelectorSignals.java KRegExpEditorInterface.java KServiceSeparator.java KShell.java KSimpleFileFilter.java KSMIMECrypto.java KSpellingHighlighter.java KSSLCertDlg.java KSSLCertificateCache.java KSSLCertificateFactory.java KSSLKeyGen.java KSSLPKCS7.java KSSLSigners.java KSyntaxHighlighter.java KTempDir.java KURLBarItemDialog.java KWidgetAction.java KWindowInfo.java KXMLGUI.java KZipFileEntry.java KZip.java LinkStyle.java LiveConnectExtension.java LiveConnectExtensionSignals.java MultiGetJob.java MultiGetJobSignals.java MutationEvent.java Notation.java PartBase.java PasswordDialog.java Plugin.java RangeException.java SessionData.java SkipDlg.java SkipDlgSignals.java SlaveConfigSignals.java StatusBarExtension.java TextEvent.java KNamedCommand.java PartManager.java PartManagerSignals.java URLArgs.java WindowArgs.java BrowserHostExtension.java BrowserRun.java KAccelActions.java KDockMainWindowSignals.java StoredTransferJob.java ####### tdevelop will overwrite this part!!! (end)############ diff --git a/kdejava/koala/org/kde/koala/TDECModule.java b/kdejava/koala/org/kde/koala/TDECModule.java new file mode 100644 index 00000000..3f26535e --- /dev/null +++ b/kdejava/koala/org/kde/koala/TDECModule.java @@ -0,0 +1,275 @@ +//Auto-generated by kalyptus. DO NOT EDIT. +package org.kde.koala; + +import org.kde.qt.Qt; +import org.kde.qt.TQMetaObject; +import org.kde.qt.QtSupport; +import org.kde.qt.TQWidget; +import org.kde.qt.TQWidget; + +/** + + The base class for control center modules. + Starting from KDE 2.0, control center modules are realized as shared + libraries that are loaded into the control center at runtime. + The module in principle is a simple widget displaying the + item to be changed. The module has a very small interface. + All the necessary glue logic and the GUI bells and whistles + are provided by the control center and must not concern + the module author. + To write a config module, you have to create a library + that contains at one factory function like this: +
    + #include 
    + typedef KGenericFactory YourTDECModuleFactory;
    + K_EXPORT_COMPONENT_FACTORY( yourLibName, YourTDECModuleFactory("name_of_the_po_file") );
    + 
    + The parameter "name_of_the_po_file" has to correspond with the messages target + that you created in your Makefile.am. + See http://developer.kde.org/documentation/other/kcm_howto.html + for more detailed documentation. + See {@link TDECModuleSignals} for signals emitted by TDECModule + @author Matthias Hoelzer-Kluepfel + + @short The base class for control center modules. + +*/ +public class TDECModule extends TQWidget { + protected TDECModule(Class dummy){super((Class) null);} + /** + An enumeration type for the buttons used by this module. + You should only use Help, Default and Apply. The rest is obsolete. + @short An enumeration type for the buttons used by this module. + @see TDECModule#buttons + @see @see + @see TDECModule#setButtons + */ + public static final int Help = 1; + public static final int Default = 2; + public static final int Apply = 16; + public static final int Reset = 4; + public static final int Cancel = 8; + public static final int Ok = 32; + public static final int SysDefault = 64; + + public native TQMetaObject metaObject(); + public native String className(); + public TDECModule(TQWidget parent, String name, String[] args) { + super((Class) null); + newTDECModule(parent,name,args); + } + private native void newTDECModule(TQWidget parent, String name, String[] args); + public TDECModule(TQWidget parent, String name) { + super((Class) null); + newTDECModule(parent,name); + } + private native void newTDECModule(TQWidget parent, String name); + public TDECModule(TQWidget parent) { + super((Class) null); + newTDECModule(parent); + } + private native void newTDECModule(TQWidget parent); + public TDECModule() { + super((Class) null); + newTDECModule(); + } + private native void newTDECModule(); + public TDECModule(TDEInstanceInterface instance, TQWidget parent, String[] args) { + super((Class) null); + newTDECModule(instance,parent,args); + } + private native void newTDECModule(TDEInstanceInterface instance, TQWidget parent, String[] args); + public TDECModule(TDEInstanceInterface instance, TQWidget parent) { + super((Class) null); + newTDECModule(instance,parent); + } + private native void newTDECModule(TDEInstanceInterface instance, TQWidget parent); + public TDECModule(TDEInstanceInterface instance) { + super((Class) null); + newTDECModule(instance); + } + private native void newTDECModule(TDEInstanceInterface instance); + /** + Load the configuration data into the module. + The load method sets the user interface elements of the + module to reflect the current settings stored in the + configuration files. + This method is invoked whenever the module should read its configuration + (most of the times from a config file) and update the user interface. + This happens when the user clicks the "Reset" button in the control + center, to undo all of his changes and restore the currently valid + settings. + If you use TDEConfigXT, loading is taken care of automatically and + you do not need to do it manually. However, if you for some reason reimplement it and + also are using TDEConfigXT, you must call this function otherwise the loading of TDEConfigXT + options will not work. + @short Load the configuration data into the module. + */ + public native void load(); + /** + Save the configuration data. + The save method stores the config information as shown + in the user interface in the config files. + If necessary, this method also updates the running system, + e.g. by restarting applications. This normally does not apply for + KSettings.Dialog modules where the updating is taken care of by + KSettings.Dispatcher. + save is called when the user clicks "Apply" or "Ok". + If you use TDEConfigXT, saving is taken care off automatically and + you do not need to load manually. However, if you for some reason reimplement it and + also are using TDEConfigXT, you must call this function, otherwise the saving of TDEConfigXT + options will not work. Call it at the very end of your reimplementation, to avoid + changed() signals getting emitted when you modify widgets. + @short Save the configuration data. + */ + public native void save(); + /** + Sets the configuration to sensible default values. + This method is called when the user clicks the "Default" + button. It should set the display to useful values. + If you use TDEConfigXT, you do not have to reimplement this function since + the fetching and settings of default values is done automatically. However, if you + reimplement and also are using TDEConfigXT, remember to call the base function at the + very end of your reimplementation. + @short Sets the configuration to sensible default values. + */ + public native void defaults(); + /** + Set the configuration to system default values. + This method is called when the user clicks the "System-Default" + button. It should set the display to the system default values. + @note The default behavior is to call defaults(). + @short Set the configuration to system default values. + */ + public native void sysdefaults(); + /** + Return a tquick-help text. + This method is called when the module is docked. + The tquick-help text should contain a short description of the module and + links to the module's help files. You can use TQML formatting tags in the text. + @note make sure the tquick help text gets translated (use i18n()). + @short Return a tquick-help text. + */ + public native String quickHelp(); + /** + This is generally only called for the KBugReport. + If you override you should have it return a pointer to a constant. + @return the TDEAboutData for this module + + @short This is generally only called for the KBugReport. + */ + public native TDEAboutData aboutData(); + /** + This sets the TDEAboutData returned by aboutData() + @short This sets the TDEAboutData returned by aboutData() + */ + public native void setAboutData(TDEAboutData about); + /** + Indicate which buttons will be used. + The return value is a value or'ed together from + the Button enumeration type. + @short Indicate which buttons will be used. + @see TDECModule#setButtons + */ + public native int buttons(); + /** + Get the RootOnly message for this module. + When the module must be run as root, or acts differently + for root and a normal user, it is sometimes useful to + customize the message that appears at the top of the module + when used as a normal user. This function returns this + customized message. If none has been set, a default message + will be used. + @short Get the RootOnly message for this module. + @see TDECModule#setRootOnlyMsg + */ + public native String rootOnlyMsg(); + /** + Tell if KControl should show a RootOnly message when run as + a normal user. + In some cases, the module don't want a RootOnly message to + appear (for example if it has already one). This function + tells KControl if a RootOnly message should be shown + @short Tell if KControl should show a RootOnly message when run as a normal user. + @see TDECModule#setUseRootOnlyMsg + */ + public native boolean useRootOnlyMsg(); + public native TDEInstanceInterface instance(); + /** + @return a list of @ref TDEConfigDialogManager's in use, if any. + + @short + */ + // const TQPtrList& configs(); >>>> NOT CONVERTED + /** + Adds a TDEConfigskeleton config to watch the widget widget + This function is useful if you need to handle multiple configuration files. + @param config the TDEConfigSkeleton to use + @param widget the widget to watch + @return a pointer to the TDEConfigDialogManager in use + + @short Adds a TDEConfigskeleton config to watch the widget widget + */ + // TDEConfigDialogManager* addConfig(TDEConfigSkeleton* arg1,TQWidget* arg2); >>>> NOT CONVERTED + /** + Sets the tquick help. + @short Sets the tquick help. + */ + protected native void setQuickHelp(String help); + /** + Sets the buttons to display. + Help: shows a "Help" button. + Default: shows a "Use Defaults" button + Apply: in kcontrol this will show an "Apply" and "Reset" button + in kcmshell this will show an "Ok", "Apply" and "Cancel" button + If Apply is not specified, kcmshell will show a "Close" button. + @short Sets the buttons to display. + @see TDECModule#buttons + */ + protected native void setButtons(int btn); + /** + Sets the RootOnly message. + This message will be shown at the top of the module of the + corresponding desktop file contains the line X-TDE-RootOnly=true. + If no message is set, a default one will be used. + @short Sets the RootOnly message. + @see TDECModule#rootOnlyMsg + */ + protected native void setRootOnlyMsg(String msg); + /** + Change whether or not the RootOnly message should be shown. + Following the value of on, the RootOnly message will be + shown or not. + @short Change whether or not the RootOnly message should be shown. + @see TDECModule#useRootOnlyMsg + */ + protected native void setUseRootOnlyMsg(boolean on); + /** + Returns the changed state of automatically managed widgets in this dialog + @short Returns the changed state of automatically managed widgets in this dialog + */ + protected native boolean managedWidgetChangeState(); + /** + Call this method when your manually managed widgets change state between + changed and not changed + @short Call this method when your manually managed widgets change state between changed and not changed + */ + protected native void unmanagedWidgetChangeState(boolean arg1); + /** + Calling this slot is equivalent to emitting changed(true). + @short Calling this slot is equivalent to emitting changed(true). + */ + protected native void changed(); + /** + A managed widget was changed, the widget settings and the current + settings are compared and a corresponding changed() signal is emitted + @short A managed widget was changed, the widget settings and the current settings are compared and a corresponding changed() signal is emitted + */ + protected native void widgetChanged(); + /** Deletes the wrapped C++ instance */ + protected native void finalize() throws InternalError; + /** Delete the wrapped C++ instance ahead of finalize() */ + public native void dispose(); + /** Has the wrapped C++ instance been deleted? */ + public native boolean isDisposed(); +} diff --git a/kdejava/koala/org/kde/koala/TDECModuleInfo.java b/kdejava/koala/org/kde/koala/TDECModuleInfo.java new file mode 100644 index 00000000..c1461b1c --- /dev/null +++ b/kdejava/koala/org/kde/koala/TDECModuleInfo.java @@ -0,0 +1,231 @@ +//Auto-generated by kalyptus. DO NOT EDIT. +package org.kde.koala; + +import org.kde.qt.Qt; +import org.kde.qt.QtSupport; +import java.util.ArrayList; + +/** + + A class that provides information about a TDECModule + TDECModuleInfo provides various technical information, such as icon, library + etc. about a TDECModule.n + @note Any values set with the set functions is not + written back with TDECModuleInfo it only reads value from the desktop file. + @author Daniel Molkentin + + @short A class that provides information about a TDECModule + +*/ +public class TDECModuleInfo implements QtSupport { + private long _qt; + private boolean _allocatedInJavaWorld = true; + protected TDECModuleInfo(Class dummy){} + + /** + Constructs a TDECModuleInfo. + @note a TDECModuleInfo object will have to be manually deleted, it is not + done automatically for you. + @param desktopFile the desktop file representing the module, or + the name of the module. + @short Constructs a TDECModuleInfo. + */ + public TDECModuleInfo(String desktopFile) { + newTDECModuleInfo(desktopFile); + } + private native void newTDECModuleInfo(String desktopFile); + /** + Same as above but takes a KService.Ptr as argument. + @note moduleInfo must be a valid pointer. + @param moduleInfo specifies the module + @short Same as above but takes a KService.Ptr as argument. + */ + // TDECModuleInfo* TDECModuleInfo(KService::Ptr arg1); >>>> NOT CONVERTED + /** + Same as above but takes a TDECModuleInfo as argument. + @param rhs specifies the module + @short Same as above but takes a TDECModuleInfo as argument. + */ + public TDECModuleInfo(TDECModuleInfo rhs) { + newTDECModuleInfo(rhs); + } + private native void newTDECModuleInfo(TDECModuleInfo rhs); + /** + Same as above but creates an empty TDECModuleInfo. + You should not normally call this. + @short Same as above but creates an empty TDECModuleInfo. + */ + public TDECModuleInfo() { + newTDECModuleInfo(); + } + private native void newTDECModuleInfo(); + /** + Equal operator + @return true if rhs equals itself + + @short Equal operator + */ + public native boolean op_equals(TDECModuleInfo rhs); + /** + @return true if rhs is not equal itself + + @short + */ + public native boolean op_not_equals(TDECModuleInfo rhs); + /** + @return the filename of the .desktop file that describes the KCM + + @short + */ + public native String fileName(); + /** + @return the keywords associated with this KCM. + + @short + */ + public native ArrayList keywords(); + /** + Returns the module's factory name, if it's set. If not, the library + name is returned. + @return the module's factory name + + @short Returns the module's factory name, if it's set. + */ + public native String factoryName(); + /** + @return the module\'s (translated) name + + @short + */ + public native String moduleName(); + /** + @return a KSharedPtr to KService created from the modules .desktop file + + @short + */ + // KService::Ptr service(); >>>> NOT CONVERTED + /** + @return the module's (translated) comment field + + @short + */ + public native String comment(); + /** + @return the module's icon name + + @short + */ + public native String icon(); + /** + @return the path of the module's documentation + + @short + */ + public native String docPath(); + /** + @return the library name + + @short + */ + public native String library(); + /** + @return a handle (usually the contents of the FactoryName field) + + @short + */ + public native String handle(); + /** + @return the weight of the module which determines the order of the pages in + the KCMultiDialog. It's set by the X-TDE-Weight field. + + @short + */ + public native int weight(); + /** + @return whether the module might require root permissions + + @short + */ + public native boolean needsRootPrivileges(); + /** + @return true if the module should be conditionally + loaded. + + @short + */ + public native boolean needsTest(); + /** + Sets the object's keywords. + @param keyword the new keywords + @short Sets the object's keywords. + */ + protected native void setKeywords(String[] keyword); + /** + Sets the object's name. + @param name the new name + @short Sets the object's name. + */ + protected native void setName(String name); + /** + Sets the object's name. + @param comment the new comment + @short Sets the object's name. + */ + protected native void setComment(String comment); + /** + Sets the object's icon. + @param icon the name of the new icon + @short Sets the object's icon. + */ + protected native void setIcon(String icon); + /** + Set the object's library + @param lib the name of the new library without any extensions or prefixs. + @short Set the object's library + */ + protected native void setLibrary(String lib); + /** + Sets the factory name + @param handle The new factory name + @short Sets the factory name + */ + protected native void setHandle(String handle); + /** + Sets the object's weight property which determines in what + order modules will be displayed. Default is 100. + @param weight the new weight + @short Sets the object's weight property which determines in what order modules will be displayed. + */ + protected native void setWeight(int weight); + /** + Sets if the module should be tested for loading. + @param val the value to set + @short Sets if the module should be tested for loading. + */ + protected native void setNeedsTest(boolean val); + /** + Toggles whether the represented module needs root privileges. + Use with caution. + @param needsRootPrivileges if module needs root privilges + @short Toggles whether the represented module needs root privileges. + */ + protected native void setNeedsRootPrivileges(boolean needsRootPrivileges); + /** + Sets the object's documentation path + @param p the new documentation path + @short Sets the object's documentation path + */ + protected native void setDocPath(String p); + /** + Reads the service entries specific for TDECModule from the desktop file. + The usual desktop entries are read in init. + @short Reads the service entries specific for TDECModule from the desktop file. + */ + protected native void loadAll(); + /** Deletes the wrapped C++ instance */ + protected native void finalize() throws InternalError; + /** Delete the wrapped C++ instance ahead of finalize() */ + public native void dispose(); + /** Has the wrapped C++ instance been deleted? */ + public native boolean isDisposed(); +} diff --git a/kdejava/koala/org/kde/koala/TDECModuleLoader.java b/kdejava/koala/org/kde/koala/TDECModuleLoader.java new file mode 100644 index 00000000..926a5088 --- /dev/null +++ b/kdejava/koala/org/kde/koala/TDECModuleLoader.java @@ -0,0 +1,120 @@ +//Auto-generated by kalyptus. DO NOT EDIT. +package org.kde.koala; + +import org.kde.qt.Qt; +import org.kde.qt.QtSupport; +import org.kde.qt.TQWidget; + +/** + + @class Loads a KControl Module. + TDECModuleLoader tries in several ways + to locate and load a TDECModule. If loading fails a + zero pointer is returned. \n + It is very unlikely TDECModuleLoader is what you want + and {@link TDECModuleProxy} suits your needs. + @author Frans Englich + + @short @class Loads a KControl Module. + +*/ +public class TDECModuleLoader implements QtSupport { + private long _qt; + private boolean _allocatedInJavaWorld = true; + protected TDECModuleLoader(Class dummy){} + + /** + Determines the way errors are reported + @short Determines the way errors are reported + */ + public static final int None = 0; + public static final int Inline = 1; + public static final int Dialog = 2; + public static final int Both = 3; + + public TDECModuleLoader() { + newTDECModuleLoader(); + } + private native void newTDECModuleLoader(); + /** + Loads a {@link TDECModule}. If loading fails a zero pointer is returned. + @param module what module to load + @param report see ErrorReporting + @param withFallback if true and loading failed a separate window + with the module may appear and a zero pointer is a returned + @return a pointer to the loaded @ref TDECModule + + @short Loads a @ref TDECModule. + */ + public static native TDECModule loadModule(TDECModuleInfo module, int report, boolean withFallback, TQWidget parent, String name, String[] args); + public static native TDECModule loadModule(TDECModuleInfo module, int report, boolean withFallback, TQWidget parent, String name); + public static native TDECModule loadModule(TDECModuleInfo module, int report, boolean withFallback, TQWidget parent); + public static native TDECModule loadModule(TDECModuleInfo module, int report, boolean withFallback); + public static native TDECModule loadModule(TDECModuleInfo module, int report); + /** + Loads a {@link TDECModule}. If loading fails a zero pointer is returned. + @param module what module to load + @param report see ErrorReporting + with the module may appear and a zero pointer is a returned + @return a pointer to the loaded @ref TDECModule + + @short Loads a @ref TDECModule. + */ + public static native TDECModule loadModule(String module, int report, TQWidget parent, String name, String[] args); + public static native TDECModule loadModule(String module, int report, TQWidget parent, String name); + public static native TDECModule loadModule(String module, int report, TQWidget parent); + public static native TDECModule loadModule(String module, int report); + /** + Unloads the module's library + @param mod What module to unload for + @short Unloads the module's library + */ + public static native void unloadModule(TDECModuleInfo mod); + /** + Checks whether an TDECModule should be shown by running its + test function. If it is unsure whether a module should be shown, it should + be made available, leaving the decision to the user. + If false is returned, the module should not be loaded in any interface. + A module declares it needs to be tested by having "X-TDE-Test-Module=true" in + its desktop file. When that line exists, the following code must be available + in the module's library: +
    +		 extern "C"
    +		 {
    +		    boolean test_moduleName()
    +		    {
    +		      // Code testing for hardware/software presence.
    +		      return true; // and the modue will be loaded.
    +		    }
    +			 }
    +		 
    + where moduleName is the library name for the module. + @param module the module to check + @return true if the module should be loaded + + @short Checks whether an TDECModule should be shown by running its test function. + */ + public static native boolean testModule(String module); + /** + Convenience function, essentially the same as above. + @param module the module to check + @return true if the module should be loaded + + @short Convenience function, essentially the same as above. + */ + public static native boolean testModule(TDECModuleInfo module); + /** + Returns a TDECModule containing the messages report and text. + @param report the type of error reporting, see ErrorReporting + @param text the main message + @param details any additional details + @short Returns a TDECModule containing the messages report and text. + */ + public static native TDECModule reportError(int report, String text, String details, TQWidget parent); + /** Deletes the wrapped C++ instance */ + protected native void finalize() throws InternalError; + /** Delete the wrapped C++ instance ahead of finalize() */ + public native void dispose(); + /** Has the wrapped C++ instance been deleted? */ + public native boolean isDisposed(); +} diff --git a/kdejava/koala/org/kde/koala/TDECModuleSignals.java b/kdejava/koala/org/kde/koala/TDECModuleSignals.java new file mode 100644 index 00000000..fe4bfa22 --- /dev/null +++ b/kdejava/koala/org/kde/koala/TDECModuleSignals.java @@ -0,0 +1,25 @@ +//Auto-generated by kalyptus. DO NOT EDIT. +package org.kde.koala; + +import org.kde.qt.TQMetaObject; +import org.kde.qt.QtSupport; +import org.kde.qt.TQWidget; + +public interface TDECModuleSignals { + /** + Indicate that the state of the modules contents has changed. + This signal is emitted whenever the state of the configuration + shown in the module changes. It allows the control center to + keep track of unsaved changes. + @short Indicate that the state of the modules contents has changed. + */ + void changed(boolean state); + /** + Indicate that the module's tquickhelp has changed. + Emit this signal whenever the module's tquickhelp changes. + Modules implemented as tabbed dialogs might want to implement + per-tab tquickhelp for example. + @short Indicate that the module's tquickhelp has changed. + */ + void quickHelpChanged(); +} diff --git a/kdejava/koala/org/kde/koala/TDEConfig.java b/kdejava/koala/org/kde/koala/TDEConfig.java new file mode 100644 index 00000000..9eedc94d --- /dev/null +++ b/kdejava/koala/org/kde/koala/TDEConfig.java @@ -0,0 +1,232 @@ +//Auto-generated by kalyptus. DO NOT EDIT. +package org.kde.koala; + +import org.kde.qt.Qt; +import org.kde.qt.TQMetaObject; +import org.kde.qt.QtSupport; +import java.util.ArrayList; + +/** + + Access KDE Configuration entries. + This class implements KDE's default configuration system. + @author Kalle Dalheimer , Preston Brown + + @short KDE Configuration Management class. + @see TDEGlobal#config + @see TDEConfigBase + @see KSimpleConfig + +*/ +public class TDEConfig extends TDEConfigBase { + protected TDEConfig(Class dummy){super((Class) null);} + public native TQMetaObject metaObject(); + public native String className(); + /** + Constructs a TDEConfig object. + @param fileName A file to parse in addition to the + system-wide file(s). If it is not provided, only global + KDE configuration data will be read (depending on the value of + bUseKDEGlobals). + @param bReadOnly Set the config object's read-only status. Note that the + object will automatically become read-only if either the user does not have + write permission to fileName or if no file was specified. + @param bUseKDEGlobals Toggle reading the global KDE configuration file. + @param resType the place to look in (config, data, etc) See KStandardDirs. + @short Constructs a TDEConfig object. + */ + public TDEConfig(String fileName, boolean bReadOnly, boolean bUseKDEGlobals, String resType) { + super((Class) null); + newTDEConfig(fileName,bReadOnly,bUseKDEGlobals,resType); + } + private native void newTDEConfig(String fileName, boolean bReadOnly, boolean bUseKDEGlobals, String resType); + public TDEConfig(String fileName, boolean bReadOnly, boolean bUseKDEGlobals) { + super((Class) null); + newTDEConfig(fileName,bReadOnly,bUseKDEGlobals); + } + private native void newTDEConfig(String fileName, boolean bReadOnly, boolean bUseKDEGlobals); + public TDEConfig(String fileName, boolean bReadOnly) { + super((Class) null); + newTDEConfig(fileName,bReadOnly); + } + private native void newTDEConfig(String fileName, boolean bReadOnly); + public TDEConfig(String fileName) { + super((Class) null); + newTDEConfig(fileName); + } + private native void newTDEConfig(String fileName); + public TDEConfig() { + super((Class) null); + newTDEConfig(); + } + private native void newTDEConfig(); + public TDEConfig(TDEConfigBackEnd backEnd, boolean bReadOnly) { + super((Class) null); + newTDEConfig(backEnd,bReadOnly); + } + private native void newTDEConfig(TDEConfigBackEnd backEnd, boolean bReadOnly); + public TDEConfig(TDEConfigBackEnd backEnd) { + super((Class) null); + newTDEConfig(backEnd); + } + private native void newTDEConfig(TDEConfigBackEnd backEnd); + /** + Clears all entries out of the dirtyEntryMap, so the + values will not be written to disk on a later call to + sync(). + @param bDeep If true, the dirty map is actually emptied. + otherwise, the config object's global dirty flag is set to + false, but the dirty entries remain in the dirty entry + map. + @short Clears all entries out of the dirtyEntryMap, so the values will not be written to disk on a later call to sync(). + @see TDEConfigBase#rollback + */ + public native void rollback(boolean bDeep); + public native void rollback(); + /** + Returns a list of groups that are known. + @return a list of of groups + + @short Returns a list of groups that are known. + */ + public native ArrayList groupList(); + /** + Returns a map (tree) of entries for all entries in a particular + group. + Only the actual entry string is returned, none of the + other internal data should be included. + @param pGroup A group to get keys from. + @return A map of entries in the group specified, indexed by key. + The returned map may be empty if the group is not found. + + @short Returns a map (tree) of entries for all entries in a particular group. + */ + // TQMap entryMap(const TQString& arg1); >>>> NOT CONVERTED + /** + Clears all internal data structures and then reread + configuration information from disk. + @short Clears all internal data structures and then reread configuration information from disk. + */ + public native void reparseConfiguration(); + /** + Set the file mode for newly created files. + @param mode the mode for new files as described in chmod(2) + @short Set the file mode for newly created files. + @see #man:chmod(2) + @see #for + @see #a + @see #description + @see #of + @see @see #mode + */ + public native void setFileWriteMode(int mode); + /** + Forces all following write-operations being performed on kdeglobals, + independent of the bGlobal flag in writeEntry(). + @param force true to force writing in kdeglobals + @short Forces all following write-operations being performed on kdeglobals, independent of the bGlobal flag in writeEntry(). + @see #forceGlobal + */ + public native void setForceGlobal(boolean force); + /** + Returns true if all entries are being written into kdeglobals. + @return true if all entries are being written into kdeglobals + + @short Returns true if all entries are being written into kdeglobals. + @see #setForceGlobal + */ + public native boolean forceGlobal(); + /** + Checks whether the config file contains the update id + as contained in updateFile. If not, it runs kconf_update + to update the config file. + If you install config update files with critical fixes + you may wish to use this method to verify that a critical + update has indeed been performed to catch the case where + a user restores an old config file from backup that has + not been updated yet. + @param id the update to check + @param updateFile the file containing the update + @short Checks whether the config file contains the update id as contained in updateFile. + */ + public native void checkUpdate(String id, String updateFile); + /** + Copies all entries from this config object to a new config + object that will save itself to file. + Actual saving to file happens when the returned object is + destructed or when sync() is called upon it. + @param file the new config object will save itself to. + @param config optional config object to reuse + @short Copies all entries from this config object to a new config object that will save itself to file. + */ + public native TDEConfig copyTo(String file, TDEConfig config); + public native TDEConfig copyTo(String file); + /** + Returns a lock file object for the configuration file or 0 if + the backend does not support locking. + @param bGlobal if true, return the lock file for the global config file + NOTE: TDEConfig.sync() requires a lock on both the normal and global + config file. When calling TDEConfig.sync() while having a lock on the + global config file, the normal config file MUST be locked AS WELL and the + normal config file MUST be locked BEFORE the global config file! + Otherwise there is a risk of deadlock. + @short Returns a lock file object for the configuration file or 0 if the backend does not support locking. + */ + // KLockFile::Ptr lockFile(bool arg1); >>>> NOT CONVERTED + // KLockFile::Ptr lockFile(); >>>> NOT CONVERTED + /** + Returns true if the specified group is known. + @param group The group to search for. + @return true if the group exists. + + @short Returns true if the specified group is known. + */ + protected native boolean internalHasGroup(String group); + /** + Returns a map (tree) of the entries in the specified group. + Do not use this function, the implementation / return type are + subject to change. + @param pGroup the group to provide a KEntryMap for. + @return The map of the entries in the group. + + @short + */ + // KEntryMap internalEntryMap(const TQString& arg1); >>>> NOT CONVERTED + /** + Returns a copy of the internal map used to hold all entries. + Do not use this function, the implementation / return type are + subject to change. + @return The map of the entries in the group. + + @short + */ + // KEntryMap internalEntryMap(); >>>> NOT CONVERTED + /** + Inserts a (key, value) pair into the internal storage mechanism of + the configuration object. + @param _key The key to insert. It contains information both on + the group of the key and the key itself. If the key already + exists, the old value will be replaced. + @param _data the KEntry that is to be stored. + @param _checkGroup When false, assume that the group already exists. + @short Inserts a (key, value) pair into the internal storage mechanism of the configuration object. + */ + protected native void putData(KEntryKey _key, KEntry _data, boolean _checkGroup); + protected native void putData(KEntryKey _key, KEntry _data); + /** + Looks up an entry in the config object's internal structure. + @param _key The key to look up It contains information both on + the group of the key and the entry's key itself. + @return the KEntry value (data) found for the key. KEntry.aValue + will be the null string if nothing was located. + + @short Looks up an entry in the config object's internal structure. + */ + protected native KEntry lookupData(KEntryKey _key); + /** Deletes the wrapped C++ instance */ + protected native void finalize() throws InternalError; + /** Delete the wrapped C++ instance ahead of finalize() */ + public native void dispose(); + /** Has the wrapped C++ instance been deleted? */ + public native boolean isDisposed(); +} diff --git a/kdejava/koala/org/kde/koala/TDEConfigBackEnd.java b/kdejava/koala/org/kde/koala/TDEConfigBackEnd.java new file mode 100644 index 00000000..b708f574 --- /dev/null +++ b/kdejava/koala/org/kde/koala/TDEConfigBackEnd.java @@ -0,0 +1,120 @@ +//Auto-generated by kalyptus. DO NOT EDIT. +package org.kde.koala; + +import org.kde.qt.Qt; +import org.kde.qt.QtSupport; + +/** + + Abstract base class for KDE configuration file loading/saving. + This class forms the base for all classes that implement some + manner of loading/saving to configuration files. It is an + abstract base class, meaning that you cannot directly instantiate + objects of this class. As of right now, the only back end available + is one to read/write to INI-style files, but in the future, other + formats may be available, such as XML or a database. + @author Preston Brown , + Matthias Kalle Dalheimer + + @short KDE Configuration file loading/saving abstract base class. + +*/ +public class TDEConfigBackEnd implements QtSupport { + private long _qt; + private boolean _allocatedInJavaWorld = true; + protected TDEConfigBackEnd(Class dummy){} + + /** + Constructs a configuration back end. + @param _config Specifies the configuration object which values + will be passed to as they are read, or from where values + to be written to will be obtained from. + @param _fileName The name of the file in which config + data is stored. All registered configuration directories + will be looked in in order of decreasing relevance. + @param _resType the resource type of the fileName specified, _if_ + it is not an absolute path (otherwise this parameter is ignored). + @param _useKDEGlobals If true, the user's system-wide kdeglobals file + will be imported into the config object. If false, only + the filename specified will be dealt with. + @short Constructs a configuration back end. + */ + /** + Parses all configuration files for a configuration object. This + method must be reimplemented by the derived classes. + @return Whether or not parsing was successful. + + @short Parses all configuration files for a configuration object. + */ + public native boolean parseConfigFiles(); + /** + Writes configuration data to file(s). This method must be + reimplemented by the derived classes. + @param bMerge Specifies whether the old config file already + on disk should be merged in with the data in memory. If true, + data is read off the disk and merged. If false, the on-disk + file is removed and only in-memory data is written out. + @short Writes configuration data to file(s). + */ + public native void sync(boolean bMerge); + public native void sync(); + /** + Changes the filenames associated with this back end. You should + probably reparse your config info after doing this. + @param _fileName the new filename to use + @param _resType the resource type of the fileName specified, _if_ + it is not an absolute path (otherwise this parameter is ignored). + @param _useKDEGlobals specifies whether or not to also parse the + global KDE configuration files. + @short Changes the filenames associated with this back end. + */ + public native void changeFileName(String _fileName, String _resType, boolean _useKDEGlobals); + /** + Returns the state of the app-config object. + @short Returns the state of the app-config object. + @see TDEConfig#getConfigState + */ + public native int getConfigState(); + /** + Returns the filename as passed to the constructor. + @return the filename as passed to the constructor. + + @short Returns the filename as passed to the constructor. + */ + public native String fileName(); + /** + Returns the resource type as passed to the constructor. + @return the resource type as passed to the constructor. + + @short Returns the resource type as passed to the constructor. + */ + public native String resource(); + /** + Set the locale string that defines the current language. + @param _localeString the identifier of the language + @short Set the locale string that defines the current language. + @see KLocale + */ + public native void setLocaleString(String _localeString); + /** + Set the file mode for newly created files. + @param mode the filemode (as in chmod) + @short Set the file mode for newly created files. + */ + public native void setFileWriteMode(int mode); + /** + Check whether the config files are writable. + @param warnUser Warn the user if the configuration files are not writable. + @return Indicates that all of the configuration files used are writable. + + @short Check whether the config files are writable. + */ + public native boolean checkConfigFilesWritable(boolean warnUser); + /** + Returns a lock file object for the configuration file + @param bGlobal If true, returns a lock file object for kdeglobals + @short Returns a lock file object for the configuration file + */ + // KLockFile::Ptr lockFile(bool arg1); >>>> NOT CONVERTED + // KLockFile::Ptr lockFile(); >>>> NOT CONVERTED +} diff --git a/kdejava/koala/org/kde/koala/TDEConfigBase.java b/kdejava/koala/org/kde/koala/TDEConfigBase.java new file mode 100644 index 00000000..5baa01ff --- /dev/null +++ b/kdejava/koala/org/kde/koala/TDEConfigBase.java @@ -0,0 +1,936 @@ +//Auto-generated by kalyptus. DO NOT EDIT. +package org.kde.koala; + +import org.kde.qt.Qt; +import org.kde.qt.TQColor; +import org.kde.qt.TQRect; +import org.kde.qt.TQFont; +import org.kde.qt.TQMetaObject; +import org.kde.qt.QtSupport; +import org.kde.qt.TQPoint; +import java.util.Calendar; +import org.kde.qt.TQSize; +import java.util.ArrayList; +import org.kde.qt.TQVariant; +import org.kde.qt.TQObject; + +/** + + This class forms the base for all %KDE configuration. It is an + abstract base class, meaning that you cannot directly instantiate + objects of this class. Either use TDEConfig (for usual %KDE + configuration) or KSimpleConfig (for special needs as in ksamba), or + even KSharedConfig (stores values in shared memory). + All configuration entries are key, value pairs. Each entry also + belongs to a specific group of related entries. All configuration + entries that do not explicitly specify which group they are in are + in a special group called the default group. + If there is a $ character in an entry, TDEConfigBase tries to expand + environment variable and uses its value instead of its name. You + can avoid this feature by having two consecutive $ characters in + your config file which get expanded to one. + Note:<> the '=' char is not allowed in keys and the ']' char is not allowed in + a group name. + @author Kalle Dalheimer , Preston Brown + + @short KDE Configuration Management abstract base class. + @see TDEGlobal#config + @see TDEConfig + @see KSimpleConfig + @see KSharedConfig + +*/ +public class TDEConfigBase extends TQObject { + protected TDEConfigBase(Class dummy){super((Class) null);} + /** + Possible return values for getConfigState(). + @short Possible return values for getConfigState(). + @see #getConfigState + */ + public static final int NoAccess = 0; + public static final int ReadOnly = 1; + public static final int ReadWrite = 2; + + public native TQMetaObject metaObject(); + public native String className(); + /** + Construct a TDEConfigBase object. + @short Construct a TDEConfigBase object. + */ + /** + Specifies the group in which keys will be read and written. + Subsequent + calls to readEntry() and writeEntry() will be applied only in the + activated group. + Switch back to the default group by passing a null string. + @param group The name of the new group. + @short Specifies the group in which keys will be read and written. + */ + public native void setGroup(String group); + /** + Sets the group to the "Desktop Entry" group used for + desktop configuration files for applications, mime types, etc. + @short Sets the group to the "Desktop Entry" group used for desktop configuration files for applications, mime types, etc. + */ + public native void setDesktopGroup(); + /** + Returns the name of the group in which we are + searching for keys and from which we are retrieving entries. + @return The current group. + + @short Returns the name of the group in which we are searching for keys and from which we are retrieving entries. + */ + public native String group(); + /** + Returns true if the specified group is known about. + @param group The group to search for. + @return true if the group exists. + + @short Returns true if the specified group is known about. + */ + public native boolean hasGroup(String group); + /** + Returns a list of groups that are known about. + @return The list of groups. + + @short Returns a list of groups that are known about. + */ + public native ArrayList groupList(); + /** + Returns a the current locale. + @return A string representing the current locale. + + @short Returns a the current locale. + */ + public native String locale(); + /** + Reads the value of an entry specified by pKey in the current group. + If you want to read a path, please use readPathEntry(). + @param pKey The key to search for. + @param aDefault A default value returned if the key was not found. + @return The value for this key. Can be null if aDefault is null. + + @short Reads the value of an entry specified by pKey in the current group. + */ + public native String readEntry(String pKey, String aDefault); + public native String readEntry(String pKey); + /** + Reads the value of an entry specified by pKey in the current group. + The value is treated as if it is of the type of the given default value. + Note that only the following TQVariant types are allowed : String, + StringList, List, Font, Point, Rect, Size, Color, Int, UInt, Bool, + Double, DateTime and Date. + @param pKey The key to search for. + @param aDefault A default value returned if the key was not found or + if the read value cannot be converted to the TQVariant.Type. + @return The value for the key or the default value if the key was not + found. + + @short Reads the value of an entry specified by pKey in the current group. + */ + public native TQVariant readPropertyEntry(String pKey, TQVariant aDefault); + /** + Reads a list of strings. + @param pKey The key to search for. + @param sep The list separator (default is ","). + @return The list. Empty if the entry does not exist. + + @short Reads a list of strings. + */ + public native ArrayList readListEntry(String pKey, char sep); + public native ArrayList readListEntry(String pKey); + /** + Reads a list of strings, but returns a default if the key + did not exist. + @param pKey The key to search for. + @param aDefault The default value to use if the key does not exist. + @param sep The list separator (default is ","). + @return The list. Contains aDefault if the Key does not exist. + + @short Reads a list of strings, but returns a default if the key did not exist. + */ + public native ArrayList readListEntry(String pKey, String[] aDefault, char sep); + public native ArrayList readListEntry(String pKey, String[] aDefault); + /** + Reads a list of Integers. + @param pKey The key to search for. + @return The list. Empty if the entry does not exist. + + @short Reads a list of Integers. + */ + public native int[] readIntListEntry(String pKey); + /** + Reads a path. + Read the value of an entry specified by pKey in the current group + and interpret it as a path. This means, dollar expansion is activated + for this value, so that e.g. $HOME gets expanded. + @param pKey The key to search for. + @param aDefault A default value returned if the key was not found. + @return The value for this key. Can be null if aDefault is null. + + @short Reads a path. + */ + public native String readPathEntry(String pKey, String aDefault); + public native String readPathEntry(String pKey); + /** + Reads a list of string paths. + Read the value of an entry specified by pKey in the current group + and interpret it as a list of paths. This means, dollar expansion is activated + for this value, so that e.g. $HOME gets expanded. + @param pKey The key to search for. + @param sep The list separator (default is ","). + @return The list. Empty if the entry does not exist. + + @short Reads a list of string paths. + */ + public native ArrayList readPathListEntry(String pKey, char sep); + public native ArrayList readPathListEntry(String pKey); + /** + Reads a numerical value. + Read the value of an entry specified by pKey in the current group + and interpret it numerically. + @param pKey The key to search for. + @param nDefault A default value returned if the key was not found or if + the read value cannot be interpreted. + @return The value for this key. + + @short Reads a numerical value. + */ + public native int readNumEntry(String pKey, int nDefault); + public native int readNumEntry(String pKey); + /** + Reads an unsigned numerical value. + Read the value of an entry specified by pKey in the current group + and interpret it numerically. + @param pKey The key to search for. + @param nDefault A default value returned if the key was not found or if + the read value cannot be interpreted. + @return The value for this key. + + @short Reads an unsigned numerical value. + */ + public native int readUnsignedNumEntry(String pKey, int nDefault); + public native int readUnsignedNumEntry(String pKey); + /** + Reads a numerical value. + Read the value of an entry specified by pKey in the current group + and interpret it numerically. + @param pKey The key to search for. + @param nDefault A default value returned if the key was not found or if + the read value cannot be interpreted. + @return The value for this key. + + @short Reads a numerical value. + */ + public native long readLongNumEntry(String pKey, long nDefault); + public native long readLongNumEntry(String pKey); + /** + Read an unsigned numerical value. + Read the value of an entry specified by pKey in the current group + and interpret it numerically. + @param pKey The key to search for. + @param nDefault A default value returned if the key was not found or if + the read value cannot be interpreted. + @return The value for this key. + + @short Read an unsigned numerical value. + */ + public native long readUnsignedLongNumEntry(String pKey, long nDefault); + public native long readUnsignedLongNumEntry(String pKey); + /** + Reads a 64-bit numerical value. + Read the value of an entry specified by pKey in the current group + and interpret it numerically. + @param pKey The key to search for. + @param nDefault A default value returned if the key was not found or if + the read value cannot be interpreted. + @return The value for this key. + + @short Reads a 64-bit numerical value. + */ + public native long readNum64Entry(String pKey, long nDefault); + public native long readNum64Entry(String pKey); + /** + Read an 64-bit unsigned numerical value. + Read the value of an entry specified by pKey in the current group + and interpret it numerically. + @param pKey The key to search for. + @param nDefault A default value returned if the key was not found or if + the read value cannot be interpreted. + @return The value for this key. + + @short Read an 64-bit unsigned numerical value. + */ + public native long readUnsignedNum64Entry(String pKey, long nDefault); + public native long readUnsignedNum64Entry(String pKey); + /** + Reads a floating point value. + Read the value of an entry specified by pKey in the current group + and interpret it numerically. + @param pKey The key to search for. + @param nDefault A default value returned if the key was not found or if + the read value cannot be interpreted. + @return The value for this key. + + @short Reads a floating point value. + */ + public native double readDoubleNumEntry(String pKey, double nDefault); + public native double readDoubleNumEntry(String pKey); + /** + Reads a TQFont value. + Read the value of an entry specified by pKey in the current group + and interpret it as a font object. + @param pKey The key to search for. + @param pDefault A default value (null TQFont by default) returned if the + key was not found or if the read value cannot be interpreted. + @return The value for this key. + + @short Reads a TQFont value. + */ + public native TQFont readFontEntry(String pKey, TQFont pDefault); + public native TQFont readFontEntry(String pKey); + /** + Reads a booleanean entry. + Read the value of an entry specified by pKey in the current group + and interpret it as a booleanean value. Currently "on" and "true" are + accepted as true, everything else if false. + @param pKey The key to search for + @param bDefault A default value returned if the key was not found. + @return The value for this key. + + @short Reads a boolean entry. + */ + public native boolean readBoolEntry(String pKey, boolean bDefault); + public native boolean readBoolEntry(String pKey); + /** + Reads a TQRect entry. + Read the value of an entry specified by pKey in the current group + and interpret it as a TQRect object. + @param pKey The key to search for + @param pDefault A default value (null TQRect by default) returned if the + key was not found or if the read value cannot be interpreted. + @return The value for this key. + + @short Reads a TQRect entry. + */ + public native TQRect readRectEntry(String pKey, TQRect pDefault); + public native TQRect readRectEntry(String pKey); + /** + Reads a TQPoint entry. + Read the value of an entry specified by pKey in the current group + and interpret it as a TQPoint object. + @param pKey The key to search for + @param pDefault A default value (null TQPoint by default) returned if the + key was not found or if the read value cannot be interpreted. + @return The value for this key. + + @short Reads a TQPoint entry. + */ + public native TQPoint readPointEntry(String pKey, TQPoint pDefault); + public native TQPoint readPointEntry(String pKey); + /** + Reads a TQSize entry. + Read the value of an entry specified by pKey in the current group + and interpret it as a TQSize object. + @param pKey The key to search for + @param pDefault A default value (null TQSize by default) returned if the + key was not found or if the read value cannot be interpreted. + @return The value for this key. + + @short Reads a TQSize entry. + */ + public native TQSize readSizeEntry(String pKey, TQSize pDefault); + public native TQSize readSizeEntry(String pKey); + /** + Reads a TQColor entry. + Read the value of an entry specified by pKey in the current group + and interpret it as a color. + @param pKey The key to search for. + @param pDefault A default value (null TQColor by default) returned if the + key was not found or if the value cannot be interpreted. + @return The value for this key. + + @short Reads a TQColor entry. + */ + public native TQColor readColorEntry(String pKey, TQColor pDefault); + public native TQColor readColorEntry(String pKey); + /** + Reads a Calendar entry. + Read the value of an entry specified by pKey in the current group + and interpret it as a date and time. + @param pKey The key to search for. + @param pDefault A default value ( currentDateTime() by default) + returned if the key was not found or if the read value cannot be + interpreted. + @return The value for this key. + + @short Reads a TQDateTime entry. + */ + public native Calendar readDateTimeEntry(String pKey, Calendar pDefault); + public native Calendar readDateTimeEntry(String pKey); + /** + Reads the value of an entry specified by pKey in the current group. + The untranslated entry is returned, you normally do not need this. + @param pKey The key to search for. + @param aDefault A default value returned if the key was not found. + @return The value for this key. + + @short Reads the value of an entry specified by pKey in the current group. + */ + public native String readEntryUntranslated(String pKey, String aDefault); + public native String readEntryUntranslated(String pKey); + /** + Writes a key/value pair. + This is stored in the most specific config file when destroying the + config object or when calling sync(). + If you want to write a path, please use writePathEntry(). + @param pKey The key to write. + @param pValue The value to write. + @param bPersistent If bPersistent is false, the entry's dirty + flag will not be set and thus the entry will + not be written to disk at deletion time. + @param bGlobal If bGlobal is true, the pair is not saved to the + application specific config file, but to the + global KDE config file. + @param bNLS If bNLS is true, the locale tag is added to the key + when writing it back. + @short Writes a key/value pair. + */ + public native void writeEntry(String pKey, String pValue, boolean bPersistent, boolean bGlobal, boolean bNLS); + public native void writeEntry(String pKey, String pValue, boolean bPersistent, boolean bGlobal); + public native void writeEntry(String pKey, String pValue, boolean bPersistent); + public native void writeEntry(String pKey, String pValue); + /** + writeEntry() Overridden to accept a property. + Note: Unlike the other writeEntry() functions, the old value is + _not_ returned here! + @param pKey The key to write + @param rValue The property to write + @param bPersistent If bPersistent is false, the entry's dirty flag + will not be set and thus the entry will not be + written to disk at deletion time. + @param bGlobal If bGlobal is true, the pair is not saved to the + application specific config file, but to the + global KDE config file. + @param bNLS If bNLS is true, the locale tag is added to the key + when writing it back. + @short writeEntry() Overridden to accept a property. + @see #writeEntry + */ + public native void writeEntry(String pKey, TQVariant rValue, boolean bPersistent, boolean bGlobal, boolean bNLS); + public native void writeEntry(String pKey, TQVariant rValue, boolean bPersistent, boolean bGlobal); + public native void writeEntry(String pKey, TQVariant rValue, boolean bPersistent); + public native void writeEntry(String pKey, TQVariant rValue); + /** + writeEntry() overridden to accept a list of strings. + Note: Unlike the other writeEntry() functions, the old value is + _not_ returned here! + @param pKey The key to write + @param rValue The list to write + @param sep The list separator (default is ","). + @param bPersistent If bPersistent is false, the entry's dirty flag + will not be set and thus the entry will not be + written to disk at deletion time. + @param bGlobal If bGlobal is true, the pair is not saved to the + application specific config file, but to the + global KDE config file. + @param bNLS If bNLS is true, the locale tag is added to the key + when writing it back. + @short writeEntry() overridden to accept a list of strings. + @see #writeEntry + */ + public native void writeEntry(String pKey, String[] rValue, char sep, boolean bPersistent, boolean bGlobal, boolean bNLS); + public native void writeEntry(String pKey, String[] rValue, char sep, boolean bPersistent, boolean bGlobal); + public native void writeEntry(String pKey, String[] rValue, char sep, boolean bPersistent); + public native void writeEntry(String pKey, String[] rValue, char sep); + public native void writeEntry(String pKey, String[] rValue); + /** + writeEntry() overridden to accept a list of Integers. + Note: Unlike the other writeEntry() functions, the old value is + _not_ returned here! + @param pKey The key to write + @param rValue The list to write + @param bPersistent If bPersistent is false, the entry's dirty flag + will not be set and thus the entry will not be + written to disk at deletion time. + @param bGlobal If bGlobal is true, the pair is not saved to the + application specific config file, but to the + global KDE config file. + @param bNLS If bNLS is true, the locale tag is added to the key + when writing it back. + @short writeEntry() overridden to accept a list of Integers. + @see #writeEntry + */ + public native void writeEntry(String pKey, int[] rValue, boolean bPersistent, boolean bGlobal, boolean bNLS); + public native void writeEntry(String pKey, int[] rValue, boolean bPersistent, boolean bGlobal); + public native void writeEntry(String pKey, int[] rValue, boolean bPersistent); + public native void writeEntry(String pKey, int[] rValue); + /** + Write a (key/value) pair. + Same as above, but writes a numerical value. + @param pKey The key to write. + @param nValue The value to write. + @param bPersistent If bPersistent is false, the entry's dirty + flag will not be set and thus the entry will not be written to + disk at deletion time. + @param bGlobal If bGlobal is true, the pair is not saved to the + application specific config file, but to the + global KDE config file. + @param bNLS If bNLS is true, the locale tag is added to the key + when writing it back. + @short Write a (key/value) pair. + */ + public native void writeEntry(String pKey, int nValue, boolean bPersistent, boolean bGlobal, boolean bNLS); + public native void writeEntry(String pKey, int nValue, boolean bPersistent, boolean bGlobal); + public native void writeEntry(String pKey, int nValue, boolean bPersistent); + public native void writeEntry(String pKey, int nValue); + /** + Writes a (key/value) pair. + Same as above, but write a long numerical value. + @param pKey The key to write. + @param nValue The value to write. + @param bPersistent If bPersistent is false, the entry's dirty + flag will not be set and thus the entry will not be written to + disk at deletion time. + @param bGlobal If bGlobal is true, the pair is not saved to the + application specific config file, but to the global KDE config file. + @param bNLS If bNLS is true, the locale tag is added to the key + when writing it back. + @short Writes a (key/value) pair. + */ + public native void writeEntry(String pKey, long nValue, boolean bPersistent, boolean bGlobal, boolean bNLS); + public native void writeEntry(String pKey, long nValue, boolean bPersistent, boolean bGlobal); + public native void writeEntry(String pKey, long nValue, boolean bPersistent); + public native void writeEntry(String pKey, long nValue); + /** + Writes a (key/value) pair. + Same as above, but writes a floating-point value. + @param pKey The key to write. + @param nValue The value to write. + @param bPersistent If bPersistent is false, the entry's dirty + flag will not be set and thus the entry will not be written to + disk at deletion time. + @param bGlobal If bGlobal is true, the pair is not saved to the + application specific config file, but to the global KDE config file. + @param format format determines the format to which the value + is converted. Default is 'g'. + @param precision precision sets the precision with which the + value is converted. Default is 6 as in String. + @param bNLS If bNLS is true, the locale tag is added to the key + when writing it back. + @short Writes a (key/value) pair. + */ + public native void writeEntry(String pKey, double nValue, boolean bPersistent, boolean bGlobal, char format, int precision, boolean bNLS); + public native void writeEntry(String pKey, double nValue, boolean bPersistent, boolean bGlobal, char format, int precision); + public native void writeEntry(String pKey, double nValue, boolean bPersistent, boolean bGlobal, char format); + public native void writeEntry(String pKey, double nValue, boolean bPersistent, boolean bGlobal); + public native void writeEntry(String pKey, double nValue, boolean bPersistent); + public native void writeEntry(String pKey, double nValue); + /** + Writes a (key/value) pair. + Same as above, but writes a booleanean value. + @param pKey The key to write. + @param bValue The value to write. + @param bPersistent If bPersistent is false, the entry's dirty + flag will not be set and thus the entry will not be written to + disk at deletion time. + @param bGlobal If bGlobal is true, the pair is not saved to the + application specific config file, but to the global KDE config file. + @param bNLS If bNLS is true, the locale tag is added to the key + when writing it back. + @short Writes a (key/value) pair. + */ + public native void writeEntry(String pKey, boolean bValue, boolean bPersistent, boolean bGlobal, boolean bNLS); + public native void writeEntry(String pKey, boolean bValue, boolean bPersistent, boolean bGlobal); + public native void writeEntry(String pKey, boolean bValue, boolean bPersistent); + public native void writeEntry(String pKey, boolean bValue); + /** + Writes a (key/value) pair. + Same as above, but writes a font value. + @param pKey The key to write. + @param rFont The font value to write. + @param bPersistent If bPersistent is false, the entry's dirty + flag will not be set and thus the entry will not be written to + disk at deletion time. + @param bGlobal If bGlobal is true, the pair is not saved to the + application specific config file, but to the global KDE config file. + @param bNLS If bNLS is true, the locale tag is added to the key + when writing it back. + @short Writes a (key/value) pair. + */ + public native void writeEntry(String pKey, TQFont rFont, boolean bPersistent, boolean bGlobal, boolean bNLS); + public native void writeEntry(String pKey, TQFont rFont, boolean bPersistent, boolean bGlobal); + public native void writeEntry(String pKey, TQFont rFont, boolean bPersistent); + public native void writeEntry(String pKey, TQFont rFont); + /** + Writes a (key/value) pair. + Same as above, but write a color entry. + Note: Unlike the other writeEntry() functions, the old value is + _not_ returned here! + @param pKey The key to write. + @param rColor The color value to write. + @param bPersistent If bPersistent is false, the entry's dirty + flag will not be set and thus the entry will not be written to + disk at deletion time. + @param bGlobal If bGlobal is true, the pair is not saved to the + application specific config file, but to the global KDE config file. + @param bNLS If bNLS is true, the locale tag is added to the key + when writing it back. + @short Writes a (key/value) pair. + */ + public native void writeEntry(String pKey, TQColor rColor, boolean bPersistent, boolean bGlobal, boolean bNLS); + public native void writeEntry(String pKey, TQColor rColor, boolean bPersistent, boolean bGlobal); + public native void writeEntry(String pKey, TQColor rColor, boolean bPersistent); + public native void writeEntry(String pKey, TQColor rColor); + /** + Writes a (key/value) pair. + Same as above, but writes a date and time entry. + Note: Unlike the other writeEntry() functions, the old value is + not returned here! + @param pKey The key to write. + @param rDateTime The date and time value to write. + @param bPersistent If bPersistent is false, the entry's dirty + flag will not be set and thus the entry will not be written to + disk at deletion time. + @param bGlobal If bGlobal is true, the pair is not saved to the + application specific config file, but to the global KDE config file. + @param bNLS If bNLS is true, the locale tag is added to the key + when writing it back. + @short Writes a (key/value) pair. + */ + public native void writeEntry(String pKey, Calendar rDateTime, boolean bPersistent, boolean bGlobal, boolean bNLS); + public native void writeEntry(String pKey, Calendar rDateTime, boolean bPersistent, boolean bGlobal); + public native void writeEntry(String pKey, Calendar rDateTime, boolean bPersistent); + public native void writeEntry(String pKey, Calendar rDateTime); + /** + Writes a (key/value) pair. + Same as above, but writes a rectangle. + Note: Unlike the other writeEntry() functions, the old value is + _not_ returned here! + @param pKey The key to write. + @param rValue The rectangle value to write. + @param bPersistent If bPersistent is false, the entry's dirty + flag will not be set and thus the entry will not be written to + disk at deletion time. + @param bGlobal If bGlobal is true, the pair is not saved to the + application specific config file, but to the global KDE config file. + @param bNLS If bNLS is true, the locale tag is added to the key + when writing it back. + @short Writes a (key/value) pair. + */ + public native void writeEntry(String pKey, TQRect rValue, boolean bPersistent, boolean bGlobal, boolean bNLS); + public native void writeEntry(String pKey, TQRect rValue, boolean bPersistent, boolean bGlobal); + public native void writeEntry(String pKey, TQRect rValue, boolean bPersistent); + public native void writeEntry(String pKey, TQRect rValue); + /** + Writes a (key/value) pair. + Same as above, but writes a point. + Note: Unlike the other writeEntry() functions, the old value is + _not_ returned here! + @param pKey The key to write. + @param rValue The point value to write. + @param bPersistent If bPersistent is false, the entry's dirty + flag will not be set and thus the entry will not be written to + disk at deletion time. + @param bGlobal If bGlobal is true, the pair is not saved to the + application specific config file, but to the global KDE config file. + @param bNLS If bNLS is true, the locale tag is added to the key + when writing it back. + @short Writes a (key/value) pair. + */ + public native void writeEntry(String pKey, TQPoint rValue, boolean bPersistent, boolean bGlobal, boolean bNLS); + public native void writeEntry(String pKey, TQPoint rValue, boolean bPersistent, boolean bGlobal); + public native void writeEntry(String pKey, TQPoint rValue, boolean bPersistent); + public native void writeEntry(String pKey, TQPoint rValue); + /** + Writes a (key/value) pair. + Same as above, but writes a size. + Note: Unlike the other writeEntry() functions, the old value is + _not_ returned here! + @param pKey The key to write. + @param rValue The size value to write. + @param bPersistent If bPersistent is false, the entry's dirty + flag will not be set and thus the entry will not be written to + disk at deletion time. + @param bGlobal If bGlobal is true, the pair is not saved to the + application specific config file, but to the global KDE config file. + @param bNLS If bNLS is true, the locale tag is added to the key + when writing it back. + @short Writes a (key/value) pair. + */ + public native void writeEntry(String pKey, TQSize rValue, boolean bPersistent, boolean bGlobal, boolean bNLS); + public native void writeEntry(String pKey, TQSize rValue, boolean bPersistent, boolean bGlobal); + public native void writeEntry(String pKey, TQSize rValue, boolean bPersistent); + public native void writeEntry(String pKey, TQSize rValue); + /** + Writes a file path. + It is checked whether the path is located under $HOME. If so the + path is written out with the user's home-directory replaced with + $HOME. The path should be read back with readPathEntry() + @param pKey The key to write. + @param path The path to write. + @param bPersistent If bPersistent is false, the entry's dirty + flag will not be set and thus the entry will not be written to + disk at deletion time. + @param bGlobal If bGlobal is true, the pair is not saved to the + application specific config file, but to the global KDE config file. + @param bNLS If bNLS is true, the locale tag is added to the key + when writing it back. + @short Writes a file path. + */ + public native void writePathEntry(String pKey, String path, boolean bPersistent, boolean bGlobal, boolean bNLS); + public native void writePathEntry(String pKey, String path, boolean bPersistent, boolean bGlobal); + public native void writePathEntry(String pKey, String path, boolean bPersistent); + public native void writePathEntry(String pKey, String path); + /** + writePathEntry() overridden to accept a list of paths (strings). + It is checked whether the paths are located under $HOME. If so each of + the paths are written out with the user's home-directory replaced with + $HOME. The paths should be read back with readPathListEntry() + @param pKey The key to write + @param rValue The list to write + @param sep The list separator (default is ","). + @param bPersistent If bPersistent is false, the entry's dirty flag + will not be set and thus the entry will not be + written to disk at deletion time. + @param bGlobal If bGlobal is true, the pair is not saved to the + application specific config file, but to the + global KDE config file. + @param bNLS If bNLS is true, the locale tag is added to the key + when writing it back. + @short writePathEntry() overridden to accept a list of paths (strings). + @see #writePathEntry + @see #readPathListEntry + */ + public native void writePathEntry(String pKey, String[] rValue, char sep, boolean bPersistent, boolean bGlobal, boolean bNLS); + public native void writePathEntry(String pKey, String[] rValue, char sep, boolean bPersistent, boolean bGlobal); + public native void writePathEntry(String pKey, String[] rValue, char sep, boolean bPersistent); + public native void writePathEntry(String pKey, String[] rValue, char sep); + public native void writePathEntry(String pKey, String[] rValue); + /** + Deletes the entry specified by pKey in the current group. + @param pKey The key to delete. + @param bGlobal If bGlobal is true, the pair is not removed from the + application specific config file, but to the global KDE config file. + @param bNLS If bNLS is true, the key with the locale tag is removed. + @short Deletes the entry specified by pKey in the current group. + */ + public native void deleteEntry(String pKey, boolean bNLS, boolean bGlobal); + public native void deleteEntry(String pKey, boolean bNLS); + public native void deleteEntry(String pKey); + /** + Deletes a configuration entry group + If the group is not empty and bDeep is false, nothing gets + deleted and false is returned. + If this group is the current group and it is deleted, the + current group is undefined and should be set with setGroup() + before the next operation on the configuration object. + @param group The name of the group + @param bDeep Specify whether non-empty groups should be completely + deleted (including their entries). + @param bGlobal If bGlobal is true, the group is not removed from the + application specific config file, but from the global KDE config file. + @return If the group is not empty and bDeep is false, + deleteGroup returns false. + + @short Deletes a configuration entry group + */ + public native boolean deleteGroup(String group, boolean bDeep, boolean bGlobal); + public native boolean deleteGroup(String group, boolean bDeep); + public native boolean deleteGroup(String group); + /** + Turns on or off "dollar expansion" (see TDEConfigBase introduction) + when reading config entries. + Dollar sign expansion is initially OFF. + @param _bExpand Tf true, dollar expansion is turned on. + @short Turns on or off "dollar expansion" (see TDEConfigBase introduction) when reading config entries. + */ + public native void setDollarExpansion(boolean _bExpand); + public native void setDollarExpansion(); + /** + Returns whether dollar expansion is on or off. It is initially OFF. + @return true if dollar expansion is on. + + @short Returns whether dollar expansion is on or off. + */ + public native boolean isDollarExpansion(); + /** + Mark the config object as "clean," i.e. don't write dirty entries + at destruction time. If bDeep is false, only the global dirty + flag of the TDEConfig object gets cleared. If you then call + writeEntry() again, the global dirty flag is set again and all + dirty entries will be written at a subsequent sync() call. + Classes that derive from TDEConfigBase should override this + method and implement storage-specific behavior, as well as + calling the TDEConfigBase.rollback() explicitly in the initializer. + @param bDeep If true, the dirty flags of all entries are cleared, + as well as the global dirty flag. + @short Mark the config object as "clean," i. + */ + public native void rollback(boolean bDeep); + public native void rollback(); + /** + Flushes all changes that currently reside only in memory + back to disk / permanent storage. Dirty configuration entries are + written to the most specific file available. + Asks the back end to flush out all pending writes, and then calls + rollback(). No changes are made if the object has readOnly + status. + You should call this from your destructor in derivative classes. + @short Flushes all changes that currently reside only in memory back to disk / permanent storage. + @see #rollback + @see #isReadOnly + */ + public native void sync(); + /** + Checks whether the config file has any dirty (modified) entries. + @return true if the config file has any dirty (modified) entries. + + @short Checks whether the config file has any dirty (modified) entries. + */ + public native boolean isDirty(); + /** + Sets the config object's read-only status. + @param _ro If true, the config object will not write out any + changes to disk even if it is destroyed or sync() is called. + @short Sets the config object's read-only status. + */ + public native void setReadOnly(boolean _ro); + /** + Returns the read-only status of the config object. + @return The read-only status. + + @short Returns the read-only status of the config object. + */ + public native boolean isReadOnly(); + /** + Checks whether the key has an entry in the currently active group. + Use this to determine whether a key is not specified for the current + group (hasKey() returns false). Keys with null data are considered + nonexistent. + @param key The key to search for. + @return If true, the key is available. + + @short Checks whether the key has an entry in the currently active group. + */ + public native boolean hasKey(String key); + /** + Returns a map (tree) of entries for all entries in a particular + group. Only the actual entry string is returned, none of the + other internal data should be included. + @param group A group to get keys from. + @return A map of entries in the group specified, indexed by key. + The returned map may be empty if the group is not found. + + @short Returns a map (tree) of entries for all entries in a particular group. + @see org.kde.qt.TQMap + */ + // TQMap entryMap(const TQString& arg1); >>>> NOT CONVERTED + /** + Reparses all configuration files. This is useful for programs + that use stand alone graphical configuration tools. The base + method implemented here only clears the group list and then + appends the default group. + Derivative classes should clear any internal data structures and + then simply call parseConfigFiles() when implementing this + method. + @short Reparses all configuration files. + @see #parseConfigFiles + */ + public native void reparseConfiguration(); + /** + Checks whether this configuration file can be modified. + @return whether changes may be made to this configuration file. + + @short Checks whether this configuration file can be modified. + */ + public native boolean isImmutable(); + /** + Checks whether it is possible to change the given group. + @param group the group to check + @return whether changes may be made to group in this configuration + file. + + @short Checks whether it is possible to change the given group. + */ + public native boolean groupIsImmutable(String group); + /** + Checks whether it is possible to change the given entry. + @param key the key to check + @return whether the entry key may be changed in the current group + in this configuration file. + + @short Checks whether it is possible to change the given entry. + */ + public native boolean entryIsImmutable(String key); + /** + Returns the state of the app-config object. + Possible return values + are NoAccess (the application-specific config file could not be + opened neither read-write nor read-only), ReadOnly (the + application-specific config file is opened read-only, but not + read-write) and ReadWrite (the application-specific config + file is opened read-write). + @return the state of the app-config object + + @short Returns the state of the app-config object. + @see ConfigState + */ + public native int getConfigState(); + /** + Check whether the config files are writable. + @param warnUser Warn the user if the configuration files are not writable. + @return Indicates that all of the configuration files used are writable. + + @short Check whether the config files are writable. + */ + public native boolean checkConfigFilesWritable(boolean warnUser); + /** + When set, all readEntry and readXXXEntry calls return the system + wide (default) values instead of the user's preference. + This is off by default. + @short When set, all readEntry and readXXXEntry calls return the system wide (default) values instead of the user's preference. + */ + public native void setReadDefaults(boolean b); + /** + @return true if all readEntry and readXXXEntry calls return the system + wide (default) values instead of the user's preference. + + @short + */ + public native boolean readDefaults(); + /** + Reverts the entry with key key in the current group in the + application specific config file to either the system wide (default) + value or the value specified in the global KDE config file. + To revert entries in the global KDE config file, the global KDE config + file should be opened explicitly in a separate config object. + @param key The key of the entry to revert. + @short Reverts the entry with key key in the current group in the application specific config file to either the system wide (default) value or the value specified in the global KDE config file. + */ + public native void revertToDefault(String key); + /** + Returns whether a default is specified for an entry in either the + system wide configuration file or the global KDE config file. + If an application computes a default value at runtime for + a certain entry, e.g. like: +
    +		 TQColor computedDefault = kapp.palette().color(TQPalette.Active, TQColorGroup.Text)
    +		 TQColor color = config.readEntry(key, computedDefault);
    +		 \encode
    +			 Then it may wish to make the following check before
    +		 writing back changes:
    +		 
    +		 if ( (value == computedDefault) && !config.hasDefault(key) )
    +		    config.revertToDefault(key)
    +		 else
    +		    config.writeEntry(key, value)
    +		 
    + This ensures that as long as the entry is not modified to differ from + the computed default, the application will keep using the computed default + and will follow changes the computed default makes over time. + @param key The key of the entry to check. + @short Returns whether a default is specified for an entry in either the system wide configuration file or the global KDE config file. + */ + public native boolean hasDefault(String key); +} diff --git a/kdejava/koala/org/kde/koala/TDEConfigGroup.java b/kdejava/koala/org/kde/koala/TDEConfigGroup.java new file mode 100644 index 00000000..344597e8 --- /dev/null +++ b/kdejava/koala/org/kde/koala/TDEConfigGroup.java @@ -0,0 +1,53 @@ +//Auto-generated by kalyptus. DO NOT EDIT. +package org.kde.koala; + +import org.kde.qt.Qt; +import org.kde.qt.QtSupport; + +/** + + A TDEConfigBase derived class for one specific group in a TDEConfig object. + @short A TDEConfigBase derived class for one specific group in a TDEConfig object. + +*/ +public class TDEConfigGroup extends TDEConfigBase { + protected TDEConfigGroup(Class dummy){super((Class) null);} + /** + Construct a config group corresponding to group in master. + group is the group name encoded in UTF-8. + @short Construct a config group corresponding to group in master. + */ + public TDEConfigGroup(TDEConfigBase master, String group) { + super((Class) null); + newTDEConfigGroup(master,group); + } + private native void newTDEConfigGroup(TDEConfigBase master, String group); + /** + Delete all entries in the entire group + @param bGlobal If bGlobal is true, the entries are not removed + from the application specific config file, but from the global + KDE config file. + @short Delete all entries in the entire group + */ + public native void deleteGroup(boolean bGlobal); + public native void deleteGroup(); + /** + Checks whether it is possible to change this group. + @return whether changes may be made to this group in this configuration + file. + + @short Checks whether it is possible to change this group. + */ + public native boolean groupIsImmutable(); + public native void setDirty(boolean b); + public native void putData(KEntryKey _key, KEntry _data, boolean _checkGroup); + public native void putData(KEntryKey _key, KEntry _data); + public native KEntry lookupData(KEntryKey _key); + public native void sync(); + /** Deletes the wrapped C++ instance */ + protected native void finalize() throws InternalError; + /** Delete the wrapped C++ instance ahead of finalize() */ + public native void dispose(); + /** Has the wrapped C++ instance been deleted? */ + public native boolean isDisposed(); +} diff --git a/kdejava/koala/org/kde/koala/TDEConfigGroupSaver.java b/kdejava/koala/org/kde/koala/TDEConfigGroupSaver.java new file mode 100644 index 00000000..6cc7051d --- /dev/null +++ b/kdejava/koala/org/kde/koala/TDEConfigGroupSaver.java @@ -0,0 +1,66 @@ +//Auto-generated by kalyptus. DO NOT EDIT. +package org.kde.koala; + +import org.kde.qt.Qt; +import org.kde.qt.QtSupport; + +/** + + Helper class to facilitate working with TDEConfig / KSimpleConfig + groups. + Careful programmers always set the group of a + TDEConfig KSimpleConfig object to the group they want to read from + and set it back to the old one of afterwards. This is usually + written as: +
    + String oldgroup config.group();
    + config.setGroup( "TheGroupThatIWant" );
    + ...
    + config.writeEntry( "Blah", "Blubb" );
    + config.setGroup( oldgroup );
    + 
    + In order to facilitate this task, you can use + TDEConfigGroupSaver. Simply construct such an object ON THE STACK + when you want to switch to a new group. Then, when the object goes + out of scope, the group will automatically be restored. If you + want to use several different groups within a function or method, + you can still use TDEConfigGroupSaver: Simply enclose all work with + one group (including the creation of the TDEConfigGroupSaver object) + in one block. + TDEConfigGroup provides similar functionality in a more object oriented + way. + @author Matthias Kalle Dalheimer + + @short Helper class for easier use of TDEConfig/KSimpleConfig groups. + @see TDEConfigBase + @see TDEConfig + @see KSimpleConfig + @see TDEConfigGroup + +*/ +public class TDEConfigGroupSaver implements QtSupport { + private long _qt; + private boolean _allocatedInJavaWorld = true; + protected TDEConfigGroupSaver(Class dummy){} + + /** + Constructor. You pass a pointer to the TDEConfigBase-derived + object you want to work with and a string indicating the _new_ + group. + @param config The TDEConfigBase-derived object this + TDEConfigGroupSaver works on. + @param group The new group that the config object should switch to. + @short Constructor. + */ + public TDEConfigGroupSaver(TDEConfigBase config, String group) { + newTDEConfigGroupSaver(config,group); + } + private native void newTDEConfigGroupSaver(TDEConfigBase config, String group); + public native TDEConfigBase config(); + /** Deletes the wrapped C++ instance */ + protected native void finalize() throws InternalError; + /** Delete the wrapped C++ instance ahead of finalize() */ + public native void dispose(); + /** Has the wrapped C++ instance been deleted? */ + public native boolean isDisposed(); +} diff --git a/kdejava/koala/org/kde/koala/TDEConfigINIBackEnd.java b/kdejava/koala/org/kde/koala/TDEConfigINIBackEnd.java new file mode 100644 index 00000000..fba09220 --- /dev/null +++ b/kdejava/koala/org/kde/koala/TDEConfigINIBackEnd.java @@ -0,0 +1,117 @@ +//Auto-generated by kalyptus. DO NOT EDIT. +package org.kde.koala; + +import org.kde.qt.Qt; +import org.kde.qt.QtSupport; +import org.kde.qt.TQFile; + +/** + + Class for KDE INI-style configuration file loading/saving. + @author Preston Brown , + Matthias Kalle Dalheimer + + @short Class for KDE INI-style configuration file loading/saving. + +*/ +public class TDEConfigINIBackEnd extends TDEConfigBackEnd { + protected TDEConfigINIBackEnd(Class dummy){super((Class) null);} + /** + Constructs an ini-style configuration back end. + @param _config Specifies the configuration object which values + will be passed to as they are read, or from where values + to be written to will be obtained from. + @param _fileName The name of the file in which config + data is stored. All registered configuration directories + will be looked in in order of decreasing relevance. + @param _resType the resource type of the fileName specified, _if_ + it is not an absolute path (otherwise this parameter is ignored). + @param _useKDEGlobals If true, the user's system-wide kdeglobals file + will be imported into the config object. If false, only + the filename specified will be dealt with. + @short Constructs an ini-style configuration back end. + */ + public TDEConfigINIBackEnd(TDEConfigBase _config, String _fileName, String _resType, boolean _useKDEGlobals) { + super((Class) null); + newTDEConfigINIBackEnd(_config,_fileName,_resType,_useKDEGlobals); + } + private native void newTDEConfigINIBackEnd(TDEConfigBase _config, String _fileName, String _resType, boolean _useKDEGlobals); + public TDEConfigINIBackEnd(TDEConfigBase _config, String _fileName, String _resType) { + super((Class) null); + newTDEConfigINIBackEnd(_config,_fileName,_resType); + } + private native void newTDEConfigINIBackEnd(TDEConfigBase _config, String _fileName, String _resType); + /** + Parses all INI-style configuration files for a config object. + @return Whether or not parsing was successful. + + @short Parses all INI-style configuration files for a config object. + */ + public native boolean parseConfigFiles(); + /** + Writes configuration data to file(s). + @param bMerge Specifies whether the old config file already + on disk should be merged in with the data in memory. If true, + data is read off the disk and merged. If false, the on-disk + file is removed and only in-memory data is written out. + @short Writes configuration data to file(s). + */ + public native void sync(boolean bMerge); + public native void sync(); + /** + Parses one configuration file. + @param rFile The configuration file to parse + @param pWriteBackMap If specified, points to a KEntryMap where + the data read from the file should be stored, instead of + inserting them directly into the configuration object. + Use this area as a "scratchpad" when you need to know what is + on disk but don't want to effect the configuration object. + @param bGlobal Specifies whether entries should be marked as + belonging to the global KDE configuration file rather + than the application-specific KDE configuration file(s). + @param bDefault Specifies whether entries should be marked as + being default values. + @short Parses one configuration file. + */ + // void parseSingleConfigFile(TQFile& arg1,KEntryMap* arg2,bool arg3,bool arg4); >>>> NOT CONVERTED + // void parseSingleConfigFile(TQFile& arg1,KEntryMap* arg2,bool arg3); >>>> NOT CONVERTED + // void parseSingleConfigFile(TQFile& arg1,KEntryMap* arg2); >>>> NOT CONVERTED + protected native void parseSingleConfigFile(TQFile rFile); + /** + Writes configuration file back. + @param filename The name of the file to write. + @param bGlobal Specifies whether to write only entries which + are marked as belonging to the global KDE config file. + If this is false, it skips those entries. + @param bMerge Specifies whether the old config file already + on disk should be merged in with the data in memory. If true, + data is read off the disk and merged. If false, the on-disk + file is removed and only in-memory data is written out. + @return Whether some entries are left to be written to other + files. + + @short Writes configuration file back. + */ + protected native boolean writeConfigFile(String filename, boolean bGlobal, boolean bMerge); + protected native boolean writeConfigFile(String filename, boolean bGlobal); + protected native boolean writeConfigFile(String filename); + /** Get the entry map. + @param map the entries will be stored in this object. + @param bGlobal Specifies whether to get only entries which + are marked as belonging to the global KDE config file. + If this is false, it skips those entries. + @param mergeFile if not null, the dirty entries for this file will + be merged. + @return Whether there will be some entries left for writing to other + files. + + @short Get the entry map. + */ + // bool getEntryMap(KEntryMap& arg1,bool arg2,TQFile* arg3); >>>> NOT CONVERTED + /** Deletes the wrapped C++ instance */ + protected native void finalize() throws InternalError; + /** Delete the wrapped C++ instance ahead of finalize() */ + public native void dispose(); + /** Has the wrapped C++ instance been deleted? */ + public native boolean isDisposed(); +} diff --git a/kdejava/koala/org/kde/koala/TDEIO.java b/kdejava/koala/org/kde/koala/TDEIO.java new file mode 100644 index 00000000..7fe6837d --- /dev/null +++ b/kdejava/koala/org/kde/koala/TDEIO.java @@ -0,0 +1,1179 @@ +//Auto-generated by kalyptus. DO NOT EDIT. +package org.kde.koala; + +import org.kde.qt.Qt; +import org.kde.qt.TQDomDocument; +import org.kde.qt.TQMimeSourceInterface; +import org.kde.qt.QtSupport; +import org.kde.qt.TQDataStream; +import java.util.ArrayList; +import org.kde.qt.TQMimeSource; +import org.kde.qt.TQWidget; + +/** + + @short A namespace for KIO globals. + +*/ +public class KIO { + public static final int S_SKIP = 1; + public static final int S_AUTO_SKIP = 2; + public static final int S_CANCEL = 0; + + public static final int M_OVERWRITE = 1; + public static final int M_OVERWRITE_ITSELF = 2; + public static final int M_SKIP = 4; + public static final int M_SINGLE = 8; + public static final int M_MULTI = 16; + public static final int M_RESUME = 32; + public static final int M_NORENAME = 64; + + /** + The result of open_RenameDlg(). + @short The result of open_RenameDlg(). + */ + public static final int R_RESUME = 6; + public static final int R_RESUME_ALL = 7; + public static final int R_OVERWRITE = 4; + public static final int R_OVERWRITE_ALL = 5; + public static final int R_SKIP = 2; + public static final int R_AUTO_SKIP = 3; + public static final int R_RENAME = 1; + public static final int R_CANCEL = 0; + + /** + Commands that can be invoked by a job. + @short Commands that can be invoked by a job. + */ + public static final int CMD_HOST = '0'; + public static final int CMD_CONNECT = '1'; + public static final int CMD_DISCONNECT = '2'; + public static final int CMD_SLAVE_STATUS = '3'; + public static final int CMD_SLAVE_CONNECT = '4'; + public static final int CMD_SLAVE_HOLD = '5'; + public static final int CMD_NONE = 'A'; + public static final int CMD_TESTDIR = 'B'; + public static final int CMD_GET = 'C'; + public static final int CMD_PUT = 'D'; + public static final int CMD_STAT = 'E'; + public static final int CMD_MIMETYPE = 'F'; + public static final int CMD_LISTDIR = 'G'; + public static final int CMD_MKDIR = 'H'; + public static final int CMD_RENAME = 'I'; + public static final int CMD_COPY = 'J'; + public static final int CMD_DEL = 'K'; + public static final int CMD_CHMOD = 'L'; + public static final int CMD_SPECIAL = 'M'; + public static final int CMD_USERPASS = 'N'; + public static final int CMD_REPARSECONFIGURATION = 'O'; + public static final int CMD_META_DATA = 'P'; + public static final int CMD_SYMLINK = 'Q'; + public static final int CMD_SUBURL = 'R'; + public static final int CMD_MESSAGEBOXANSWER = 'S'; + public static final int CMD_RESUMEANSWER = 'T'; + public static final int CMD_CONFIG = 'U'; + public static final int CMD_MULTI_GET = 'V'; + + /** + Error codes that can be emitted by KIO. + @short Error codes that can be emitted by KIO. + */ + public static final int ERR_CANNOT_OPEN_FOR_READING = 1; + public static final int ERR_CANNOT_OPEN_FOR_WRITING = 2; + public static final int ERR_CANNOT_LAUNCH_PROCESS = 3; + public static final int ERR_INTERNAL = 4; + public static final int ERR_MALFORMED_URL = 5; + public static final int ERR_UNSUPPORTED_PROTOCOL = 6; + public static final int ERR_NO_SOURCE_PROTOCOL = 7; + public static final int ERR_UNSUPPORTED_ACTION = 8; + public static final int ERR_IS_DIRECTORY = 9; + public static final int ERR_IS_FILE = 10; + public static final int ERR_DOES_NOT_EXIST = 11; + public static final int ERR_FILE_ALREADY_EXIST = 12; + public static final int ERR_DIR_ALREADY_EXIST = 13; + public static final int ERR_UNKNOWN_HOST = 14; + public static final int ERR_ACCESS_DENIED = 15; + public static final int ERR_WRITE_ACCESS_DENIED = 16; + public static final int ERR_CANNOT_ENTER_DIRECTORY = 17; + public static final int ERR_PROTOCOL_IS_NOT_A_FILESYSTEM = 18; + public static final int ERR_CYCLIC_LINK = 19; + public static final int ERR_USER_CANCELED = 20; + public static final int ERR_CYCLIC_COPY = 21; + public static final int ERR_COULD_NOT_CREATE_SOCKET = 22; + public static final int ERR_COULD_NOT_CONNECT = 23; + public static final int ERR_CONNECTION_BROKEN = 24; + public static final int ERR_NOT_FILTER_PROTOCOL = 25; + public static final int ERR_COULD_NOT_MOUNT = 26; + public static final int ERR_COULD_NOT_UNMOUNT = 27; + public static final int ERR_COULD_NOT_READ = 28; + public static final int ERR_COULD_NOT_WRITE = 29; + public static final int ERR_COULD_NOT_BIND = 30; + public static final int ERR_COULD_NOT_LISTEN = 31; + public static final int ERR_COULD_NOT_ACCEPT = 32; + public static final int ERR_COULD_NOT_LOGIN = 33; + public static final int ERR_COULD_NOT_STAT = 34; + public static final int ERR_COULD_NOT_CLOSEDIR = 35; + public static final int ERR_COULD_NOT_MKDIR = 37; + public static final int ERR_COULD_NOT_RMDIR = 38; + public static final int ERR_CANNOT_RESUME = 39; + public static final int ERR_CANNOT_RENAME = 40; + public static final int ERR_CANNOT_CHMOD = 41; + public static final int ERR_CANNOT_DELETE = 42; + public static final int ERR_SLAVE_DIED = 43; + public static final int ERR_OUT_OF_MEMORY = 44; + public static final int ERR_UNKNOWN_PROXY_HOST = 45; + public static final int ERR_COULD_NOT_AUTHENTICATE = 46; + public static final int ERR_ABORTED = 47; + public static final int ERR_INTERNAL_SERVER = 48; + public static final int ERR_SERVER_TIMEOUT = 49; + public static final int ERR_SERVICE_NOT_AVAILABLE = 50; + public static final int ERR_UNKNOWN = 51; + public static final int ERR_UNKNOWN_INTERRUPT = 53; + public static final int ERR_CANNOT_DELETE_ORIGINAL = 54; + public static final int ERR_CANNOT_DELETE_PARTIAL = 55; + public static final int ERR_CANNOT_RENAME_ORIGINAL = 56; + public static final int ERR_CANNOT_RENAME_PARTIAL = 57; + public static final int ERR_NEED_PASSWD = 58; + public static final int ERR_CANNOT_SYMLINK = 59; + public static final int ERR_NO_CONTENT = 60; + public static final int ERR_DISK_FULL = 61; + public static final int ERR_IDENTICAL_FILES = 62; + public static final int ERR_SLAVE_DEFINED = 63; + public static final int ERR_UPGRADE_REQUIRED = 64; + public static final int ERR_POST_DENIED = 65; + + /** + Constants used to specify the type of a KUDSAtom. + @short Constants used to specify the type of a KUDSAtom. + */ + public static final int UDS_STRING = 1; + public static final int UDS_LONG = 2; + public static final int UDS_TIME = 4|UDS_LONG; + public static final int UDS_SIZE = 8|UDS_LONG; + public static final int UDS_SIZE_LARGE = 32768|UDS_LONG; + public static final int UDS_USER = 16|UDS_STRING; + public static final int UDS_ICON_NAME = 24|UDS_STRING; + public static final int UDS_GROUP = 32|UDS_STRING; + public static final int UDS_EXTRA = 48|UDS_STRING; + public static final int UDS_NAME = 64|UDS_STRING; + public static final int UDS_LOCAL_PATH = 72|UDS_STRING; + public static final int UDS_HIDDEN = 80|UDS_LONG; + public static final int UDS_EXTENDED_ACL = 88|UDS_LONG; + public static final int UDS_ACL_STRING = 96|UDS_STRING; + public static final int UDS_DEFAULT_ACL_STRING = 104|UDS_STRING; + public static final int UDS_ACCESS = 128|UDS_LONG; + public static final int UDS_MODIFICATION_TIME = 256|UDS_TIME; + public static final int UDS_ACCESS_TIME = 512|UDS_TIME; + public static final int UDS_CREATION_TIME = 1024|UDS_TIME; + public static final int UDS_FILE_TYPE = 2048|UDS_LONG; + public static final int UDS_LINK_DEST = 4096|UDS_STRING; + public static final int UDS_URL = 8192|UDS_STRING; + public static final int UDS_MIME_TYPE = 16384|UDS_STRING; + public static final int UDS_GUESSED_MIME_TYPE = 16392|UDS_STRING; + public static final int UDS_XML_PROPERTIES = 0x8000|UDS_STRING; + + /** + Specifies how to use the cache. + @short Specifies how to use the cache. + @see #parseCacheControl + @see #getCacheControlString + */ + public static final int CC_CacheOnly = 0; + public static final int CC_Cache = 1; + public static final int CC_Verify = 2; + public static final int CC_Refresh = 3; + public static final int CC_Reload = 4; + + public static final int SupportsChmod = 0; + public static final int SupportsChown = 1; + public static final int SupportsUTime = 2; + public static final int SupportsSymlinks = 3; + public static final int CaseInsensitive = 4; + + /** HTTP / DAV method * @short HTTP / DAV method + */ + public static final int HTTP_GET = 0; + public static final int HTTP_PUT = 1; + public static final int HTTP_POST = 2; + public static final int HTTP_HEAD = 3; + public static final int HTTP_DELETE = 4; + public static final int HTTP_OPTIONS = 5; + public static final int DAV_PROPFIND = 6; + public static final int DAV_PROPPATCH = 7; + public static final int DAV_MKCOL = 8; + public static final int DAV_COPY = 9; + public static final int DAV_MOVE = 10; + public static final int DAV_LOCK = 11; + public static final int DAV_UNLOCK = 12; + public static final int DAV_SEARCH = 13; + public static final int DAV_SUBSCRIBE = 14; + public static final int DAV_UNSUBSCRIBE = 15; + public static final int DAV_POLL = 16; + public static final int DAV_NOTIFY = 17; + public static final int HTTP_UNKNOWN = -1; + + /** + Identifiers for KIO informational messages. + @short Identifiers for KIO informational messages. + */ + public static final int INF_TOTAL_SIZE = 10; + public static final int INF_PROCESSED_SIZE = 11; + public static final int INF_SPEED = 12; + public static final int INF_REDIRECTION = 20; + public static final int INF_MIME_TYPE = 21; + public static final int INF_ERROR_PAGE = 22; + public static final int INF_WARNING = 23; + public static final int INF_GETTING_FILE = 24; + public static final int INF_NEED_PASSWD = 25; + public static final int INF_INFOMESSAGE = 26; + public static final int INF_META_DATA = 27; + public static final int INF_NETWORK_STATUS = 28; + public static final int INF_MESSAGEBOX = 29; + + /** + Identifiers for KIO data messages. + @short Identifiers for KIO data messages. + */ + public static final int MSG_DATA = 100; + public static final int MSG_DATA_REQ = 101; + public static final int MSG_ERROR = 102; + public static final int MSG_CONNECTED = 103; + public static final int MSG_FINISHED = 104; + public static final int MSG_STAT_ENTRY = 105; + public static final int MSG_LIST_ENTRIES = 106; + public static final int MSG_RENAMED = 107; + public static final int MSG_RESUME = 108; + public static final int MSG_SLAVE_STATUS = 109; + public static final int MSG_SLAVE_ACK = 110; + public static final int MSG_NET_RETQUEST = 111; + public static final int MSG_NET_DROP = 112; + public static final int MSG_NEED_SUBURL_DATA = 113; + public static final int MSG_CANRESUME = 114; + public static final int MSG_AUTH_KEY = 115; + public static final int MSG_DEL_AUTH_KEY = 116; + + public static final int DEFAULT = 1; + public static final int STATUSBAR = 2; + public static final int LIST = 3; + + public static native int open_SkipDlg(boolean _multi, String _error_text); + public static native int open_SkipDlg(boolean _multi); + /** +
  • RenameDlg related Functions
  • + {@link KIO#RenameDlg} + Construct a modal, parent-less "rename" dialog, and return + a result code, as well as the new dest. Much easier to use than the + class RenameDlg directly. + @param caption the caption for the dialog box + @param src the URL of the file/dir we're trying to copy, as it's part of the text message + @param dest the URL of the destination file/dir, i.e. the one that already exists + @param mode parameters for the dialog (which buttons to show...), + see RenameDlg_Mode + @param newDest the new destination path, valid if R_RENAME was returned. + @param sizeSrc size of source file + @param sizeDest size of destination file + @param ctimeSrc creation time of source file + @param ctimeDest creation time of destination file + @param mtimeSrc modification time of source file + @param mtimeDest modification time of destination file + @return the result + + @short
  • RenameDlg related Functions
  • {@link KIO#RenameDlg} Construct a modal, parent-less "rename" dialog, and return a result code, as well as the new dest. + */ + public static native int open_RenameDlg(String caption, String src, String dest, int mode, StringBuffer newDestPath, long sizeSrc, long sizeDest, int ctimeSrc, int ctimeDest, int mtimeSrc, int mtimeDest); + public static native int open_RenameDlg(String caption, String src, String dest, int mode, StringBuffer newDestPath, long sizeSrc, long sizeDest, int ctimeSrc, int ctimeDest, int mtimeSrc); + public static native int open_RenameDlg(String caption, String src, String dest, int mode, StringBuffer newDestPath, long sizeSrc, long sizeDest, int ctimeSrc, int ctimeDest); + public static native int open_RenameDlg(String caption, String src, String dest, int mode, StringBuffer newDestPath, long sizeSrc, long sizeDest, int ctimeSrc); + public static native int open_RenameDlg(String caption, String src, String dest, int mode, StringBuffer newDestPath, long sizeSrc, long sizeDest); + public static native int open_RenameDlg(String caption, String src, String dest, int mode, StringBuffer newDestPath, long sizeSrc); + public static native int open_RenameDlg(String caption, String src, String dest, int mode, StringBuffer newDestPath); + public static native TQDataStream op_write(TQDataStream s, AuthInfo a); + public static native TQDataStream op_read(TQDataStream s, AuthInfo a); + /** + Converts size from bytes to the string representation. + @param size size in bytes + @return converted size as a string - e.g. 123.4 kB , 12.0 MB + + @short Converts size from bytes to the string representation. + */ + public static native String convertSize(long size); + /** + Converts size from bytes to a string representation with includes + the size in bytes. + e.g. 90 B, 240 B, 1.4 KB (1495 B), 2.6MB (2,734,344 B), 0 B + @param size size in bytes + @return converted size as a string - e.g. 1.4 KB (1495 B), 45 B + + @short Converts size from bytes to a string representation with includes the size in bytes. + */ + public static native String convertSizeWithBytes(long size); + /** + Converts a size to a string representation + Not unlike String.number(...) + @param size size in bytes + @return converted size as a string - e.g. 123456789 + + @short Converts a size to a string representation Not unlike String.number(. + */ + public static native String number(long size); + /** + Converts size from kilo-bytes to the string representation. + @param kbSize size in kilo-bytes + @return converted size as a string - e.g. 123.4 kB , 12.0 MB + + @short Converts size from kilo-bytes to the string representation. + */ + public static native String convertSizeFromKB(long kbSize); + /** + Convert seconds to a string representing number of days, hours, minutes and seconds + @param seconds number of seconds to convert + @return string representation in a locale depending format + + @short Convert seconds to a string representing number of days, hours, minutes and seconds + */ + public static native String convertSeconds(int seconds); + /** + Helper for showing information about a set of files and directories + @param items the number of items (= files + dirs + number of symlinks :) + @param files the number of files + @param dirs the number of dirs + @param size the sum of the size of the files + @param showSize whether to show the size in the result + @return the summary string + + @short Helper for showing information about a set of files and directories + */ + public static native String itemsSummaryString(int items, int files, int dirs, long size, boolean showSize); + /** + Encodes (from the text displayed to the real filename) + This translates % into %% and / into %2f + Used by KIO.link, for instance. + @param str the file name to encode + @return the encoded file name + + @short Encodes (from the text displayed to the real filename) This translates % into %% and / into %2f Used by KIO.link, for instance. + */ + public static native String encodeFileName(String str); + /** + Decodes (from the filename to the text displayed) + This translates %2[fF] into / and %% into % + @param str the file name to decode + @return the decoded file name + + @short Decodes (from the filename to the text displayed) This translates %2[fF] into / and %% into % + */ + public static native String decodeFileName(String str); + /** + Returns a translated error message for errorCode using the + additional error information provided by errorText. + @param errorCode the error code + @param errorText the additional error text + @return the created error string + + @short Returns a translated error message for errorCode using the additional error information provided by errorText. + */ + public static native String buildErrorString(int errorCode, String errorText); + /** + Returns translated error details for errorCode using the + additional error information provided by errorText , reqUrl + (the request URL), and the ioslave method . + @param errorCode the error code + @param errorText the additional error text + @param reqUrl the request URL + @param method the ioslave method + +
  • + String errorName - the name of the error +
  • + +
  • + String techName - if not null, the more technical name of the error +
  • + +
  • + String description - a description of the error +
  • + +
  • + ArrayList causes - a list of possible causes of the error +
  • + +
  • + ArrayList solutions - a liso of solutions for the error + +
  • @return the following data: + + @short Returns translated error details for errorCode using the additional error information provided by errorText , reqUrl (the request URL), and the ioslave method . + */ + public static native byte[] rawErrorDetail(int errorCode, String errorText, KURL reqUrl, int method); + public static native byte[] rawErrorDetail(int errorCode, String errorText, KURL reqUrl); + public static native byte[] rawErrorDetail(int errorCode, String errorText); + /** + Returns an appropriate error message if the given command cmd + is an unsupported action (ERR_UNSUPPORTED_ACTION). + @param protocol name of the protocol + @param cmd given command + @short Returns an appropriate error message if the given command cmd is an unsupported action (ERR_UNSUPPORTED_ACTION). + @see #enum + @see Command + */ + public static native String unsupportedActionErrorString(String protocol, int cmd); + /** + Parses the string representation of the cache control option. + @param cacheControl the string representation + @return the cache control value + + @short Parses the string representation of the cache control option. + @see #getCacheControlString + */ + public static native int parseCacheControl(String cacheControl); + /** + Returns a string representation of the given cache control method. + @param cacheControl the cache control method + @return the string representation + + @short Returns a string representation of the given cache control method. + @see #parseCacheControl + */ + public static native String getCacheControlString(int cacheControl); + /** + Returns the mount point where device is mounted + right now. This means, it has to be mounted, not just + defined in fstab. + @short Returns the mount point where device is mounted right now. + */ + public static native String findDeviceMountPoint(String device); + /** + Returns the mount point on which resides filename. + For instance if /home is a separate partition, findPathMountPoint("/home/user/blah") + will return /home + @param filename the file name to check + @return the mount point of the given filename + + @short Returns the mount point on which resides filename. + */ + public static native String findPathMountPoint(String filename); + /** + Checks if the path belongs to a filesystem that is probably + slow. It checks for NFS or for paths belonging to automounted + paths not yet mounted + @param filename the file name to check + @return true if the filesystem is probably slow + + @short Checks if the path belongs to a filesystem that is probably slow. + */ + public static native boolean probably_slow_mounted(String filename); + /** + Checks if the path belongs to a filesystem that is manually + mounted. + @param filename the file name to check + @return true if the filesystem is manually mounted + + @short Checks if the path belongs to a filesystem that is manually mounted. + */ + public static native boolean manually_mounted(String filename); + /** + Checks the capabilities of the filesystem to which a given file belongs. + given feature (e.g. chmod). + @param filename the file name to check + @param flag the flag to check + The availables flags are: + +
  • + SupportsChmod: returns true if the filesystem supports chmod + (e.g. msdos filesystems return false) +
  • + +
  • + SupportsChown: returns true if the filesystem supports chown + (e.g. msdos filesystems return false) +
  • + +
  • + SupportsUtime: returns true if the filesystems supports utime + (e.g. msdos filesystems return false) +
  • + +
  • + SupportsSymlinks: returns true if the filesystems supports symlinks + (e.g. msdos filesystems return false) +
  • + +
  • + CaseInsensitive: returns true if the filesystem treats + "foo" and "FOO" as being the same file (true for msdos systems) +
  • + @return true if the filesystem has that flag, false if not (or some error occurred) + + @short Checks the capabilities of the filesystem to which a given file belongs. + */ + public static native boolean testFileSystemFlag(String filename, int flag); + /** + Creates a PreviewJob to generate or retrieve a preview image + for the given URL. + @param items files to get previews for + @param width the maximum width to use + @param height the maximum height to use, if this is 0, the same + value as width is used. + @param iconSize the size of the mimetype icon to overlay over the + preview or zero to not overlay an icon. This has no effect if the + preview plugin that will be used doesn't use icon overlays. + @param iconAlpha transparency to use for the icon overlay + @param scale if the image is to be scaled to the requested size or + returned in its original size + @param save if the image should be cached for later use + @param enabledPlugins if non-zero, this points to a list containing + the names of the plugins that may be used. + @return the new PreviewJob + + @short Creates a PreviewJob to generate or retrieve a preview image for the given URL. + @see PreviewJob#availablePlugins + */ + public static native PreviewJob filePreview(ArrayList items, int width, int height, int iconSize, int iconAlpha, boolean scale, boolean save, String[] enabledPlugins); + public static native PreviewJob filePreview(ArrayList items, int width, int height, int iconSize, int iconAlpha, boolean scale, boolean save); + public static native PreviewJob filePreview(ArrayList items, int width, int height, int iconSize, int iconAlpha, boolean scale); + public static native PreviewJob filePreview(ArrayList items, int width, int height, int iconSize, int iconAlpha); + public static native PreviewJob filePreview(ArrayList items, int width, int height, int iconSize); + public static native PreviewJob filePreview(ArrayList items, int width, int height); + public static native PreviewJob filePreview(ArrayList items, int width); + /** + Creates a new DavJob that issues a PROPFIND command. PROPFIND retrieves + the properties of the resource identified by the given url. + @param url the URL of the resource + @param properties a propfind document that describes the properties that + should be retrieved + @param depth the depth of the request. Can be "0", "1" or "infinity" + @param showProgressInfo true to show progress information + @return the new DavJob + + @short Creates a new DavJob that issues a PROPFIND command. + */ + public static native DavJob davPropFind(KURL url, TQDomDocument properties, String depth, boolean showProgressInfo); + public static native DavJob davPropFind(KURL url, TQDomDocument properties, String depth); + /** + Creates a new DavJob that issues a PROPPATCH command. PROPPATCH sets + the properties of the resource identified by the given url. + @param url the URL of the resource + @param properties a PROPPACTCH document that describes the properties that + should be modified and its new values + @param showProgressInfo true to show progress information + @return the new DavJob + + @short Creates a new DavJob that issues a PROPPATCH command. + */ + public static native DavJob davPropPatch(KURL url, TQDomDocument properties, boolean showProgressInfo); + public static native DavJob davPropPatch(KURL url, TQDomDocument properties); + /** + Creates a new DavJob that issues a SEARCH command. + @param url the URL of the resource + @param nsURI the URI of the search method's qualified name + @param qName the local part of the search method's qualified name + @param query the search string + @param showProgressInfo true to show progress information + @return the new DavJob + + @short Creates a new DavJob that issues a SEARCH command. + */ + public static native DavJob davSearch(KURL url, String nsURI, String qName, String query, boolean showProgressInfo); + public static native DavJob davSearch(KURL url, String nsURI, String qName, String query); + /** + Retrieves meta information for the given items. + @param items files to get metainfo for + @return the MetaInfoJob to retrieve the items + + @short Retrieves meta information for the given items. + */ + public static native MetaInfoJob fileMetaInfo(ArrayList items); + /** + Creates a single directory. + @param url The URL of the directory to create. + @param permissions The permissions to set after creating the + directory (unix-style), -1 for default permissions. + @return A pointer to the job handling the operation. + + @short Creates a single directory. + */ + public static native SimpleJob mkdir(KURL url, int permissions); + public static native SimpleJob mkdir(KURL url); + /** + Removes a single directory. + The directory is assumed to be empty. + @param url The URL of the directory to remove. + @return A pointer to the job handling the operation. + + @short Removes a single directory. + */ + public static native SimpleJob rmdir(KURL url); + /** + Changes permissions on a file or directory. + See the other chmod below for changing many files + or directories. + @param url The URL of file or directory. + @param permissions The permissions to set. + @return the job handling the operation. + + @short Changes permissions on a file or directory. + */ + public static native SimpleJob chmod(KURL url, int permissions); + /** + Rename a file or directory. + Warning: this operation fails if a direct renaming is not + possible (like with files or dirs on separate partitions) + Use move or file_move in this case. + @param src The original URL + @param dest The final URL + @param overwrite whether to automatically overwrite if the dest exists + @return the job handling the operation. + + @short Rename a file or directory. + */ + public static native SimpleJob rename(KURL src, KURL dest, boolean overwrite); + /** + Create or move a symlink. + This is the lowlevel operation, similar to file_copy and file_move. + It doesn't do any check (other than those the slave does) + and it doesn't show rename and skip dialogs - use KIO.link for that. + @param target The string that will become the "target" of the link (can be relative) + @param dest The symlink to create. + @param overwrite whether to automatically overwrite if the dest exists + @param showProgressInfo true to show progress information + @return the job handling the operation. + + @short Create or move a symlink. + */ + public static native SimpleJob symlink(String target, KURL dest, boolean overwrite, boolean showProgressInfo); + public static native SimpleJob symlink(String target, KURL dest, boolean overwrite); + /** + Execute any command that is specific to one slave (protocol). + Examples are : HTTP POST, mount and unmount (kio_file) + @param url The URL isn't passed to the slave, but is used to know + which slave to send it to :-) + @param data Packed data. The meaning is completely dependent on the + slave, but usually starts with an int for the command number. + @param showProgressInfo true to show progress information + @return the job handling the operation. + + @short Execute any command that is specific to one slave (protocol). + */ + public static native SimpleJob special(KURL url, byte[] data, boolean showProgressInfo); + public static native SimpleJob special(KURL url, byte[] data); + /** + Mount filesystem. + Special job for kio_file. + @param ro Mount read-only if true. + @param fstype File system type (e.g. "ext2", can be null). + @param dev Device (e.g. /dev/sda0). + @param point Mount point, can be null. + @param showProgressInfo true to show progress information + @return the job handling the operation. + + @short Mount filesystem. + */ + public static native SimpleJob mount(boolean ro, String fstype, String dev, String point, boolean showProgressInfo); + public static native SimpleJob mount(boolean ro, String fstype, String dev, String point); + /** + Unmount filesystem. + Special job for kio_file. + @param point Point to unmount. + @param showProgressInfo true to show progress information + @return the job handling the operation. + + @short Unmount filesystem. + */ + public static native SimpleJob unmount(String point, boolean showProgressInfo); + public static native SimpleJob unmount(String point); + /** + HTTP cache update + @param url Url to update, protocol must be "http". + @param no_cache If true, cache entry for url is deleted. + @param expireDate Local machine time indicating when the entry is + supposed to expire. + @return the job handling the operation. + + @short HTTP cache update + */ + public static native SimpleJob http_update_cache(KURL url, boolean no_cache, int expireDate); + /** + Find all details for one file or directory. + @param url the URL of the file + @param showProgressInfo true to show progress information + @return the job handling the operation. + + @short Find all details for one file or directory. + */ + public static native StatJob stat(KURL url, boolean showProgressInfo); + public static native StatJob stat(KURL url); + /** + Find all details for one file or directory. + This version of the call includes two additional booleaneans, sideIsSource and details. + @param url the URL of the file + @param sideIsSource is true when stating a source file (we will do a get on it if + the stat works) and false when stating a destination file (target of a copy). + The reason for this parameter is that in some cases the kioslave might not + be able to determine a file's existence (e.g. HTTP doesn't allow it, FTP + has issues with case-sensitivity on some systems). + When the slave can't reliably determine the existence of a file, it will: + +
  • + be optimistic if sideIsSource=true, i.e. it will assume the file exists, + and if it doesn't this will appear when actually trying to download it +
  • + +
  • + be pessimistic if sideIsSource=false, i.e. it will assume the file + doesn't exist, to prevent showing "about to overwrite" errors to the user. + If you simply want to check for existence without downloading/uploading afterwards, + then you should use sideIsSource=false. +
  • + @param details selects the level of details we want. + By default this is 2 (all details wanted, including modification time, size, etc.), + setDetails(1) is used when deleting: we don't need all the information if it takes + too much time, no need to follow symlinks etc. + setDetails(0) is used for very simple probing: we'll only get the answer + "it's a file or a directory, or it doesn't exist". This is used by KRun. + @param showProgressInfo true to show progress information + @return the job handling the operation. + + @short Find all details for one file or directory. + */ + public static native StatJob stat(KURL url, boolean sideIsSource, short details, boolean showProgressInfo); + public static native StatJob stat(KURL url, boolean sideIsSource, short details); + /** + Get (a.k.a. read). + The slave emits the data through data(). + @param url the URL of the file + @param reload true to reload the file, false if it can be taken from the cache + @param showProgressInfo true to show progress information + @return the job handling the operation. + + @short Get (a. + */ + public static native TransferJob get(KURL url, boolean reload, boolean showProgressInfo); + public static native TransferJob get(KURL url, boolean reload); + public static native TransferJob get(KURL url); + /** + Put (a.k.a. write) + @param url Where to write data. + @param permissions May be -1. In this case no special permission mode is set. + @param overwrite If true, any existing file will be overwritten. + @param resume true to resume an operation. Warning, setting this to true means + that the data will be appended to dest if dest exists. + @param showProgressInfo true to show progress information + @return the job handling the operation. + + @short Put (a. + @see #multi_get + */ + public static native TransferJob put(KURL url, int permissions, boolean overwrite, boolean resume, boolean showProgressInfo); + public static native TransferJob put(KURL url, int permissions, boolean overwrite, boolean resume); + /** + HTTP POST (for form data). + Example: +
    +		    job = KIO.http_post( url, postData, false );
    +		    job.addMetaData("content-type", contentType );
    +		    job.addMetaData("referrer", referrerURL);
    +		 
    + postData is the data that you want to send and + contentType is the complete HTTP header line that + specifies the content's MIME type, for example + "Content-Type: text/xml". + You MUST specify content-type! + Often contentType is + "Content-Type: application/x-www-form-urlencoded" and + the postData is then an ASCII string (without null-termination!) + with characters like space, linefeed and percent escaped like %20, + %0A and %25. + @param url Where to write the data. + @param postData Encoded data to post. + @param showProgressInfo true to display + @return the job handling the operation. + + @short HTTP POST (for form data). + */ + public static native TransferJob http_post(KURL url, byte[] postData, boolean showProgressInfo); + public static native TransferJob http_post(KURL url, byte[] postData); + /** + Get (a.k.a. read), into a single byte[]. + @param url the URL of the file + @param reload true to reload the file, false if it can be taken from the cache + @param showProgressInfo true to show progress information + @return the job handling the operation. + + @short Get (a. + @see StoredTransferJob + */ + public static native StoredTransferJob storedGet(KURL url, boolean reload, boolean showProgressInfo); + public static native StoredTransferJob storedGet(KURL url, boolean reload); + public static native StoredTransferJob storedGet(KURL url); + /** + Put (a.k.a. write) data from a single byte[]. + @param arr The data to write + @param url Where to write data. + @param permissions May be -1. In this case no special permission mode is set. + @param overwrite If true, any existing file will be overwritten. + @param resume true to resume an operation. Warning, setting this to true means + that the data will be appended to dest if dest exists. + @param showProgressInfo true to show progress information + @return the job handling the operation. + + @short Put (a. + @see StoredTransferJob + */ + public static native StoredTransferJob storedPut(byte[] arr, KURL url, int permissions, boolean overwrite, boolean resume, boolean showProgressInfo); + public static native StoredTransferJob storedPut(byte[] arr, KURL url, int permissions, boolean overwrite, boolean resume); + /** + Creates a new multiple get job. + @param id the id of the get operation + @param url the URL of the file + @param metaData the MetaData associated with the file + @return the job handling the operation. + + @short Creates a new multiple get job. + @see #get + */ + // TDEIO::MultiGetJob* multi_get(long arg1,const KURL& arg2,const TDEIO::MetaData& arg3); >>>> NOT CONVERTED + /** + Find mimetype for one file or directory. + @param url the URL of the file + @param showProgressInfo true to show progress information + @return the job handling the operation. + + @short Find mimetype for one file or directory. + */ + public static native MimetypeJob mimetype(KURL url, boolean showProgressInfo); + public static native MimetypeJob mimetype(KURL url); + /** + Copy a single file. + Uses either SlaveBase.copy() if the slave supports that + or get() and put() otherwise. + @param src Where to get the file. + @param dest Where to put the file. + @param permissions May be -1. In this case no special permission mode is set. + @param overwrite If true, any existing file will be overwritten. + @param resume true to resume an operation. Warning, setting this to true means + that src will be appended to dest if dest exists. + You probably don't want that, so leave it to false :) + @param showProgressInfo true to show progress information + @return the job handling the operation. + + @short Copy a single file. + */ + public static native FileCopyJob file_copy(KURL src, KURL dest, int permissions, boolean overwrite, boolean resume, boolean showProgressInfo); + public static native FileCopyJob file_copy(KURL src, KURL dest, int permissions, boolean overwrite, boolean resume); + public static native FileCopyJob file_copy(KURL src, KURL dest, int permissions, boolean overwrite); + public static native FileCopyJob file_copy(KURL src, KURL dest, int permissions); + public static native FileCopyJob file_copy(KURL src, KURL dest); + /** + Move a single file. + Use either SlaveBase.rename() if the slave supports that, + or copy() and del() otherwise, or eventually get() & put() & del() + @param src Where to get the file. + @param dest Where to put the file. + @param permissions May be -1. In this case no special permission mode is set. + @param overwrite If true, any existing file will be overwritten. + @param resume true to resume an operation. Warning, setting this to true means + that src will be appended to dest if dest exists. + You probably don't want that, so leave it to false :) + @param showProgressInfo true to show progress information + @return the job handling the operation. + + @short Move a single file. + */ + public static native FileCopyJob file_move(KURL src, KURL dest, int permissions, boolean overwrite, boolean resume, boolean showProgressInfo); + public static native FileCopyJob file_move(KURL src, KURL dest, int permissions, boolean overwrite, boolean resume); + public static native FileCopyJob file_move(KURL src, KURL dest, int permissions, boolean overwrite); + public static native FileCopyJob file_move(KURL src, KURL dest, int permissions); + public static native FileCopyJob file_move(KURL src, KURL dest); + /** + Delete a single file. + @param src File to delete. + @param showProgressInfo true to show progress information + @return the job handling the operation. + + @short Delete a single file. + */ + public static native SimpleJob file_delete(KURL src, boolean showProgressInfo); + public static native SimpleJob file_delete(KURL src); + /** + List the contents of url, which is assumed to be a directory. + "." and ".." are returned, filter them out if you don't want them. + @param url the url of the directory + @param showProgressInfo true to show progress information + @param includeHidden true for all files, false to cull out UNIX hidden + files/dirs (whose names start with dot) + @return the job handling the operation. + + @short List the contents of url, which is assumed to be a directory. + */ + public static native ListJob listDir(KURL url, boolean showProgressInfo, boolean includeHidden); + public static native ListJob listDir(KURL url, boolean showProgressInfo); + public static native ListJob listDir(KURL url); + /** + The same as the previous method, but recurses subdirectories. + Directory links are not followed. + "." and ".." are returned but only for the toplevel directory. + Filter them out if you don't want them. + @param url the url of the directory + @param showProgressInfo true to show progress information + @param includeHidden true for all files, false to cull out UNIX hidden + files/dirs (whose names start with dot) + @return the job handling the operation. + + @short The same as the previous method, but recurses subdirectories. + */ + public static native ListJob listRecursive(KURL url, boolean showProgressInfo, boolean includeHidden); + public static native ListJob listRecursive(KURL url, boolean showProgressInfo); + public static native ListJob listRecursive(KURL url); + /** + Copy a file or directory src into the destination dest, + which can be a file (including the final filename) or a directory + (into which src will be copied). + This emulates the cp command completely. + @param src the file or directory to copy + @param dest the destination + @param showProgressInfo true to show progress information + @return the job handling the operation + + @short Copy a file or directory src into the destination dest, which can be a file (including the final filename) or a directory (into which src will be copied). + @see #copyAs + */ + public static native CopyJob copy(KURL src, KURL dest, boolean showProgressInfo); + public static native CopyJob copy(KURL src, KURL dest); + /** + Copy a file or directory src into the destination dest, + which is the destination name in any case, even for a directory. + As opposed to copy(), this doesn't emulate cp, but is the only + way to copy a directory, giving it a new name and getting an error + box if a directory already exists with the same name. + @param src the file or directory to copy + @param dest the destination + @param showProgressInfo true to show progress information + @return the job handling the operation + + @short Copy a file or directory src into the destination dest, which is the destination name in any case, even for a directory. + */ + public static native CopyJob copyAs(KURL src, KURL dest, boolean showProgressInfo); + public static native CopyJob copyAs(KURL src, KURL dest); + /** + Copy a list of file/dirs src into a destination directory dest. + @param src the list of files and/or directories + @param dest the destination + @param showProgressInfo true to show progress information + @return the job handling the operation + + @short Copy a list of file/dirs src into a destination directory dest. + */ + public static native CopyJob copy(ArrayList src, KURL dest, boolean showProgressInfo); + public static native CopyJob copy(ArrayList src, KURL dest); + /** + Moves a file or directory src to the given destination dest. + @param src the file or directory to copy + @param dest the destination + @param showProgressInfo true to show progress information + @return the job handling the operation + + @short Moves a file or directory src to the given destination dest. + @see #copy + @see #moveAs + */ + public static native CopyJob move(KURL src, KURL dest, boolean showProgressInfo); + public static native CopyJob move(KURL src, KURL dest); + /** + Moves a file or directory src to the given destination dest. Unlike move() + this operation will fail when the directory already exists. + @param src the file or directory to copy + @param dest the destination + @param showProgressInfo true to show progress information + @return the job handling the operation + + @short Moves a file or directory src to the given destination dest. + @see #copyAs + */ + public static native CopyJob moveAs(KURL src, KURL dest, boolean showProgressInfo); + public static native CopyJob moveAs(KURL src, KURL dest); + /** + Moves a list of files or directories src to the given destination dest. + @param src the list of files or directories to copy + @param dest the destination + @param showProgressInfo true to show progress information + @return the job handling the operation + + @short Moves a list of files or directories src to the given destination dest. + @see #copy + */ + public static native CopyJob move(ArrayList src, KURL dest, boolean showProgressInfo); + public static native CopyJob move(ArrayList src, KURL dest); + /** + Create a link. + If the protocols and hosts are the same, a Unix symlink will be created. + Otherwise, a .desktop file of Type Link and pointing to the src URL will be created. + @param src The existing file or directory, 'target' of the link. + @param destDir Destination directory where the link will be created. + @param showProgressInfo true to show progress information + @return the job handling the operation + + @short Create a link. + */ + public static native CopyJob link(KURL src, KURL destDir, boolean showProgressInfo); + public static native CopyJob link(KURL src, KURL destDir); + /** + Create several links + If the protocols and hosts are the same, a Unix symlink will be created. + Otherwise, a .desktop file of Type Link and pointing to the src URL will be created. + @param src The existing files or directories, 'targets' of the link. + @param destDir Destination directory where the links will be created. + @param showProgressInfo true to show progress information + @return the job handling the operation + + @short Create several links If the protocols and hosts are the same, a Unix symlink will be created. + @see #link + */ + public static native CopyJob link(ArrayList src, KURL destDir, boolean showProgressInfo); + public static native CopyJob link(ArrayList src, KURL destDir); + /** + Create a link. Unlike link() this operation will fail when the directory already + exists. + If the protocols and hosts are the same, a Unix symlink will be created. + Otherwise, a .desktop file of Type Link and pointing to the src URL will be created. + @param src The existing file or directory, 'target' of the link. + @param dest Destination directory where the link will be created. + @param showProgressInfo true to show progress information + @return the job handling the operation + + @short Create a link. + @see #link + @see #copyAs + */ + public static native CopyJob linkAs(KURL src, KURL dest, boolean showProgressInfo); + public static native CopyJob linkAs(KURL src, KURL dest); + /** + Trash a file or directory. + This is currently only supported for local files and directories. + Use "KURL src; src.setPath( path );" to create a URL from a path. + @param src file to delete + @param showProgressInfo true to show progress information + @return the job handling the operation + + @short Trash a file or directory. + */ + public static native CopyJob trash(KURL src, boolean showProgressInfo); + public static native CopyJob trash(KURL src); + /** + Trash a list of files or directories. + This is currently only supported for local files and directories. + @param src the files to delete + @param showProgressInfo true to show progress information + @return the job handling the operation + + @short Trash a list of files or directories. + */ + public static native CopyJob trash(ArrayList src, boolean showProgressInfo); + public static native CopyJob trash(ArrayList src); + /** + Delete a file or directory. + @param src file to delete + @param shred obsolete (TODO remove in KDE4) + @param showProgressInfo true to show progress information + @return the job handling the operation + + @short Delete a file or directory. + */ + public static native DeleteJob del(KURL src, boolean shred, boolean showProgressInfo); + public static native DeleteJob del(KURL src, boolean shred); + public static native DeleteJob del(KURL src); + /** + Deletes a list of files or directories. + @param src the files to delete + @param shred obsolete (TODO remove in KDE4) + @param showProgressInfo true to show progress information + @return the job handling the operation + + @short Deletes a list of files or directories. + */ + public static native DeleteJob del(ArrayList src, boolean shred, boolean showProgressInfo); + public static native DeleteJob del(ArrayList src, boolean shred); + public static native DeleteJob del(ArrayList src); + /** + Pastes the content of the clipboard to the given destination URL. + URLs are treated separately (performing a file copy) + from other data (which is saved into a file after asking the user + to choose a filename and the preferred data format) + @param destURL the URL to receive the data + @param move true to move the data, false to copy + @return the job that handles the operation + + @short Pastes the content of the clipboard to the given destination URL. + @see #pasteData + */ + public static native Job pasteClipboard(KURL destURL, boolean move); + public static native Job pasteClipboard(KURL destURL); + /** + Pastes the given data to the given destination URL. + NOTE: This method is blocking (uses NetAccess for saving the data). + Please consider using pasteDataAsync instead. + @param destURL the URL of the directory where the data will be pasted. + The filename to use in that directory is prompted by this method. + @param data the data to copy + @short Pastes the given data to the given destination URL. + @see #pasteClipboard + */ + public static native void pasteData(KURL destURL, byte[] data); + /** + Pastes the given data to the given destination URL. + Note that this method requires the caller to have chosen the byte[] + to paste before hand, unlike pasteClipboard and pasteMimeSource. + @param destURL the URL of the directory where the data will be pasted. + The filename to use in that directory is prompted by this method. + @param data the data to copy + @short Pastes the given data to the given destination URL. + @see #pasteClipboard + */ + public static native CopyJob pasteDataAsync(KURL destURL, byte[] data); + /** + Pastes the given data to the given destination URL. + Note that this method requires the caller to have chosen the byte[] + to paste before hand, unlike pasteClipboard and pasteMimeSource. + @param destURL the URL of the directory where the data will be pasted. + The filename to use in that directory is prompted by this method. + @param data the data to copy + @param dialogText the text to show in the dialog + @short Pastes the given data to the given destination URL. + @see #pasteClipboard + */ + public static native CopyJob pasteDataAsync(KURL destURL, byte[] data, String dialogText); + /** + Save the given mimesource data to the given destination URL + after offering the user to choose a data format. + This is the method used when handling drops (of anything else than URLs) + onto kdesktop and konqueror. + @param data the TQMimeSource (e.g. a TQDropEvent) + @param destURL the URL of the directory where the data will be pasted. + The filename to use in that directory is prompted by this method. + @param dialogText the text to show in the dialog + @param widget parent widget to use for dialogs + @param clipboard whether the TQMimeSource comes from TQClipboard. If you + use pasteClipboard for that case, you never have to worry about this parameter. + @short Save the given mimesource data to the given destination URL after offering the user to choose a data format. + @see #pasteClipboard + */ + public static native CopyJob pasteMimeSource(TQMimeSourceInterface data, KURL destURL, String dialogText, TQWidget widget, boolean clipboard); + public static native CopyJob pasteMimeSource(TQMimeSourceInterface data, KURL destURL, String dialogText, TQWidget widget); + /** + Checks whether the clipboard contains any URLs. + @return true if not + Not used anymore, wrong method name, so it will disappear in KDE4. + + @short Checks whether the clipboard contains any URLs. + */ + public static native boolean isClipboardEmpty(); + /** + Returns the text to use for the Paste action, when the application supports + pasting files, urls, and clipboard data, using pasteClipboard(). + @return a string suitable for KAction.setText, or an empty string if pasting + isn't possible right now. + + @short Returns the text to use for the Paste action, when the application supports pasting files, urls, and clipboard data, using pasteClipboard(). + */ + public static native String pasteActionText(); +} -- cgit v1.2.1