Ardour  9.0-pre0-582-g084a23a80d
Gtk::AccelMap Namespace Reference

Functions

void add_entry (const std::string &accel_path, guint accel_key, Gdk::ModifierType accel_mods)
 
bool change_entry (const std::string &accel_path, guint accel_key, Gdk::ModifierType accel_mods, bool replace)
 
void load (const std::string &filename)
 
void save (const std::string &filename)
 
void lock_path (const std::string &accel_path)
 
void unlock_path (const std::string &accel_path)
 
bool lookup_entry (const Glib::ustring &accel_path)
 
bool lookup_entry (const Glib::ustring &accel_path, Gtk::AccelKey &key)
 

Function Documentation

◆ add_entry()

void Gtk::AccelMap::add_entry ( const std::string &  accel_path,
guint  accel_key,
Gdk::ModifierType  accel_mods 
)

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 change_entry(). The accelerator path must consist of "&lt;WINDOWTYPE&gt;/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...".

Parameters
accel_pathvalid accelerator path
accel_keythe accelerator key
accel_modsthe accelerator modifiers

◆ change_entry()

bool Gtk::AccelMap::change_entry ( const std::string &  accel_path,
guint  accel_key,
Gdk::ModifierType  accel_mods,
bool  replace 
)

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 true return value.

Parameters
accel_patha valid accelerator path
accel_keythe new accelerator key
accel_modsthe new accelerator modifiers
replacetrue if other accelerators may be deleted upon conflicts
Returns
true if the accelerator could be changed, false otherwise

◆ load()

void Gtk::AccelMap::load ( const std::string &  filename)

Parses a file previously saved with save() for accelerator specifications, and propagates them accordingly.

Parameters
filenamea file containing accelerator specifications

◆ lock_path()

void Gtk::AccelMap::lock_path ( const std::string &  accel_path)

Locks the given accelerator path.

Locking an accelerator path prevents its accelerator from being changed during runtime. A locked accelerator path can be unlocked by unlock_path(). Refer to change_entry() about runtime accelerator changes.

Note that locking of individual accelerator paths is independent from locking the GtkAccelGroup containing them. For runtime accelerator changes to be possible both the accelerator path and its AccelGroup have to be unlocked.

Parameters
accel_patha valid accelerator path

◆ lookup_entry() [1/2]

bool Gtk::AccelMap::lookup_entry ( const Glib::ustring &  accel_path)

Looks up the accelerator entry for accel_path.

Parameters
accel_pathA valid accelerator path.
Returns
true if accel_path is known, false otherwise

◆ lookup_entry() [2/2]

bool Gtk::AccelMap::lookup_entry ( const Glib::ustring &  accel_path,
Gtk::AccelKey key 
)

Looks up the accelerator entry for accel_path and fills in key.

Parameters
accel_pathA valid accelerator path.
keyThe accelerator key to be filled in.
Returns
true if accel_path is known, false otherwise

◆ save()

void Gtk::AccelMap::save ( const std::string &  filename)

Saves current accelerator specifications (accelerator path, key and modifiers) to filename. The file is written in a format suitable to be read back in by load().

Parameters
filenamethe file to contain accelerator specifications

◆ unlock_path()

void Gtk::AccelMap::unlock_path ( const std::string &  accel_path)

Unlocks the given accelerator path. Refer to gtk_accel_map_lock_path() about accelerator path locking.

Parameters
accel_patha valid accelerator path