Add the new functions.

2005-07-15  Federico Mena Quintero  <federico@ximian.com>

	* gtk/gtk.symbols: Add the new functions.
This commit is contained in:
Federico Mena Quintero 2005-07-15 06:11:38 +00:00 committed by Federico Mena Quintero
parent 8ea4a9bb93
commit adc0905af3
5 changed files with 13 additions and 6 deletions

View File

@ -1,5 +1,7 @@
2005-07-15 Federico Mena Quintero <federico@ximian.com>
* gtk/gtk.symbols: Add the new functions.
* tests/testfilechooser.c (confirm_overwrite_cb): Add a test for
the confirm-overwrite signal.

View File

@ -1,5 +1,7 @@
2005-07-15 Federico Mena Quintero <federico@ximian.com>
* gtk/gtk.symbols: Add the new functions.
* tests/testfilechooser.c (confirm_overwrite_cb): Add a test for
the confirm-overwrite signal.

View File

@ -1,5 +1,7 @@
2005-07-15 Federico Mena Quintero <federico@ximian.com>
* gtk/gtk.symbols: Add the new functions.
* tests/testfilechooser.c (confirm_overwrite_cb): Add a test for
the confirm-overwrite signal.

View File

@ -1196,6 +1196,8 @@ gtk_file_chooser_get_preview_widget
gtk_file_chooser_get_preview_widget_active
gtk_file_chooser_get_select_multiple
gtk_file_chooser_get_show_hidden
gtk_file_chooser_set_do_overwrite_confirmation
gtk_file_chooser_get_do_overwrite_confirmation
gtk_file_chooser_get_type G_GNUC_CONST
gtk_file_chooser_get_uri
gtk_file_chooser_get_uris

View File

@ -189,12 +189,7 @@ gtk_file_chooser_class_init (gpointer g_iface)
g_cclosure_marshal_VOID__VOID,
G_TYPE_NONE, 0);
/**
* GtkFileChooser::confirm-overwrite
* @chooser: the object which received the signal.
*
* FIXME
*/
/* Documented in the docbook files */
g_signal_new ("confirm-overwrite",
iface_type,
G_SIGNAL_RUN_LAST,
@ -1888,6 +1883,8 @@ gtk_file_chooser_get_show_hidden (GtkFileChooser *chooser)
* You can override the way confirmation is done by actually handling the
* "confirm-overwrite" signal; please refer to its documentation for the
* details.
*
* Since: 2.8
**/
void
gtk_file_chooser_set_do_overwrite_confirmation (GtkFileChooser *chooser,
@ -1907,6 +1904,8 @@ gtk_file_chooser_set_do_overwrite_confirmation (GtkFileChooser *chooser,
*
* Return value: %TRUE if the file chooser will present a confirmation dialog;
* %FALSE otherwise.
*
* Since: 2.8
**/
gboolean
gtk_file_chooser_get_do_overwrite_confirmation (GtkFileChooser *chooser)