]> Pileus Git - ~andy/gtk/blobdiff - gtk/gtkactionable.h
filechooserbutton: whitespace fixes
[~andy/gtk] / gtk / gtkactionable.h
index bef9bde3a96d722ec7c11c9cd6e80c710765fb6a..15fc61719d4c1923dc1e23d05a85578664a679b9 100644 (file)
@@ -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 <http://www.gnu.org/licenses/>.
  *
  * Authors: Ryan Lortie <desrt@desrt.ca>
  */
@@ -23,6 +21,7 @@
 #define __GTK_ACTIONABLE_H__
 
 #include <glib-object.h>
+#include <gdk/gdk.h>
 
 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);