Gio.ActionMap

const Gio = imports.gi.Gio;

let action_map = new Gio.ActionMap();
  

The GActionMap interface is implemented by Gio.ActionGroup implementations that operate by containing a number of named Gio.Action instances, such as Gio.SimpleActionGroup.

One useful application of this interface is to map the names of actions from various action groups to unique, prefixed names (e.g. by prepending "app." or "win."). This is the motivation for the 'Map' part of the interface name.

Prerequisites

ActionMap requires GObject.Object

Known Implementations

ActionMap is implemented by Application and SimpleActionGroup