summaryrefslogtreecommitdiffstats
path: root/tdejava/koala/org/trinitydesktop/koala/KWidgetAction.java
blob: 41be7a02353c485e1bdae3f65c166e54c4af0fbc (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
//Auto-generated by kalyptus. DO NOT EDIT.
package org.trinitydesktop.koala;

import org.trinitydesktop.qt.Qt;
import org.trinitydesktop.qt.TQMetaObject;
import org.trinitydesktop.qt.QtSupport;
import org.trinitydesktop.qt.TQObject;
import org.trinitydesktop.qt.TQWidget;

/**

 An action that automatically embeds a widget into a
 toolbar.
 		@short    An action that automatically embeds a widget into a  toolbar.

*/
public class KWidgetAction extends TDEAction  {
	protected KWidgetAction(Class dummy){super((Class) null);}
	public native TQMetaObject metaObject();
	public native String className();
	/**
		 Create an action that will embed widget into a toolbar
		 when plugged. This action may only be plugged into
		 a toolbar.
		     		@short    Create an action that will embed widget into a toolbar  when plugged.
	*/
	public KWidgetAction(TQWidget widget, String text, TDEShortcut cut, TQObject receiver, String slot, TDEActionCollection parent, String name) {
		super((Class) null);
		newKWidgetAction(widget,text,cut,receiver,slot,parent,name);
	}
	private native void newKWidgetAction(TQWidget widget, String text, TDEShortcut cut, TQObject receiver, String slot, TDEActionCollection parent, String name);
	/**
		 Returns the widget associated with this action.
		     		@short    Returns the widget associated with this action.
	*/
	public native TQWidget widget();
	public native void setAutoSized(boolean arg1);
	/**
		 Plug the action. The widget passed to the constructor
		 will be reparented to w, which must inherit TDEToolBar.
		     		@short    Plug the action.
	*/
	public native int plug(TQWidget widget, int index);
	public native int plug(TQWidget widget);
	/**
		 Unplug the action. Ensures that the action is not
		 destroyed. It will be hidden and reparented to null instead.
		     		@short    Unplug the action.
	*/
	public native void unplug(TQWidget w);
	protected native void slotToolbarDestroyed();
	/** 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();
}