]> git.lyx.org Git - lyx.git/blob - src/log_form.C
get builddir!=srcdir compiling working; allow successful make even without noweb...
[lyx.git] / src / log_form.C
1 // File modified by fdfix.sh for use by lyx (with xforms > 0.88) and gettext
2 #include <config.h>
3 #include "lyx_gui_misc.h"
4 #include "gettext.h"
5
6 /* Form definition file generated with fdesign. */
7
8 #include FORMS_H_LOCATION
9 #include <cstdlib>
10 #include "log_form.h"
11
12 FD_LaTeXLog *create_form_LaTeXLog(void)
13 {
14   FL_OBJECT *obj;
15   FD_LaTeXLog *fdui = (FD_LaTeXLog *) fl_calloc(1, sizeof(FD_LaTeXLog));
16
17   fdui->LaTeXLog = fl_bgn_form(FL_NO_BOX, 470, 380);
18   obj = fl_add_box(FL_UP_BOX, 0, 0, 470, 380, "");
19   fdui->browser_latexlog = obj = fl_add_browser(FL_NORMAL_BROWSER, 10, 10, 450, 320, "");
20     fl_set_object_gravity(obj, FL_NorthWest, FL_SouthEast);
21   obj = fl_add_button(FL_RETURN_BUTTON, 270, 340, 90, 30, _("Close"));
22     fl_set_object_lsize(obj, FL_NORMAL_SIZE);
23     fl_set_object_gravity(obj, FL_SouthEast, FL_SouthEast);
24     fl_set_object_callback(obj, LatexLogClose, 0);
25   obj = fl_add_button(FL_NORMAL_BUTTON, 370, 340, 90, 30, idex(_("Update|#Uu")));fl_set_button_shortcut(obj, scex(_("Update|#Uu")), 1);
26     fl_set_object_lsize(obj, FL_NORMAL_SIZE);
27     fl_set_object_gravity(obj, FL_SouthEast, FL_SouthEast);
28     fl_set_object_callback(obj, LatexLogUpdate, 0);
29   fl_end_form();
30
31   fdui->LaTeXLog->fdui = fdui;
32
33   return fdui;
34 }
35 /*---------------------------------------*/
36