GtkAssistant: Add a way to have pages without padding

This can be useful when embedding complex widgets like
a file chooser as a page.

https://bugzilla.gnome.org/show_bug.cgi?id=750631
This commit is contained in:
Matthias Clasen
2015-06-14 21:29:09 -04:00
parent 43fcae91f1
commit c3a0880cd6
3 changed files with 95 additions and 1 deletions

View File

@ -217,6 +217,14 @@ void gtk_assistant_update_buttons_state (GtkAssistant *assista
GDK_AVAILABLE_IN_ALL
void gtk_assistant_commit (GtkAssistant *assistant);
GDK_AVAILABLE_IN_3_18
void gtk_assistant_set_page_has_padding (GtkAssistant *assistant,
GtkWidget *page,
gboolean has_padding);
GDK_AVAILABLE_IN_3_18
gboolean gtk_assistant_get_page_has_padding (GtkAssistant *assistant,
GtkWidget *page);
G_END_DECLS
#endif /* __GTK_ASSISTANT_H__ */