summaryrefslogtreecommitdiffstats
path: root/tdejava/koala/org/trinitydesktop/koala/KCustomMenuEditor.java
blob: e860ab09525c57c14a9db8b8e4a74217375385ec (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
//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.TQWidget;

/**
*/
public class KCustomMenuEditor extends KDialogBase  {
	protected KCustomMenuEditor(Class dummy){super((Class) null);}
	public native TQMetaObject metaObject();
	public native String className();
	/**
		 Create a dialog for editing a custom menu
		     		@short    Create a dialog for editing a custom menu
	*/
	public KCustomMenuEditor(TQWidget parent) {
		super((Class) null);
		newKCustomMenuEditor(parent);
	}
	private native void newKCustomMenuEditor(TQWidget parent);
	/**
		 load the custom menu
		     		@short    load the custom menu
	*/
	public native void load(TDEConfigBase arg1);
	/**
		 save the custom menu
		     		@short    save the custom menu
	*/
	public native void save(TDEConfigBase arg1);
	public native void slotNewItem();
	public native void slotRemoveItem();
	public native void slotMoveUp();
	public native void slotMoveDown();
	public native void refreshButton();
	/** 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();
}