0.8.0
[geeqie.git] / src / utildlg.h
index bd8ab5b..0c5335f 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * GQview image viewer
- * (C)1999 John Ellis
+ * (C)2000 John Ellis
  *
  * Author: John Ellis
  *
@@ -26,7 +26,8 @@ typedef struct _ConfirmDialog ConfirmDialog;
 struct _ConfirmDialog
 {
        GtkWidget *dialog;
-       GtkWidget *hbox;
+       GtkWidget *util_hbox;   /* place anything you want here */
+       GtkWidget *hbox;        /* buttons */
        void (*cancel_cb)(GtkWidget *, gpointer);
        gpointer data;
 };
@@ -35,6 +36,10 @@ struct _ConfirmDialog
 void warning_dialog(gchar *title, gchar *message);
 
 ConfirmDialog *confirm_dialog_new(gchar *title, gchar *message, void (*cancel_cb)(GtkWidget *, gpointer), gpointer data);
+ConfirmDialog *confirm_dialog_new_with_image(gchar *title, gchar *message,
+                                            gchar *img_path1, gchar *img_path2,
+                                            void (*cancel_cb)(GtkWidget *, gpointer), gpointer data);
+
 void confirm_dialog_add(ConfirmDialog *cd, gchar *text, void (*func_cb)(GtkWidget *, gpointer));
 
 FileDialog *generic_dialog_new(gchar *title, gchar *text, gchar *btn1, gchar *btn2,