mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 21:49:51 +00:00
9705be9f1b
Cleaned up code in controllers in the process; I think that the interface is stabilising now. Cleaned up code in InsetInclude a little. Mental note (to me?!): the Bibitem, Bibtex and Include insets create an inset when the appropriate menu item is selected. This is incorrect; the inset should only be created when "Ok" is pressed, as with the majority of insets. CREATE_XXX flags and associated code are needed. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1817 a592a061-630c-0410-9148-cb99ea01b6c8
32 lines
818 B
C
32 lines
818 B
C
// File modified by fdfix.sh for use by lyx (with xforms >= 0.88) and gettext
|
|
/** Header file generated with fdesign **/
|
|
|
|
#ifndef FD_form_include_h_
|
|
#define FD_form_include_h_
|
|
|
|
/** Callbacks, globals and object handlers **/
|
|
extern "C" void C_FormBaseInputCB(FL_OBJECT *, long);
|
|
extern "C" void C_FormBaseOKCB(FL_OBJECT *, long);
|
|
extern "C" void C_FormBaseCancelCB(FL_OBJECT *, long);
|
|
|
|
|
|
/**** Forms and Objects ****/
|
|
struct FD_form_include {
|
|
~FD_form_include();
|
|
|
|
FL_FORM *form;
|
|
FL_OBJECT *button_browse;
|
|
FL_OBJECT *check_typeset;
|
|
FL_OBJECT *button_ok;
|
|
FL_OBJECT *button_cancel;
|
|
FL_OBJECT *button_load;
|
|
FL_OBJECT *input_filename;
|
|
FL_OBJECT *check_visiblespace;
|
|
FL_OBJECT *include_grp;
|
|
FL_OBJECT *check_verbatim;
|
|
FL_OBJECT *check_useinput;
|
|
FL_OBJECT *check_useinclude;
|
|
};
|
|
|
|
#endif /* FD_form_include_h_ */
|