Github User Fetcher 1.0.0
C Application with Server and GUI
Loading...
Searching...
No Matches
gactionmap.h File Reference
#include <gio/giotypes.h>

Go to the source code of this file.

Data Structures

struct  _GActionMapInterface
 
struct  _GActionEntry
 

Macros

#define G_TYPE_ACTION_MAP   (g_action_map_get_type ())
 
#define G_ACTION_MAP(inst)
 
#define G_IS_ACTION_MAP(inst)
 
#define G_ACTION_MAP_GET_IFACE(inst)
 

Typedefs

typedef struct _GActionMapInterface GActionMapInterface
 
typedef struct _GActionEntry GActionEntry
 

Functions

GIO_AVAILABLE_IN_2_32 GType g_action_map_get_type (void) G_GNUC_CONST
 
GIO_AVAILABLE_IN_2_32 GActiong_action_map_lookup_action (GActionMap *action_map, const gchar *action_name)
 
GIO_AVAILABLE_IN_2_32 void g_action_map_add_action (GActionMap *action_map, GAction *action)
 
GIO_AVAILABLE_IN_2_32 void g_action_map_remove_action (GActionMap *action_map, const gchar *action_name)
 
GIO_AVAILABLE_IN_2_32 void g_action_map_add_action_entries (GActionMap *action_map, const GActionEntry *entries, gint n_entries, gpointer user_data)
 
GIO_AVAILABLE_IN_2_78 void g_action_map_remove_action_entries (GActionMap *action_map, const GActionEntry *entries, gint n_entries)
 

Macro Definition Documentation

◆ G_ACTION_MAP

#define G_ACTION_MAP ( inst)
Value:
#define G_TYPE_ACTION_MAP
Definition gactionmap.h:34
struct _GActionMap GActionMap
Definition giotypes.h:54
#define G_TYPE_CHECK_INSTANCE_CAST(instance, g_type, c_type)
Definition gtype.h:528

Definition at line 35 of file gactionmap.h.

35#define G_ACTION_MAP(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), \
36 G_TYPE_ACTION_MAP, GActionMap))

◆ G_ACTION_MAP_GET_IFACE

#define G_ACTION_MAP_GET_IFACE ( inst)
Value:
#define G_TYPE_INSTANCE_GET_INTERFACE(instance, g_type, c_type)
Definition gtype.h:584

Definition at line 39 of file gactionmap.h.

39#define G_ACTION_MAP_GET_IFACE(inst) (G_TYPE_INSTANCE_GET_INTERFACE ((inst), \
40 G_TYPE_ACTION_MAP, GActionMapInterface))

◆ G_IS_ACTION_MAP

#define G_IS_ACTION_MAP ( inst)
Value:
#define G_TYPE_CHECK_INSTANCE_TYPE(instance, g_type)
Definition gtype.h:541

Definition at line 37 of file gactionmap.h.

37#define G_IS_ACTION_MAP(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), \
38 G_TYPE_ACTION_MAP))

◆ G_TYPE_ACTION_MAP

#define G_TYPE_ACTION_MAP   (g_action_map_get_type ())

Definition at line 34 of file gactionmap.h.

Typedef Documentation

◆ GActionEntry

typedef struct _GActionEntry GActionEntry

Definition at line 43 of file gactionmap.h.

◆ GActionMapInterface

Definition at line 42 of file gactionmap.h.

Function Documentation

◆ g_action_map_add_action()

GIO_AVAILABLE_IN_2_32 void g_action_map_add_action ( GActionMap * action_map,
GAction * action )

◆ g_action_map_add_action_entries()

GIO_AVAILABLE_IN_2_32 void g_action_map_add_action_entries ( GActionMap * action_map,
const GActionEntry * entries,
gint n_entries,
gpointer user_data )

◆ g_action_map_get_type()

GIO_AVAILABLE_IN_2_32 GType g_action_map_get_type ( void )

◆ g_action_map_lookup_action()

GIO_AVAILABLE_IN_2_32 GAction * g_action_map_lookup_action ( GActionMap * action_map,
const gchar * action_name )

◆ g_action_map_remove_action()

GIO_AVAILABLE_IN_2_32 void g_action_map_remove_action ( GActionMap * action_map,
const gchar * action_name )

◆ g_action_map_remove_action_entries()

GIO_AVAILABLE_IN_2_78 void g_action_map_remove_action_entries ( GActionMap * action_map,
const GActionEntry * entries,
gint n_entries )