Constructor
Gtk.ShortcutAction.parse_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, for- GtkNothingAction
- activate, for- GtkActivateAction
- mnemonic-activate, for- GtkMnemonicAction
- action(NAME), for a- GtkNamedActionfor the action named- NAME
- signal(NAME), for a- GtkSignalActionfor the signal- NAME
Parameters
| string | const char* | 
| the string to parse | |
| Ownership is not transferred to the callee | |
| The string is a NUL terminated UTF-8 string | 
Return value
| Returns: GtkShortcutAction | |
| a new  | |
| Ownership of the data is transferred to the caller | |
| Can be NULL | |