Constructor
GtkShortcutActionparse_string
Declaration [src]
GtkShortcutAction*
gtk_shortcut_action_parse_string (
const char* string
)
Description [src]
Tries to parse the given string into an action.
On success, the parsed action is returned. When parsing
failed, NULL
is returned.
The accepted strings are:
nothing
, forGtkNothingAction
activate
, forGtkActivateAction
mnemonic-activate
, forGtkMnemonicAction
action(NAME)
, for aGtkNamedAction
for the action namedNAME
signal(NAME)
, for aGtkSignalAction
for the signalNAME
.
Parameters
string
-
Type:
const char*
The string to parse.
The data is owned by the caller of the function. The value is a NUL terminated UTF-8 string.
Return value
Type: GtkShortcutAction
A new GtkShortcutAction
.
The caller of the function takes ownership of the data, and is responsible for freeing it. |
The return value can be NULL . |