CVS: sylpheed-claws/src prefs_compose_writing.c,1.1.2.6,1.1.2.7 prefs_quote.c,1.1.2.8,1.1.2.9

Colin Leroy <[email protected]>
Newsgroups gmane.mail.sylpheed.claws.cvs
Message-ID <[email protected]>
Update of /cvsroot/sylpheed-claws/sylpheed-claws/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3008/src

Modified Files:
      Tag: gtk2
	prefs_compose_writing.c prefs_quote.c 
Log Message:
2006-04-29 [colin]	2.1.1cvs42

	* src/prefs_compose_writing.c
	* src/prefs_quote.c
		Cleanups. Patch by Pawel

Index: prefs_compose_writing.c
===================================================================
RCS file: /cvsroot/sylpheed-claws/sylpheed-claws/src/Attic/prefs_compose_writing.c,v
retrieving revision 1.1.2.6
retrieving revision 1.1.2.7
diff -u -r1.1.2.6 -r1.1.2.7
--- prefs_compose_writing.c	13 Jan 2006 17:24:13 -0000	1.1.2.6
+++ prefs_compose_writing.c	29 Apr 2006 09:31:54 -0000	1.1.2.7
@@ -68,7 +68,7 @@
 
 	GtkWidget *checkbtn_autoextedit;
 
-	GtkWidget *frame_autosel;
+	GtkWidget *frame;
 	GtkWidget *hbox_autosel;
 	GtkWidget *checkbtn_reply_account_autosel;
 	GtkWidget *checkbtn_forward_account_autosel;
@@ -94,30 +94,27 @@
 	gtk_widget_show (vbox1);
 	gtk_container_set_border_width (GTK_CONTAINER (vbox1), VBOX_BORDER);
 
-        /* Account autoselection */
-	PACK_FRAME(vbox1, frame_autosel, _("Automatic account selection"));
+	/* Account autoselection */
+	PACK_FRAME(vbox1, frame, _("Automatic account selection"));
 
-	hbox_autosel = gtk_hbox_new (FALSE, VSPACING_NARROW);
+	hbox_autosel = gtk_hbox_new (TRUE, VSPACING_NARROW);
 	gtk_widget_show (hbox_autosel);
-	gtk_container_add (GTK_CONTAINER (frame_autosel), hbox_autosel);
+	gtk_container_add (GTK_CONTAINER (frame), hbox_autosel);
 	gtk_container_set_border_width (GTK_CONTAINER (hbox_autosel), 8);
 
-        PACK_CHECK_BUTTON (hbox_autosel, checkbtn_reply_account_autosel,
+	PACK_CHECK_BUTTON (hbox_autosel, checkbtn_reply_account_autosel,
 			   _("when replying"));
 	PACK_CHECK_BUTTON (hbox_autosel, checkbtn_forward_account_autosel,
 			   _("when forwarding"));
 	PACK_CHECK_BUTTON (hbox_autosel, checkbtn_reedit_account_autosel,
 			   _("when re-editing"));
 
-	vbox2 = gtk_vbox_new (FALSE, 0);
+	PACK_FRAME(vbox1, frame, _("Forwarding"));
+	
+	vbox2 = gtk_vbox_new (FALSE, VSPACING_NARROW);
 	gtk_widget_show (vbox2);
-	gtk_box_pack_start (GTK_BOX (vbox1), vbox2, FALSE, FALSE, 0);
-
-	PACK_CHECK_BUTTON (vbox2, checkbtn_default_reply_list,
-			   _("Reply button invokes mailing list reply"));
-
-	PACK_CHECK_BUTTON (vbox2, checkbtn_autoextedit,
-			   _("Automatically launch the external editor"));
+	gtk_container_add (GTK_CONTAINER (frame), vbox2);
+	gtk_container_set_border_width (GTK_CONTAINER (vbox2), 8);	
 
 	PACK_CHECK_BUTTON (vbox2, checkbtn_forward_as_attachment,
 			   _("Forward as attachment"));
@@ -125,6 +122,16 @@
 	PACK_CHECK_BUTTON (vbox2, checkbtn_redirect_keep_from,
 			   _("Keep the original 'From' header when redirecting"));
 
+	PACK_FRAME(vbox1, frame, _("Editing"));
+
+	vbox2 = gtk_vbox_new (FALSE, VSPACING_NARROW);
+	gtk_widget_show (vbox2);
+	gtk_container_add (GTK_CONTAINER (frame), vbox2);
+	gtk_container_set_border_width (GTK_CONTAINER (vbox2), 8);
+
+	PACK_CHECK_BUTTON (vbox2, checkbtn_autoextedit,
+			   _("Automatically launch the external editor"));
+
 	hbox_autosave = gtk_hbox_new (FALSE, 8);
 	gtk_widget_show (hbox_autosave);
 	gtk_box_pack_start (GTK_BOX (vbox2), hbox_autosave, FALSE, FALSE, 0);
@@ -159,13 +166,16 @@
 	gtk_box_pack_start (GTK_BOX (hbox_undolevel), spinbtn_undolevel, FALSE, FALSE, 0);
 	gtk_widget_set_size_request (spinbtn_undolevel, 64, -1);
 	gtk_spin_button_set_numeric (GTK_SPIN_BUTTON (spinbtn_undolevel), TRUE);
+	
+	PACK_CHECK_BUTTON (vbox1, checkbtn_default_reply_list,
+			   _("Reply button invokes mailing list reply"));
 
 	SET_TOGGLE_SENSITIVITY (checkbtn_autosave, spinbtn_autosave_length);
 	SET_TOGGLE_SENSITIVITY (checkbtn_autosave, label_autosave_length);
 
 	prefs_writing->checkbtn_autoextedit = checkbtn_autoextedit;
 
-        prefs_writing->checkbtn_reply_account_autosel   = checkbtn_reply_account_autosel;
+	prefs_writing->checkbtn_reply_account_autosel   = checkbtn_reply_account_autosel;
 	prefs_writing->checkbtn_forward_account_autosel = checkbtn_forward_account_autosel;
 	prefs_writing->checkbtn_reedit_account_autosel  = checkbtn_reedit_account_autosel;
 

Index: prefs_quote.c
===================================================================
RCS file: /cvsroot/sylpheed-claws/sylpheed-claws/src/Attic/prefs_quote.c,v
retrieving revision 1.1.2.8
retrieving revision 1.1.2.9
diff -u -r1.1.2.8 -r1.1.2.9
--- prefs_quote.c	13 Jan 2006 17:24:14 -0000	1.1.2.8
+++ prefs_quote.c	29 Apr 2006 09:31:54 -0000	1.1.2.9
@@ -127,7 +127,7 @@
 	gtk_widget_show (text_quotefmt);
 	gtk_container_add(GTK_CONTAINER(scrolledwin_quotefmt), text_quotefmt);
 	gtk_text_view_set_editable (GTK_TEXT_VIEW (text_quotefmt), TRUE);
-	gtk_widget_set_size_request(text_quotefmt, -1, 60);
+	gtk_widget_set_size_request(text_quotefmt, -1, 100);
 
 	/* forward */
 
@@ -171,7 +171,7 @@
 	gtk_container_add(GTK_CONTAINER(scrolledwin_quotefmt),
 			  text_fw_quotefmt);
 	gtk_text_view_set_editable (GTK_TEXT_VIEW (text_fw_quotefmt), TRUE);
-	gtk_widget_set_size_request (text_fw_quotefmt, -1, 60);
+	gtk_widget_set_size_request (text_fw_quotefmt, -1, 100);
 
 	hbox1 = gtk_hbox_new (FALSE, 32);
 	gtk_widget_show (hbox1);



-------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.