]> git.lyx.org Git - lyx.git/blobdiff - src/lyx_cb.h
More fixes to insettabular/text (and some missing features added).
[lyx.git] / src / lyx_cb.h
index f4f0b4eb2629e0040c04258f588d2e5559cac067..40d9de315de04ac09aa03053d1e61ea2df3456aa 100644 (file)
@@ -2,66 +2,62 @@
 #ifndef LYX_CB_H
 #define LYX_CB_H
 
-#include FORMS_H_LOCATION
-
 #include "LString.h"
+#include "lyxfont.h"
 
-class Inset;
+class BufferParams;
 class BufferView;
+class Combox;
 
 ///
 extern bool quitting;
+///
+extern bool toggleall;
 
 // When still false after reading lyxrc, warn user
 //about failing \bind_file command. RVDK_PATCH_5
-extern bool BindFileSet;
-
-///
-extern void Foot(BufferView *);
 ///
-extern void Emph();
-///
-extern void Bold();
-///
-extern void Noun();
-///
-extern void Margin(BufferView *);
+extern bool BindFileSet;
 ///
-extern void Figure();
+extern LyXFont const UserFreeFont(BufferParams const & params);
 ///
-extern void RTLCB();
+void ShowMessage(Buffer const * buf,
+                string const & msg1,
+                string const & msg2 = string(),
+                string const & msg3 = string(), int delay = 6);
 ///
-extern void Table();
+bool MenuWrite(BufferView * bv, Buffer * buffer);
 ///
-extern void Melt(BufferView *);
+bool MenuWriteAs(BufferView * bv, Buffer * buffer);
 ///
-extern void Tex();
+int MenuRunChktex(Buffer * buffer);
 ///
-extern void changeDepth(BufferView *, int);
+void QuitLyX();
 ///
-extern void Free();
+void AutoSave(BufferView * bv);
 ///
-extern void HtmlUrl();
+Buffer * NewLyxFile(string const & filename);
 ///
-extern void Url();
+void InsertAsciiFile(BufferView * bv, string const & f, bool asParagraph);
 ///
-extern void ProhibitInput();
+void MenuInsertLabel(BufferView * bv, string const & arg);
 ///
-extern void Code();
+void LayoutsCB(int sel, void *, Combox *);
 ///
-extern void Sans();
+void MenuLayoutCharacter();
 ///
-extern void Roman();
+bool UpdateLayoutPreamble(BufferView * bv);
 ///
-extern void StyleReset();
+void MenuLayoutPreamble();
 ///
-extern void Underline();
+void MenuLayoutSave(BufferView * bv);
 ///
-extern void FontSize(string const &);
+LyXFont const UserFreeFont(BufferParams const & params);
 ///
-extern string CurrentState();
+void Figure();
 ///
-extern void AllowInput();
+void Reconfigure(BufferView * bv);
 
+       
 #endif