mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
6bba977f42
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@807 a592a061-630c-0410-9148-cb99ea01b6c8
50 lines
1.2 KiB
Diff
50 lines
1.2 KiB
Diff
--- layout_forms.h.orig Sat Jun 10 01:48:56 2000
|
|
+++ layout_forms.h Sat Jun 10 02:10:12 2000
|
|
@@ -3,6 +3,8 @@
|
|
#ifndef FD_form_document_h_
|
|
#define FD_form_document_h_
|
|
|
|
+extern "C" {
|
|
+
|
|
/** Callbacks, globals and object handlers **/
|
|
extern void ChoiceClassCB(FL_OBJECT *, long);
|
|
extern void DocumentCancelCB(FL_OBJECT *, long);
|
|
@@ -46,6 +48,29 @@
|
|
extern void TableOptionsCB(FL_OBJECT *, long);
|
|
extern void TableSpeCloseCB(FL_OBJECT *, long);
|
|
|
|
+}
|
|
+
|
|
+/* Additional Functions/Methods */
|
|
+
|
|
+#include "bufferparams.h"
|
|
+
|
|
+extern bool UpdateLayoutDocument(BufferParams *params = NULL);
|
|
+extern bool UpdateLayoutPreamble();
|
|
+extern bool UpdateLayoutPaper();
|
|
+extern bool UpdateLayoutQuotes();
|
|
+extern bool UpdateLayoutParagraph();
|
|
+extern bool UpdateParagraphExtra();
|
|
+extern bool UpdateLayoutTable(int);
|
|
+
|
|
+extern void MenuLayoutCharacter();
|
|
+extern void MenuLayoutDocument();
|
|
+extern void MenuLayoutPreamble();
|
|
+extern void MenuLayoutPaper();
|
|
+extern void MenuLayoutQuotes();
|
|
+extern void MenuLayoutParagraph();
|
|
+extern void MenuLayoutTable(int);
|
|
+
|
|
+extern "C" {
|
|
|
|
/**** Forms and Objects ****/
|
|
typedef struct {
|
|
@@ -255,5 +280,7 @@
|
|
} FD_form_table_extra;
|
|
|
|
extern FD_form_table_extra * create_form_form_table_extra(void);
|
|
+
|
|
+}
|
|
|
|
#endif /* FD_form_document_h_ */
|