X-Git-Url: http://pileus.org/git/?a=blobdiff_plain;f=gtk%2Fgtkactionable.h;h=15fc61719d4c1923dc1e23d05a85578664a679b9;hb=6767541ead7cc150d1dd066d3b84d85559500c28;hp=bef9bde3a96d722ec7c11c9cd6e80c710765fb6a;hpb=88ec007b9858132720cc602ac1a63396f66116bc;p=~andy%2Fgtk diff --git a/gtk/gtkactionable.h b/gtk/gtkactionable.h index bef9bde3a..15fc61719 100644 --- a/gtk/gtkactionable.h +++ b/gtk/gtkactionable.h @@ -1,7 +1,7 @@ /* * Copyright © 2012 Canonical Limited * - * This program is free software: you can redistribute it and/or modify + * This library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2 of the * licence or (at your option) any later version. @@ -12,9 +12,7 @@ * 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. + * License along with this library. If not, see . * * Authors: Ryan Lortie */ @@ -23,6 +21,7 @@ #define __GTK_ACTIONABLE_H__ #include +#include G_BEGIN_DECLS @@ -46,23 +45,30 @@ struct _GtkActionableInterface const gchar *action_name); GVariant * (* get_action_target_value) (GtkActionable *actionable); void (* set_action_target_value) (GtkActionable *actionable, - GVariant *action_target_value); + GVariant *target_value); }; +GDK_AVAILABLE_IN_3_4 GType gtk_actionable_get_type (void) G_GNUC_CONST; +GDK_AVAILABLE_IN_3_4 const gchar * gtk_actionable_get_action_name (GtkActionable *actionable); +GDK_AVAILABLE_IN_3_4 void gtk_actionable_set_action_name (GtkActionable *actionable, const gchar *action_name); +GDK_AVAILABLE_IN_3_4 GVariant * gtk_actionable_get_action_target_value (GtkActionable *actionable); +GDK_AVAILABLE_IN_3_4 void gtk_actionable_set_action_target_value (GtkActionable *actionable, GVariant *target_value); +GDK_AVAILABLE_IN_3_4 void gtk_actionable_set_action_target (GtkActionable *actionable, const gchar *format_string, ...); +GDK_AVAILABLE_IN_3_4 void gtk_actionable_set_detailed_action_name (GtkActionable *actionable, const gchar *detailed_action_name);