]> Pileus Git - ~andy/gtk/blobdiff - gtk/gtkappchooserbutton.h
label: Fix memleak
[~andy/gtk] / gtk / gtkappchooserbutton.h
index 743a41ac8c8fe2ebb77f4e2e7b79a29c16f6e5bb..9d66be859ae4ed7ae5fe1399416c32f9481dfa58 100644 (file)
  * Library General Public License for more details.
  *
  * You should have received a copy of the GNU Library General Public
- * License along with the Gnome Library; see the file COPYING.LIB.  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: Cosimo Cecchi <ccecchi@redhat.com>
  */
 
+#ifndef __GTK_APP_CHOOSER_BUTTON_H__
+#define __GTK_APP_CHOOSER_BUTTON_H__
+
 #if !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION)
 #error "Only <gtk/gtk.h> can be included directly."
 #endif
 
-#ifndef __GTK_APP_CHOOSER_BUTTON_H__
-#define __GTK_APP_CHOOSER_BUTTON_H__
-
 #include <gtk/gtkcombobox.h>
 #include <gio/gio.h>
 
+G_BEGIN_DECLS
+
 #define GTK_TYPE_APP_CHOOSER_BUTTON            (gtk_app_chooser_button_get_type ())
 #define GTK_APP_CHOOSER_BUTTON(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_APP_CHOOSER_BUTTON, GtkAppChooserButton))
 #define GTK_APP_CHOOSER_BUTTON_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_APP_CHOOSER_BUTTON, GtkAppChooserButtonClass))
@@ -42,9 +42,6 @@ typedef struct _GtkAppChooserButton        GtkAppChooserButton;
 typedef struct _GtkAppChooserButtonClass   GtkAppChooserButtonClass;
 typedef struct _GtkAppChooserButtonPrivate GtkAppChooserButtonPrivate;
 
-typedef void (* GtkAppChooserButtonItemFunc) (GtkAppChooserButton *self,
-                                              gpointer             user_data);
-
 struct _GtkAppChooserButton {
   GtkComboBox parent;
 
@@ -55,23 +52,38 @@ struct _GtkAppChooserButton {
 struct _GtkAppChooserButtonClass {
   GtkComboBoxClass parent_class;
 
+  void (* custom_item_activated) (GtkAppChooserButton *self,
+                                  const gchar *item_name);
+
   /* padding for future class expansion */
   gpointer padding[16];
 };
 
 GType       gtk_app_chooser_button_get_type           (void) G_GNUC_CONST;
 
-GtkWidget * gtk_app_chooser_button_new                (const gchar                 *content_type);
+GtkWidget * gtk_app_chooser_button_new                (const gchar         *content_type);
+
+void        gtk_app_chooser_button_append_separator   (GtkAppChooserButton *self);
+void        gtk_app_chooser_button_append_custom_item (GtkAppChooserButton *self,
+                                                       const gchar         *name,
+                                                       const gchar         *label,
+                                                       GIcon               *icon);
+void     gtk_app_chooser_button_set_active_custom_item (GtkAppChooserButton *self,
+                                                        const gchar         *name);
 
-void        gtk_app_chooser_button_append_separator   (GtkAppChooserButton         *self);
-void        gtk_app_chooser_button_append_custom_item (GtkAppChooserButton         *self,
-                                                       const gchar                 *label,
-                                                       GIcon                       *icon,
-                                                       GtkAppChooserButtonItemFunc func,
-                                                       gpointer                    user_data);
+void     gtk_app_chooser_button_set_show_dialog_item  (GtkAppChooserButton *self,
+                                                       gboolean             setting);
+gboolean gtk_app_chooser_button_get_show_dialog_item  (GtkAppChooserButton *self);
+void     gtk_app_chooser_button_set_heading           (GtkAppChooserButton *self,
+                                                       const gchar         *heading);
+const gchar *
+         gtk_app_chooser_button_get_heading           (GtkAppChooserButton *self);
+GDK_AVAILABLE_IN_3_2
+void     gtk_app_chooser_button_set_show_default_item (GtkAppChooserButton *self,
+                                                       gboolean             setting);
+GDK_AVAILABLE_IN_3_2
+gboolean gtk_app_chooser_button_get_show_default_item (GtkAppChooserButton *self);
 
-void gtk_app_chooser_button_set_show_dialog_item (GtkAppChooserButton *self,
-                                                  gboolean setting);
-gboolean gtk_app_chooser_button_get_show_dialog_item (GtkAppChooserButton *self);
+G_END_DECLS
 
 #endif /* __GTK_APP_CHOOSER_BUTTON_H__ */