org.gnu.gtk

Class AccelMap


public class AccelMap
extends GObject

END OF JNI CODE

Method Summary

static boolean
changeEntry(String accelPath, int key, ModifierType mods, boolean replace)
Deprecated. Superceeded by java-gnome 4.0; a method along these lines may well exist in the new bindings, but if it does it likely has a different name or signature due to the shift to an algorithmic mapping of the underlying native libraries.
static AccelMap
getAccelMap()
static AccelMap
getAccelMap(Handle handle)
Deprecated. Superceeded by java-gnome 4.0; a method along these lines may well exist in the new bindings, but if it does it likely has a different name or signature due to the shift to an algorithmic mapping of the underlying native libraries.
static void
load(String filename)
Deprecated. Superceeded by java-gnome 4.0; a method along these lines may well exist in the new bindings, but if it does it likely has a different name or signature due to the shift to an algorithmic mapping of the underlying native libraries.
static void
lockPath(String path)
Deprecated. Superceeded by java-gnome 4.0; a method along these lines may well exist in the new bindings, but if it does it likely has a different name or signature due to the shift to an algorithmic mapping of the underlying native libraries.
static AccelKey
lookupEntry(String accelPath)
Deprecated. Superceeded by java-gnome 4.0; a method along these lines may well exist in the new bindings, but if it does it likely has a different name or signature due to the shift to an algorithmic mapping of the underlying native libraries.
static void
save(String filename)
Deprecated. Superceeded by java-gnome 4.0; a method along these lines may well exist in the new bindings, but if it does it likely has a different name or signature due to the shift to an algorithmic mapping of the underlying native libraries.
static void
unlockPath(String path)
Deprecated. Superceeded by java-gnome 4.0; a method along these lines may well exist in the new bindings, but if it does it likely has a different name or signature due to the shift to an algorithmic mapping of the underlying native libraries.

Method Details

changeEntry

public static boolean changeEntry(String accelPath,
                                  int key,
                                  ModifierType mods,
                                  boolean replace)

Deprecated. Superceeded by java-gnome 4.0; a method along these lines may well exist in the new bindings, but if it does it likely has a different name or signature due to the shift to an algorithmic mapping of the underlying native libraries.

Changes the key (from KeyValue) and ModifierType currently associated with accelPath. Due to conflicts with other accelerators, a change may not always be possible, replace indicates whether other accelerators may be deleted to resolve such conflicts. A change will only occur if all conflicts could be resolved (which might not be the case if conflicting accelerators are locked). Successful changes are indicated by a true return value.
Parameters:
accelPath - The path to change
key - The new KeySymbol for the path
mods - The new modifiers to the path
replace - If true, removes conflicting accelerators
Returns:
true if the change succeeded, false, otherwise
Since:
2.8.1

getAccelMap

public static AccelMap getAccelMap()

getAccelMap

public static AccelMap getAccelMap(Handle handle)

Deprecated. Superceeded by java-gnome 4.0; a method along these lines may well exist in the new bindings, but if it does it likely has a different name or signature due to the shift to an algorithmic mapping of the underlying native libraries.

Internal static factory method to be used by Java-Gnome only.

load

public static void load(String filename)

Deprecated. Superceeded by java-gnome 4.0; a method along these lines may well exist in the new bindings, but if it does it likely has a different name or signature due to the shift to an algorithmic mapping of the underlying native libraries.

Loads a file previously saved with the same method, parses the file for accelerator specifications, and propagates them accordingly.
Parameters:
filename - The name of the file to read.

lockPath

public static void lockPath(String path)

Deprecated. Superceeded by java-gnome 4.0; a method along these lines may well exist in the new bindings, but if it does it likely has a different name or signature due to the shift to an algorithmic mapping of the underlying native libraries.

Locks the given accelerator path. If the accelerator map doesn't yet contain an entry for accel_path, a new one is created. Locking an accelerator path prevents its accelerator from being changed during runtime. A locked accelerator path can be unlocked by unlockPath(String) Refer to changeEntry(String,int,ModifierType,boolean) for information about runtime accelerator changes. If called more than once, accel_path remains locked until unlockPath(String) has been called an equivalent number of times. Note that locking of individual accelerator paths is independent from locking the AccelGroup containing them. For runtime accelerator changes to be possible both the accelerator path and its AccelGroup have to be unlocked.
Parameters:
path - The path to lock

lookupEntry

public static AccelKey lookupEntry(String accelPath)

Deprecated. Superceeded by java-gnome 4.0; a method along these lines may well exist in the new bindings, but if it does it likely has a different name or signature due to the shift to an algorithmic mapping of the underlying native libraries.

Looks up the accelerator entry for accelPath and returns the AccelKey
Parameters:
accelPath - The path to get the accelerator entry for
Returns:
The AccelKey representing the accelerator
Since:
2.8.1

save

public static void save(String filename)

Deprecated. Superceeded by java-gnome 4.0; a method along these lines may well exist in the new bindings, but if it does it likely has a different name or signature due to the shift to an algorithmic mapping of the underlying native libraries.

Saves the current accelerator specification (accelerator path, key, and modifiers) to the filename specified.
Parameters:
filename - The name of the file to write.

unlockPath

public static void unlockPath(String path)

Deprecated. Superceeded by java-gnome 4.0; a method along these lines may well exist in the new bindings, but if it does it likely has a different name or signature due to the shift to an algorithmic mapping of the underlying native libraries.

Undoes the last call to lockPath(String) on this accel_path. Refer to lockPath(String) for information about accelerator path locking.
Parameters:
path - The path to unlock