mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 05:33:33 +00:00
6bba977f42
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@807 a592a061-630c-0410-9148-cb99ea01b6c8
43 lines
1.6 KiB
C
43 lines
1.6 KiB
C
// File modified by fdfix.sh for use by lyx (with xforms 0.81) and gettext
|
|
#include <config.h>
|
|
#include "lyx_gui_misc.h"
|
|
#include "gettext.h"
|
|
|
|
/* Form definition file generated with fdesign. */
|
|
|
|
#include FORMS_H_LOCATION
|
|
#include <cstdlib>
|
|
#include "credits_form.h"
|
|
|
|
FD_form_credits *create_form_form_credits(void)
|
|
{
|
|
FL_OBJECT *obj;
|
|
FD_form_credits *fdui = (FD_form_credits *) fl_calloc(1, sizeof(FD_form_credits));
|
|
|
|
fdui->form_credits = fl_bgn_form(FL_NO_BOX, 500, 330);
|
|
obj = fl_add_box(FL_UP_BOX, 0, 0, 500, 330, "");
|
|
obj = fl_add_button(FL_RETURN_BUTTON, 180, 290, 140, 30, _("OK"));
|
|
fl_set_object_lsize(obj, FL_NORMAL_SIZE);
|
|
fl_set_object_gravity(obj, FL_South, FL_South);
|
|
fl_set_object_resize(obj, FL_RESIZE_NONE);
|
|
fl_set_object_callback(obj, CreditsOKCB, 0);
|
|
obj = fl_add_text(FL_NORMAL_TEXT, 10, 40, 480, 30, _("Matthias"));
|
|
fl_set_object_lsize(obj, FL_NORMAL_SIZE);
|
|
fl_set_object_lalign(obj, FL_ALIGN_CENTER|FL_ALIGN_INSIDE);
|
|
fl_set_object_lstyle(obj, FL_ITALIC_STYLE);
|
|
fl_set_object_gravity(obj, FL_NorthWest, FL_NorthEast);
|
|
obj = fl_add_text(FL_NORMAL_TEXT, 10, 10, 480, 30, _("All these people have contributed to the LyX project. Thanks,"));
|
|
fl_set_object_lsize(obj, FL_NORMAL_SIZE);
|
|
fl_set_object_lalign(obj, FL_ALIGN_CENTER|FL_ALIGN_INSIDE);
|
|
fl_set_object_gravity(obj, FL_NorthWest, FL_NorthEast);
|
|
fdui->browser_credits = obj = fl_add_browser(FL_NORMAL_BROWSER, 10, 80, 480, 200, "");
|
|
fl_set_object_gravity(obj, FL_NorthWest, FL_SouthEast);
|
|
fl_end_form();
|
|
|
|
//fdui->form_credits->fdui = fdui;
|
|
|
|
return fdui;
|
|
}
|
|
/*---------------------------------------*/
|
|
|