]> git.lyx.org Git - features.git/commitdiff
J�rgen S's form_sendto patch.
authorAngus Leeming <leeming@lyx.org>
Fri, 25 Jan 2002 11:34:58 +0000 (11:34 +0000)
committerAngus Leeming <leeming@lyx.org>
Fri, 25 Jan 2002 11:34:58 +0000 (11:34 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3434 a592a061-630c-0410-9148-cb99ea01b6c8

forms/ChangeLog
forms/print_form.fd
src/print_form.C

index 70dbdb2532158c6f6b3c8c6dd160a8451cbd5fc9..6e2726ecb432d284e5f56db47e3859f0b99e023a 100644 (file)
@@ -1,3 +1,8 @@
+2002-01-17  Jürgen Spitzmüller  <j.spitzmueller@gmx.de>
+
+       * print_form.fd: change these radio buttons to
+       round3dbutton, too. One never knows ;-)
+
 2001-07-20  Angus Leeming  <a.leeming@ic.ac.uk>
 
        * sp_form.fd: actually remove it!
index cd6badea2896a5004880b37c4ede0209ae8b6349..320c656718495945b237c3358d665fea9569f7c0 100644 (file)
@@ -157,7 +157,7 @@ callback:
 argument: 
 
 --------------------
-class: FL_CHECKBUTTON
+class: FL_ROUND3DBUTTON
 type: RADIO_BUTTON
 box: 110 30 110 30
 boxtype: FL_NO_BOX
@@ -175,7 +175,7 @@ callback:
 argument: 
 
 --------------------
-class: FL_CHECKBUTTON
+class: FL_ROUND3DBUTTON
 type: RADIO_BUTTON
 box: 110 60 110 30
 boxtype: FL_NO_BOX
@@ -193,7 +193,7 @@ callback:
 argument: 
 
 --------------------
-class: FL_CHECKBUTTON
+class: FL_ROUND3DBUTTON
 type: RADIO_BUTTON
 box: 10 60 100 30
 boxtype: FL_NO_BOX
@@ -212,7 +212,7 @@ argument:
        value: 1
 
 --------------------
-class: FL_CHECKBUTTON
+class: FL_ROUND3DBUTTON
 type: RADIO_BUTTON
 box: 10 30 100 30
 boxtype: FL_NO_BOX
@@ -230,7 +230,7 @@ callback:
 argument: 
 
 --------------------
-class: FL_CHECKBUTTON
+class: FL_ROUND3DBUTTON
 type: RADIO_BUTTON
 box: 220 30 90 30
 boxtype: FL_NO_BOX
index 746505a2e09fe7c915cb0247c0da17994961ef73..e6ec3d52c6de26227b8d20466decee2e0e99dd43 100644 (file)
@@ -37,16 +37,25 @@ FD_form_sendto *create_form_form_sendto(void)
     fl_set_object_callback(obj, SendtoCancelCB, 0);
 
   fdui->group_ftype = fl_bgn_group();
-  fdui->radio_ftype_dvi = obj = fl_add_checkbutton(FL_RADIO_BUTTON, 110, 30, 110, 30, idex(_("DVI|#D")));fl_set_button_shortcut(obj, scex(_("DVI|#D")), 1);
+  fdui->radio_ftype_dvi = obj = fl_add_round3dbutton(FL_RADIO_BUTTON, 110, 30, 110, 30, idex(_("DVI|#D")));fl_set_button_shortcut(obj, scex(_("DVI|#D")), 1);
+    fl_set_object_color(obj, FL_COL1, FL_YELLOW);
     fl_set_object_lsize(obj, FL_NORMAL_SIZE);
-  fdui->radio_ftype_ps = obj = fl_add_checkbutton(FL_RADIO_BUTTON, 110, 60, 110, 30, idex(_("Postscript|#P")));fl_set_button_shortcut(obj, scex(_("Postscript|#P")), 1);
+
+  fdui->radio_ftype_ps = obj = fl_add_round3dbutton(FL_RADIO_BUTTON, 110, 60, 110, 30, idex(_("Postscript|#P")));fl_set_button_shortcut(obj, scex(_("Postscript|#P")), 1);
+    fl_set_object_color(obj, FL_COL1, FL_YELLOW);
     fl_set_object_lsize(obj, FL_NORMAL_SIZE);
-  fdui->radio_ftype_latex = obj = fl_add_checkbutton(FL_RADIO_BUTTON, 10, 60, 100, 30, idex(_("LaTeX|#T")));fl_set_button_shortcut(obj, scex(_("LaTeX|#T")), 1);
+
+  fdui->radio_ftype_latex = obj = fl_add_round3dbutton(FL_RADIO_BUTTON, 10, 60, 100, 30, idex(_("LaTeX|#T")));fl_set_button_shortcut(obj, scex(_("LaTeX|#T")), 1);
+    fl_set_object_color(obj, FL_COL1, FL_YELLOW);
     fl_set_object_lsize(obj, FL_NORMAL_SIZE);
     fl_set_button(obj, 1);
-  fdui->radio_ftype_lyx = obj = fl_add_checkbutton(FL_RADIO_BUTTON, 10, 30, 100, 30, idex(_("LyX|#L")));fl_set_button_shortcut(obj, scex(_("LyX|#L")), 1);
+
+  fdui->radio_ftype_lyx = obj = fl_add_round3dbutton(FL_RADIO_BUTTON, 10, 30, 100, 30, idex(_("LyX|#L")));fl_set_button_shortcut(obj, scex(_("LyX|#L")), 1);
+    fl_set_object_color(obj, FL_COL1, FL_YELLOW);
     fl_set_object_lsize(obj, FL_NORMAL_SIZE);
-  fdui->radio_ftype_ascii = obj = fl_add_checkbutton(FL_RADIO_BUTTON, 220, 30, 90, 30, idex(_("Ascii|#s")));fl_set_button_shortcut(obj, scex(_("Ascii|#s")), 1);
+
+  fdui->radio_ftype_ascii = obj = fl_add_round3dbutton(FL_RADIO_BUTTON, 220, 30, 90, 30, idex(_("Ascii|#s")));fl_set_button_shortcut(obj, scex(_("Ascii|#s")), 1);
+    fl_set_object_color(obj, FL_COL1, FL_YELLOW);
     fl_set_object_lsize(obj, FL_NORMAL_SIZE);
   fl_end_group();