J�rgen S's form_sendto patch.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3434 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Angus Leeming 2002-01-25 11:34:58 +00:00
parent 3b10698f3c
commit a15152c919
3 changed files with 24 additions and 10 deletions

View 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!

View 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

View 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();