2005-06-15 [paul] 1.9.11cvs71
[claws.git] / src / gtk / progressdialog.h
index 4fa5e7f21d38cadb8aaf922df204df62e9b895e7..bcb386e56631a3b9550ce9194c04d1f66022b162 100644 (file)
@@ -22,6 +22,7 @@
 
 #include <glib.h>
 #include <gtk/gtkwidget.h>
+#include <gtk/gtkliststore.h>
 
 typedef struct _ProgressDialog ProgressDialog;
 
@@ -31,8 +32,8 @@ struct _ProgressDialog
        GtkWidget *label;
        GtkWidget *cancel_btn;
        GtkWidget *progressbar;
-       GtkWidget *clist;
-       GtkWidget *list_view;
+       GtkWidget *treeview;
+       GtkListStore *store;
 };
 
 ProgressDialog *progress_dialog_create (void);
@@ -63,7 +64,7 @@ gint progress_dialog_list_set         (ProgressDialog *progress,
                                         const gchar    *account_name,
                                         const gchar    *status);
 
-gboolean progress_dialog_list_select_row(ProgressDialog *progress,
+void progress_dialog_scroll_to_row     (ProgressDialog *progress,
                                         gint            row);
 
 #endif /* __PROGRESS_H__ */