X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=gio%2Fgaction.h;h=1fefd3e05b29df4885eedf388952fcbd5f723d3d;hb=7103484017ff000d01ed94567539d37fa09b32b2;hp=292c71a09413dbff17179dcd2bde9686895ae325;hpb=63adeda0861a26b38ec0adc76255666554c18951;p=platform%2Fupstream%2Fglib.git diff --git a/gio/gaction.h b/gio/gaction.h index 292c71a..1fefd3e 100644 --- a/gio/gaction.h +++ b/gio/gaction.h @@ -12,20 +12,18 @@ * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General - * Public License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place, Suite 330, - * Boston, MA 02111-1307, USA. + * Public License along with this library; if not, see . * * Authors: Ryan Lortie */ +#ifndef __G_ACTION_H__ +#define __G_ACTION_H__ + #if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION) #error "Only can be included directly." #endif -#ifndef __G_ACTION_H__ -#define __G_ACTION_H__ - #include G_BEGIN_DECLS @@ -39,20 +37,6 @@ G_BEGIN_DECLS typedef struct _GActionInterface GActionInterface; -/** - * GActionInterface: - * @get_name: the virtual function pointer for g_action_get_name() - * @get_parameter_type: the virtual function pointer for g_action_get_parameter_type() - * @get_state_type: the virtual function pointer for g_action_get_state_type() - * @get_state_hint: the virtual function pointer for g_action_get_state_hint() - * @get_enabled: the virtual function pointer for g_action_get_enabled() - * @get_state: the virtual function pointer for g_action_get_state() - * @set_state: the virtual function pointer for g_action_set_state() - * @activate: the virtual function pointer for g_action_activate(). Note that #GAction does not have an - * 'activate' signal but that implementations of it may have one. - * - * Since: 2.26 - */ struct _GActionInterface { GTypeInterface g_iface; @@ -65,27 +49,50 @@ struct _GActionInterface gboolean (* get_enabled) (GAction *action); GVariant * (* get_state) (GAction *action); - void (* set_state) (GAction *action, - GVariant *value); + void (* change_state) (GAction *action, + GVariant *value); void (* activate) (GAction *action, GVariant *parameter); }; +GLIB_AVAILABLE_IN_2_30 GType g_action_get_type (void) G_GNUC_CONST; +GLIB_AVAILABLE_IN_ALL const gchar * g_action_get_name (GAction *action); +GLIB_AVAILABLE_IN_ALL const GVariantType * g_action_get_parameter_type (GAction *action); +GLIB_AVAILABLE_IN_ALL const GVariantType * g_action_get_state_type (GAction *action); +GLIB_AVAILABLE_IN_ALL GVariant * g_action_get_state_hint (GAction *action); +GLIB_AVAILABLE_IN_ALL gboolean g_action_get_enabled (GAction *action); +GLIB_AVAILABLE_IN_ALL GVariant * g_action_get_state (GAction *action); -void g_action_set_state (GAction *action, - GVariant *value); +GLIB_AVAILABLE_IN_ALL +void g_action_change_state (GAction *action, + GVariant *value); +GLIB_AVAILABLE_IN_ALL void g_action_activate (GAction *action, GVariant *parameter); + +GLIB_AVAILABLE_IN_2_28 +gboolean g_action_name_is_valid (const gchar *action_name); + +GLIB_AVAILABLE_IN_2_38 +gboolean g_action_parse_detailed_name (const gchar *detailed_name, + gchar **action_name, + GVariant **target_value, + GError **error); + +GLIB_AVAILABLE_IN_2_38 +gchar * g_action_print_detailed_name (const gchar *action_name, + GVariant *target_value); + G_END_DECLS #endif /* __G_ACTION_H__ */