aboutsummaryrefslogtreecommitdiff
path: root/src/progressdialog.h
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2008-09-26 07:36:00 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2008-09-26 07:36:00 +0000
commitc5b3f5701e836a2283461065a79d17875fe454f1 (patch)
treeddae4610ca946f0e075dcaabdb5c402373d136a7 /src/progressdialog.h
parent2569f2416f350e29ff414671b74f2524fa883113 (diff)
added progress column to the progress dialog.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@2043 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'src/progressdialog.h')
-rw-r--r--src/progressdialog.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/progressdialog.h b/src/progressdialog.h
index 33cf9836..1a722b3a 100644
--- a/src/progressdialog.h
+++ b/src/progressdialog.h
@@ -1,6 +1,6 @@
/*
* Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
- * Copyright (C) 1999-2005 Hiroyuki Yamamoto
+ * Copyright (C) 1999-2008 Hiroyuki Yamamoto
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -43,6 +43,7 @@ typedef enum
PROG_COL_PIXBUF,
PROG_COL_NAME,
PROG_COL_STATUS,
+ PROG_COL_PROGRESS,
PROG_COL_POINTER,
PROG_N_COLS
} ProgressColumn;
@@ -61,12 +62,14 @@ void progress_dialog_append (ProgressDialog *progress,
GdkPixbuf *pixbuf,
const gchar *name,
const gchar *status,
+ const gchar *progress_str,
gpointer data);
void progress_dialog_set_row (ProgressDialog *progress,
gint row,
GdkPixbuf *pixbuf,
const gchar *name,
const gchar *status,
+ const gchar *progress_str,
gpointer data);
void progress_dialog_set_row_pixbuf (ProgressDialog *progress,
@@ -78,6 +81,9 @@ void progress_dialog_set_row_name (ProgressDialog *progress,
void progress_dialog_set_row_status (ProgressDialog *progress,
gint row,
const gchar *status);
+void progress_dialog_set_row_progress (ProgressDialog *progress,
+ gint row,
+ const gchar *progress_str);
void progress_dialog_scroll_to_row (ProgressDialog *progress,
gint row);