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

import org.trinitydesktop.qt.Qt;
import org.trinitydesktop.qt.QtSupport;
import org.trinitydesktop.qt.TQVariant;

/**

 TDEShortcutList implementation to access TDEAccel and
 TDEGlobalAccel lists.
 		@short    TDEShortcutList implementation to access TDEAccel and  TDEGlobalAccel lists.

*/
public class TDEAccelShortcutList extends TDEShortcutList  {
	protected TDEAccelShortcutList(Class dummy){super((Class) null);}
	/**
		 Creates a new TDEShortcutList that accesses the given TDEAccel.
			@param accel the accelerators to access
			 		@short    Creates a new TDEShortcutList that accesses the given TDEAccel.
	*/
	public TDEAccelShortcutList(TDEAccel accel) {
		super((Class) null);
		newTDEAccelShortcutList(accel);
	}
	private native void newTDEAccelShortcutList(TDEAccel accel);
	/**
		 Creates a new TDEShortcutList that accesses the given
		 TDEGlobalAccel.
			@param accel the accelerators to access
			 		@short    Creates a new TDEShortcutList that accesses the given  TDEGlobalAccel.
	*/
	public TDEAccelShortcutList(TDEGlobalAccel accel) {
		super((Class) null);
		newTDEAccelShortcutList(accel);
	}
	private native void newTDEAccelShortcutList(TDEGlobalAccel accel);
	/**
			 Creates a new TDEShortcutList that accesses the given
		 TDEAccelActions collection.
			@param actions the actions to access
			@param bGlobal true to save the actions in the global
		        configuration file
			 		@short
	*/
	public TDEAccelShortcutList(TDEAccelActions actions, boolean bGlobal) {
		super((Class) null);
		newTDEAccelShortcutList(actions,bGlobal);
	}
	private native void newTDEAccelShortcutList(TDEAccelActions actions, boolean bGlobal);
	public native int count();
	public native String name(int index);
	public native String label(int index);
	public native String whatsThis(int index);
	public native TDEShortcut shortcut(int index);
	public native TDEShortcut shortcutDefault(int index);
	public native boolean isConfigurable(int index);
	public native boolean setShortcut(int index, TDEShortcut shortcut);
	public native boolean isGlobal(int index);
	/**	 \internal 		@short   \internal
	*/
	public native TQVariant getOther(int arg1, int index);
	/**	 \internal 		@short   \internal
	*/
	public native boolean setOther(int arg1, int index, TQVariant arg3);
	public native boolean save();
	/** 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();
}