X-Git-Url: http://pileus.org/git/?a=blobdiff_plain;f=gtk%2Fgtkappchooserbutton.h;h=9d66be859ae4ed7ae5fe1399416c32f9481dfa58;hb=HEAD;hp=61a88b11cebce570574b0f59de15888f33c638f9;hpb=5f942b123248712f86fe7bfc3724b899a2bc0844;p=~andy%2Fgtk diff --git a/gtk/gtkappchooserbutton.h b/gtk/gtkappchooserbutton.h index 61a88b11c..9d66be859 100644 --- a/gtk/gtkappchooserbutton.h +++ b/gtk/gtkappchooserbutton.h @@ -14,23 +14,23 @@ * 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 . * * Authors: Cosimo Cecchi */ +#ifndef __GTK_APP_CHOOSER_BUTTON_H__ +#define __GTK_APP_CHOOSER_BUTTON_H__ + #if !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION) #error "Only can be included directly." #endif -#ifndef __GTK_APP_CHOOSER_BUTTON_H__ -#define __GTK_APP_CHOOSER_BUTTON_H__ - #include #include +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)) @@ -68,9 +68,22 @@ 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_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); + +G_END_DECLS #endif /* __GTK_APP_CHOOSER_BUTTON_H__ */