// File modified by fdfix.sh for use by lyx (with xforms >= 0.88) and gettext #include #include "lyx_gui_misc.h" #include "gettext.h" /* Form definition file generated with fdesign. */ #include FORMS_H_LOCATION #include #include "form_citation.h" #include "FormCitation.h" FD_form_citation::~FD_form_citation() { if( form->visible ) fl_hide_form( form ); fl_free_form( form ); } FD_form_citation * FormCitation::build_citation() { FL_OBJECT *obj; FD_form_citation *fdui = new FD_form_citation; fdui->form = fl_bgn_form(FL_NO_BOX, 435, 665); fdui->form->u_vdata = this; fdui->box = obj = fl_add_box(FL_UP_BOX, 0, 0, 435, 665, ""); fl_set_object_resize(obj, FL_RESIZE_X); fdui->citeBrsr = obj = fl_add_browser(FL_HOLD_BROWSER, 10, 30, 180, 300, _("Inset keys")); fl_set_object_lalign(obj, FL_ALIGN_TOP_LEFT); fl_set_object_resize(obj, FL_RESIZE_X); fl_set_object_callback(obj, C_FormCommandInputCB, CITEBRSR); fdui->bibBrsr = obj = fl_add_browser(FL_HOLD_BROWSER, 240, 30, 180, 300, _("Bibliography keys")); fl_set_object_lalign(obj, FL_ALIGN_TOP_LEFT); fl_set_object_resize(obj, FL_RESIZE_X); fl_set_object_callback(obj, C_FormCommandInputCB, BIBBRSR); fdui->addBtn = obj = fl_add_button(FL_NORMAL_BUTTON, 200, 30, 30, 30, _("@4->")); fl_set_object_resize(obj, FL_RESIZE_NONE); fl_set_object_callback(obj, C_FormCommandInputCB, ADD); fdui->delBtn = obj = fl_add_button(FL_NORMAL_BUTTON, 200, 65, 30, 30, _("@9+")); fl_set_object_resize(obj, FL_RESIZE_NONE); fl_set_object_callback(obj, C_FormCommandInputCB, DELETE); fdui->upBtn = obj = fl_add_button(FL_NORMAL_BUTTON, 200, 100, 30, 30, _("@8->")); fl_set_object_resize(obj, FL_RESIZE_NONE); fl_set_object_callback(obj, C_FormCommandInputCB, UP); fdui->downBtn = obj = fl_add_button(FL_NORMAL_BUTTON, 200, 135, 30, 30, _("@2->")); fl_set_object_resize(obj, FL_RESIZE_NONE); fl_set_object_callback(obj, C_FormCommandInputCB, DOWN); fdui->infoBrsr = obj = fl_add_browser(FL_NORMAL_BROWSER, 10, 360, 410, 80, _("Info")); fl_set_object_lalign(obj, FL_ALIGN_TOP_LEFT); fl_set_object_resize(obj, FL_RESIZE_X); fdui->style = obj = fl_add_choice(FL_NORMAL_CHOICE, 160, 470, 130, 30, _("Citation style")); fl_set_object_boxtype(obj, FL_DOWN_BOX); fl_set_object_resize(obj, FL_RESIZE_X); fdui->textBefore = obj = fl_add_input(FL_NORMAL_INPUT, 100, 520, 250, 30, _("Text before")); fl_set_object_resize(obj, FL_RESIZE_X); fdui->textAftr = obj = fl_add_input(FL_NORMAL_INPUT, 100, 570, 250, 30, _("Text after")); fl_set_object_resize(obj, FL_RESIZE_X); fdui->ok = obj = fl_add_button(FL_RETURN_BUTTON, 230, 630, 90, 30, _("OK")); fl_set_object_gravity(obj, FL_SouthEast, FL_SouthEast); fl_set_object_callback(obj, C_FormCommandOKCB, 0); fdui->cancel = obj = fl_add_button(FL_NORMAL_BUTTON, 330, 630, 90, 30, _("Cancel")); fl_set_button_shortcut(obj, _("^["), 1); fl_set_object_gravity(obj, FL_SouthEast, FL_SouthEast); fl_set_object_callback(obj, C_FormCommandCancelCB, 0); fl_end_form(); fdui->form->fdui = fdui; return fdui; } /*---------------------------------------*/