summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/PartBase.java
diff options
context:
space:
mode:
Diffstat (limited to 'kdejava/koala/org/kde/koala/PartBase.java')
-rw-r--r--kdejava/koala/org/kde/koala/PartBase.java72
1 files changed, 0 insertions, 72 deletions
diff --git a/kdejava/koala/org/kde/koala/PartBase.java b/kdejava/koala/org/kde/koala/PartBase.java
deleted file mode 100644
index d71bf129..00000000
--- a/kdejava/koala/org/kde/koala/PartBase.java
+++ /dev/null
@@ -1,72 +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.TQObject;
-
-/**
-
- Base class for all parts.
- @short Base class for all parts.
-
-*/
-public class PartBase extends KXMLGUIClient {
- protected PartBase(Class dummy){super((Class) null);}
- /**
- Constructor.
- @short Constructor.
- */
- public PartBase() {
- super((Class) null);
- newPartBase();
- }
- private native void newPartBase();
- /**
- Internal method. Called by KParts.Part to specify the parent object for plugin objects.
- @short Internal method.
- */
- public native void setPartObject(TQObject object);
- public native TQObject partObject();
- /**
- Set the instance ( TDEInstance) for this part.
- Call this first in the inherited class constructor,
- because it loads the i18n catalogues.
- @short Set the instance ( TDEInstance) for this part.
- */
- protected native void setInstance(TDEInstanceInterface instance);
- /**
- Set the instance ( TDEInstance) for this part.
- Call this first in the inherited class constructor,
- because it loads the i18n catalogues.
- @short Set the instance ( TDEInstance) for this part.
- */
- protected native void setInstance(TDEInstanceInterface instance, boolean loadPlugins);
- /**
- Load the Plugins honoring the PluginLoadingMode.
- If you call this method in an already constructed GUI (like when the user
- has changed which plugins are enabled) you need to add the new plugins to
- the KXMLGUIFactory:
- <pre>
- if( factory() )
- {
- TQPtrList<KParts.Plugin> plugins = KParts.Plugin.pluginObjects( this );
- TQPtrListIterator<KParts.Plugin> it( plugins );
- KParts.Plugin plugin;
- while( ( plugin = it.current() ) != 0 )
- {
- ++it;
- factory().addClient( plugin );
- }
- }
- </pre>
- @short Load the Plugins honoring the PluginLoadingMode.
- */
- protected native void loadPlugins(TQObject parent, KXMLGUIClientInterface parentGUIClient, TDEInstanceInterface instance);
- /**
- For a KParts.Part: call this before setInstance().
- For a KParts.MainWindow: call this before createGUI().
- @short For a KParts.Part: call this before setInstance().
- */
- // void setPluginLoadingMode(KParts::PartBase::PluginLoadingMode arg1); >>>> NOT CONVERTED
-}