[Commits] progressdialog.c 1.1.4.28 1.1.4.29 progressdialog.h 1.1.4.16 1.1.4.17
wwp at claws-mail.org
wwp at claws-mail.org
Tue Jan 31 09:43:23 CET 2012
Update of /home/claws-mail/claws/src/gtk
In directory srv:/tmp/cvs-serv29304/src/gtk
Modified Files:
Tag: gtk2
progressdialog.c progressdialog.h
Log Message:
2012-01-31 [wwp] 3.8.0cvs18
* src/gtk/progressdialog.c
* src/gtk/progressdialog.h
* src/inc.c
* src/send_message.c
Add a button to the retrieve/send dialogs to
open the network log.
Index: progressdialog.c
===================================================================
RCS file: /home/claws-mail/claws/src/gtk/progressdialog.c,v
retrieving revision 1.1.4.28
retrieving revision 1.1.4.29
diff -u -d -r1.1.4.28 -r1.1.4.29
--- progressdialog.c 7 Oct 2011 09:08:57 -0000 1.1.4.28
+++ progressdialog.c 31 Jan 2012 08:43:20 -0000 1.1.4.29
@@ -50,6 +50,7 @@
GtkWidget *hbox;
GtkWidget *vbox;
GtkWidget *label;
+ GtkWidget *showlog_btn;
GtkWidget *cancel_btn;
GtkWidget *progressbar;
GtkWidget *scrolledwin;
@@ -81,6 +82,9 @@
gtk_box_pack_start(GTK_BOX(hbox), label, FALSE, FALSE, 8);
gtk_widget_show(label);
+ showlog_btn = gtk_dialog_add_button(GTK_DIALOG(dialog),
+ _("_Show log"),
+ GTK_RESPONSE_NONE);
cancel_btn = gtk_dialog_add_button(GTK_DIALOG(dialog),
GTK_STOCK_CANCEL,
GTK_RESPONSE_NONE);
@@ -100,7 +104,6 @@
GTK_POLICY_AUTOMATIC,
GTK_POLICY_AUTOMATIC);
-
store = gtk_list_store_new(N_PROGRESS_COLUMNS, GDK_TYPE_PIXBUF, G_TYPE_STRING,
G_TYPE_STRING, G_TYPE_POINTER);
@@ -142,6 +145,7 @@
progress->window = dialog;
progress->label = label;
+ progress->showlog_btn = showlog_btn;
progress->cancel_btn = cancel_btn;
progress->progressbar = progressbar;
progress->treeview = treeview;
Index: progressdialog.h
===================================================================
RCS file: /home/claws-mail/claws/src/gtk/progressdialog.h,v
retrieving revision 1.1.4.16
retrieving revision 1.1.4.17
diff -u -d -r1.1.4.16 -r1.1.4.17
--- progressdialog.h 16 Feb 2011 07:16:22 -0000 1.1.4.16
+++ progressdialog.h 31 Jan 2012 08:43:20 -0000 1.1.4.17
@@ -29,6 +29,7 @@
{
GtkWidget *window;
GtkWidget *label;
+ GtkWidget *showlog_btn;
GtkWidget *cancel_btn;
GtkWidget *progressbar;
GtkWidget *treeview;
More information about the Commits
mailing list