summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/DockMainWindow.java
blob: 14c3c4b76fae8cf309a71b6befd27680ea0fb4c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
//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.TQObject;
import org.kde.qt.TQWidget;

/**

 A KPart-aware main window with ability for docking widgets, whose user interface is described in XML.
 Inherit your main dock-window from this class
 and don't forget to call setXMLFile() in the inherited constructor.
 It implements all internal interfaces in the case of a KDockMainWindow as host:
 the builder and servant interface (for menu merging).
 		@short    A KPart-aware main window with ability for docking widgets, whose user interface is described in XML.

*/
public class DockMainWindow extends KDockMainWindow implements PartBaseInterface {
	protected DockMainWindow(Class dummy){super((Class) null);}
	public native TQMetaObject metaObject();
	public native String className();
	/**	
		 Constructor, same signature as KDockMainWindow.
		   		@short    Constructor, same signature as KDockMainWindow.
	*/
	public DockMainWindow(TQWidget parent, String name, int f) {
		super((Class) null);
		newDockMainWindow(parent,name,f);
	}
	private native void newDockMainWindow(TQWidget parent, String name, int f);
	public DockMainWindow(TQWidget parent, String name) {
		super((Class) null);
		newDockMainWindow(parent,name);
	}
	private native void newDockMainWindow(TQWidget parent, String name);
	public DockMainWindow(TQWidget parent) {
		super((Class) null);
		newDockMainWindow(parent);
	}
	private native void newDockMainWindow(TQWidget parent);
	public DockMainWindow() {
		super((Class) null);
		newDockMainWindow();
	}
	private native void newDockMainWindow();
	protected native void createShellGUI(boolean create);
	protected native void createShellGUI();
	/**	
		 Create the GUI (by merging the host's and the active part's)
			 Called on startup and whenever the active part changes.
		 For this you need to connect this slot to the
		 PartManager.activePartChanged() signal
			@param part The active part (set to null if no part).
		   		@short    Create the GUI (by merging the host's and the active part's)
	*/
	protected native void createGUI(Part part);
	/**	
		 Called when the active part wants to change the statusbar message.
		 Reimplement if your dock-mainwindow has a complex statusbar
		 (with several items)
		   		@short    Called when the active part wants to change the statusbar message.
	*/
	protected native void slotSetStatusBarText(String arg1);
	/**	
		  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 ( KInstance) for this part.
			 Call this first in the inherited class constructor,
		 because it loads the i18n catalogues.
		   		@short    Set the instance ( KInstance) for this part.
	*/
	protected native void setInstance(KInstanceInterface instance);
	/**	
		 Set the instance ( KInstance) for this part.
			 Call this first in the inherited class constructor,
		 because it loads the i18n catalogues.
		   		@short    Set the instance ( KInstance) for this part.
	*/
	protected native void setInstance(KInstanceInterface 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, KInstanceInterface 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
}