]> git.lyx.org Git - lyx.git/blobdiff - src/lyx_cb.h
fix mathed crash
[lyx.git] / src / lyx_cb.h
index 13c2854f06f2fc544f7f01c772aa28fc6ebd8e37..949f695295cc336553847012e6c252b133e6bf55 100644 (file)
@@ -1,73 +1,41 @@
 // -*- C++ -*-
+/**
+ * \file lyx_cb.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author Lars Gullik Bjønnes
+ *
+ * Full author contact details are available in file CREDITS.
+ */
+
 #ifndef LYX_CB_H
 #define LYX_CB_H
 
-#include FORMS_H_LOCATION
-
-#include "LString.h"
+#include <string>
 
-class Inset;
+class Buffer;
+class BufferView;
 
 ///
 extern bool quitting;
 
-// When still false after reading lyxrc, warn user
-//about failing \bind_file command. RVDK_PATCH_5
-extern bool BindFileSet;
-
-///
-extern "C" void FootCB(FL_OBJECT *, long);
-///
-extern void EmphCB();
-///
-extern void BoldCB();
-///
-extern void NounCB();
-///
-extern void RTLCB();
-///
-extern "C" void MarginCB(FL_OBJECT *, long);
-///
-extern "C" void FigureCB(FL_OBJECT *, long);
-///
-extern "C" void TableCB(FL_OBJECT *, long);
 ///
-extern "C" void MeltCB(FL_OBJECT *, long);
+bool MenuWrite(Buffer * buffer);
+/// write the given file, or ask if no name given
+bool WriteAs(Buffer * buffer, std::string const & filename = std::string());
 ///
-extern void TexCB();
+void QuitLyX();
 ///
-extern "C" void DepthCB(FL_OBJECT *, long);
+void AutoSave(BufferView * bv);
 ///
-extern void FreeCB();
+void NewFile(BufferView * bv, std::string const & filename);
 ///
-extern void HtmlUrlCB();
+void InsertAsciiFile(BufferView * bv, std::string const & f, bool asParagraph);
 ///
-extern void UrlCB();
+std::string getContentsOfAsciiFile(BufferView * bv, std::string const & f, bool asParagraph);
 ///
-extern void ProhibitInput();
+std::string const getPossibleLabel(BufferView const & bv);
 ///
-extern void CodeCB();
-///
-extern void SansCB();
-///
-extern void RomanCB();
-///
-extern void StyleResetCB();
-///
-extern void UnderlineCB();
-///
-extern void FontSizeCB(string const &);
-///
-extern string CurrentState();
-///
-extern void AllowInput();
-
-///
-struct InsetUpdateStruct {
-       ///
-       Inset * inset;
-       ///
-       InsetUpdateStruct * next;
-};
+void Reconfigure(BufferView * bv);
 #endif
-