Gtk.AccelMap¶
| Subclasses: | None | 
|---|
Methods¶
| Inherited: | GObject.Object (37) | 
|---|---|
| Structs: | GObject.ObjectClass (5) | 
| class | add_entry(accel_path, accel_key, accel_mods) | 
| class | add_filter(filter_pattern) | 
| class | change_entry(accel_path, accel_key, accel_mods, replace) | 
| class | foreach(data, foreach_func) | 
| class | foreach_unfiltered(data, foreach_func) | 
| class | get() | 
| class | load(file_name) | 
| class | load_fd(fd) | 
| class | load_scanner(scanner) | 
| class | lock_path(accel_path) | 
| class | lookup_entry(accel_path) | 
| class | save(file_name) | 
| class | save_fd(fd) | 
| class | unlock_path(accel_path) | 
Virtual Methods¶
| Inherited: | GObject.Object (7) | 
|---|
Properties¶
None
Signals¶
| Inherited: | GObject.Object (1) | 
|---|
| Name | Short Description | 
|---|---|
| changed | Notifies of a change in the global accelerator map. | 
Fields¶
| Inherited: | GObject.Object (1) | 
|---|
Class Details¶
- 
class Gtk.AccelMap(**kwargs)¶
- Bases: - GObject.Object- Abstract: - No - Structure: - Gtk.AccelMapClass- Accelerator maps are used to define runtime configurable accelerators. Functions for manipulating them are are usually used by higher level convenience mechanisms like - Gtk.UIManagerand are thus considered “low-level”. You’ll want to use them if you’re manually creating menus that should have user-configurable accelerators.- An accelerator is uniquely defined by: - accelerator path
- accelerator key
- accelerator modifiers
 - The accelerator path must consist of “<WINDOWTYPE>/Category1/Category2/…/Action”, where WINDOWTYPE should be a unique application-specific identifier that corresponds to the kind of window the accelerator is being used in, e.g. “Gimp-Image”, “Abiword-Document” or “Gnumeric-Settings”. The “Category1/…/Action” portion is most appropriately chosen by the action the accelerator triggers, i.e. for accelerators on menu items, choose the item’s menu path, e.g. “File/Save As”, “Image/View/Zoom” or “Edit/Select All”. So a full valid accelerator path may look like: “<Gimp-Toolbox>/File/Dialogs/Tool Options…”. - All accelerators are stored inside one global - Gtk.AccelMapthat can be obtained using- Gtk.AccelMap.get(). See ‘Monitoring changes [monitoring-changes]’ for additional details.- Manipulating accelerators
 - New accelerators can be added using - Gtk.AccelMap.add_entry(). To search for specific accelerator, use- Gtk.AccelMap.lookup_entry(). Modifications of existing accelerators should be done using- Gtk.AccelMap.change_entry().- In order to avoid having some accelerators changed, they can be locked using - Gtk.AccelMap.lock_path(). Unlocking is done using- Gtk.AccelMap.unlock_path().- Saving and loading accelerator maps
 - Accelerator maps can be saved to and loaded from some external resource. For simple saving and loading from file, - Gtk.AccelMap.save() and- Gtk.AccelMap.load() are provided. Saving and loading can also be done by providing file descriptor to- Gtk.AccelMap.save_fd() and- Gtk.AccelMap.load_fd().- Monitoring changes
 - Gtk.AccelMapobject is only useful for monitoring changes of accelerators. By connecting to- Gtk.AccelMap- ::changedsignal, one can monitor changes of all accelerators. It is also possible to monitor only single accelerator path by using it as a detail of the- Gtk.AccelMap- ::changedsignal.- 
classmethod add_entry(accel_path, accel_key, accel_mods)[source]¶
- Parameters: - accel_path (str) – valid accelerator path
- accel_key (int) – the accelerator key
- accel_mods (Gdk.ModifierType) – the accelerator modifiers
 - Registers a new accelerator with the global accelerator map. This function should only be called once per accel_path with the canonical accel_key and accel_mods for this path. To change the accelerator during runtime programatically, use - Gtk.AccelMap.change_entry().- Set accel_key and accel_mods to 0 to request a removal of the accelerator. - Note that accel_path string will be stored in a #GQuark. Therefore, if you pass a static string, you can save some memory by interning it first with - GLib.intern_static_string().
- accel_path (
 - 
classmethod add_filter(filter_pattern)[source]¶
- Parameters: - filter_pattern ( - str) – a pattern (see- GLib.PatternSpec)- Adds a filter to the global list of accel path filters. - Accel map entries whose accel path matches one of the filters are skipped by - Gtk.AccelMap.foreach().- This function is intended for GTK+ modules that create their own menus, but don’t want them to be saved into the applications accelerator map dump. 
 - 
classmethod change_entry(accel_path, accel_key, accel_mods, replace)[source]¶
- Parameters: - accel_path (str) – a valid accelerator path
- accel_key (int) – the new accelerator key
- accel_mods (Gdk.ModifierType) – the new accelerator modifiers
- replace (bool) –Trueif other accelerators may be deleted upon conflicts
 - Returns: - Return type: - Changes the accel_key and accel_mods currently associated with accel_path. 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 - Truereturn value.- Note that accel_path string will be stored in a #GQuark. Therefore, if you pass a static string, you can save some memory by interning it first with - GLib.intern_static_string().
- accel_path (
 - 
classmethod foreach(data, foreach_func)[source]¶
- Parameters: - data (objectorNone) – data to be passed into foreach_func
- foreach_func (Gtk.AccelMapForeach) – function to be executed for each accel map entry which is not filtered out
 - Loops over the entries in the accelerator map whose accel path doesn’t match any of the filters added with - Gtk.AccelMap.add_filter(), and execute foreach_func on each. The signature of foreach_func is that of- Gtk.AccelMapForeach, the changed parameter indicates whether this accelerator was changed during runtime (thus, would need saving during an accelerator map dump).
- data (
 - 
classmethod foreach_unfiltered(data, foreach_func)[source]¶
- Parameters: - data (objectorNone) – data to be passed into foreach_func
- foreach_func (Gtk.AccelMapForeach) – function to be executed for each accel map entry
 - Loops over all entries in the accelerator map, and execute foreach_func on each. The signature of foreach_func is that of - Gtk.AccelMapForeach, the changed parameter indicates whether this accelerator was changed during runtime (thus, would need saving during an accelerator map dump).
- data (
 - 
classmethod get()[source]¶
- Returns: - the global - Gtk.AccelMapobject- Return type: - Gtk.AccelMap- Gets the singleton global - Gtk.AccelMapobject. This object is useful only for notification of changes to the accelerator map via the- ::changedsignal; it isn’t a parameter to the other accelerator map functions.- New in version 2.4. 
 - 
classmethod load(file_name)[source]¶
- Parameters: - file_name ( - str) – a file containing accelerator specifications, in the GLib file name encoding- Parses a file previously saved with - Gtk.AccelMap.save() for accelerator specifications, and propagates them accordingly.
 - 
classmethod load_fd(fd)[source]¶
- Parameters: - fd ( - int) – a valid readable file descriptor- Filedescriptor variant of - Gtk.AccelMap.load().- Note that the file descriptor will not be closed by this function. 
 - 
classmethod load_scanner(scanner)[source]¶
- Parameters: - scanner ( - GLib.Scanner) – a- GLib.Scannerwhich has already been provided with an input file- GLib.Scannervariant of- Gtk.AccelMap.load().
 - 
classmethod lock_path(accel_path)[source]¶
- Parameters: - accel_path ( - str) – a valid accelerator path- 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 - Gtk.AccelMap.unlock_path(). Refer to- Gtk.AccelMap.change_entry() for information about runtime accelerator changes.- If called more than once, accel_path remains locked until - Gtk.AccelMap.unlock_path() has been called an equivalent number of times.- Note that locking of individual accelerator paths is independent from locking the - Gtk.AccelGroupcontaining them. For runtime accelerator changes to be possible, both the accelerator path and its- Gtk.AccelGrouphave to be unlocked.- New in version 2.4. 
 - 
classmethod lookup_entry(accel_path)[source]¶
- Parameters: - accel_path ( - str) – a valid accelerator path- Returns: - Trueif accel_path is known,- Falseotherwise- key: - the accelerator key to be filled in (optional) - Return type: - ( - bool, key:- Gtk.AccelKey)- Looks up the accelerator entry for accel_path and fills in key. 
 - 
classmethod save(file_name)[source]¶
- Parameters: - file_name ( - str) – the name of the file to contain accelerator specifications, in the GLib file name encoding- Saves current accelerator specifications (accelerator path, key and modifiers) to file_name. The file is written in a format suitable to be read back in by - Gtk.AccelMap.load().
 - 
classmethod save_fd(fd)[source]¶
- Parameters: - fd ( - int) – a valid writable file descriptor- Filedescriptor variant of - Gtk.AccelMap.save().- Note that the file descriptor will not be closed by this function. 
 - 
classmethod unlock_path(accel_path)[source]¶
- Parameters: - accel_path ( - str) – a valid accelerator path- Undoes the last call to - Gtk.AccelMap.lock_path() on this accel_path. Refer to- Gtk.AccelMap.lock_path() for information about accelerator path locking.- New in version 2.4. 
 
Signal Details¶
- 
Gtk.AccelMap.signals.changed(accel_map, accel_path, accel_key, accel_mods)¶
- Signal Name: - changed- Flags: - Parameters: - accel_map (Gtk.AccelMap) – The object which received the signal
- accel_path (str) – the path of the accelerator that changed
- accel_key (int) – the key value for the new accelerator
- accel_mods (Gdk.ModifierType) – the modifier mask for the new accelerator
 - Notifies of a change in the global accelerator map. The path is also used as the detail for the signal, so it is possible to connect to changed:: - accel_path.- New in version 2.4. 
- accel_map (