//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:
		 if( factory() )
		 {
		   TQPtrList plugins = KParts.Plugin.pluginObjects( this );
		   TQPtrListIterator it( plugins );
		   KParts.Plugin  plugin;
		   while( ( plugin = it.current() ) != 0 )
		   {
		     ++it;
		     factory().addClient(  plugin );
		   }
		 }
		 
@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 }