999a225edb
* refactor: use stubs for gdk-pixbuf dependency * Adjust build file * Add includes * Merge gdk_pixbuf stubs into gtk stubs * Split pixbuf sigs into own file again * Add initialization check * Apply PR feedback
7 lines
496 B
Text
7 lines
496 B
Text
GtkFileChooserNative* gtk_file_chooser_native_new(const gchar* title, GtkWindow* parent, GtkFileChooserAction action, const gchar* accept_label, const gchar* cancel_label);
|
|
void gtk_native_dialog_set_modal(GtkNativeDialog* self, gboolean modal);
|
|
void gtk_native_dialog_show(GtkNativeDialog* self);
|
|
void gtk_native_dialog_hide(GtkNativeDialog* self);
|
|
gint gtk_native_dialog_run(GtkNativeDialog* self);
|
|
void gtk_native_dialog_destroy(GtkNativeDialog* self);
|
|
GType gtk_native_dialog_get_type(void);
|