summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/TDEToggleToolBarAction.java
blob: bea7226c1a2c2efc9390fd6bfa04ed5603ec59d1 (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
//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;

/**

 An action that takes care of everything associated with
 showing or hiding a toolbar by a menu action. It will
 show or hide the toolbar with the given name when
 activated, and check or uncheck itself if the toolbar
 is manually shown or hidden.
 If you need to perfom some additional action when the
 toolbar is shown or hidden, connect to the toggled(boolean)
 signal. It will be emitted after the toolbar's
 visibility has changed, whenever it changes.
		@short    An action that takes care of everything associated with  showing or hiding a toolbar by a menu action.

*/
public class TDEToggleToolBarAction extends TDEToggleAction  {
	protected TDEToggleToolBarAction(Class dummy){super((Class) null);}
	public native TQMetaObject metaObject();
	public native String className();
	/**	
		 Create a TDEToggleToolbarAction that manages the toolbar
		 named toolBarName. This can be either the name of a
		 toolbar in an xml ui file, or a toolbar programmatically
		 created with that name.
		     		@short    Create a TDEToggleToolbarAction that manages the toolbar  named toolBarName.
	*/
	public TDEToggleToolBarAction(String toolBarName, String text, TDEActionCollection parent, String name) {
		super((Class) null);
		newTDEToggleToolBarAction(toolBarName,text,parent,name);
	}
	private native void newTDEToggleToolBarAction(String toolBarName, String text, TDEActionCollection parent, String name);
	public TDEToggleToolBarAction(TDEToolBar toolBar, String text, TDEActionCollection parent, String name) {
		super((Class) null);
		newTDEToggleToolBarAction(toolBar,text,parent,name);
	}
	private native void newTDEToggleToolBarAction(TDEToolBar toolBar, String text, TDEActionCollection parent, String name);
	public native int plug(TQWidget widget, int index);
	public native int plug(TQWidget widget);
	public native TDEToolBar toolBar();
	public native void setChecked(boolean arg1);
	/** 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();
}