]> git.lyx.org Git - lyx.git/blobdiff - src/lyx_cb.h
* GuiView.C (updateTab): do not update early if current tab has
[lyx.git] / src / lyx_cb.h
index 503733ff2baa57574a4015f68174d6f59167ae1e..03cecc4a7058b103faa96d56d1a68dcbeb23c09b 100644 (file)
@@ -1,79 +1,43 @@
 // -*- 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 <string>
 
-#include "LString.h"
+namespace lyx {
 
-class Inset;
+class Buffer;
+class BufferView;
+class LyXView;
 
 ///
 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 "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);
-///
-extern void TexCB();
-///
-extern "C" void DepthCB(FL_OBJECT *, long);
-///
-extern void FreeCB();
 ///
-extern void CutCB();
+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 PasteCB();
+void autoSave(BufferView * bv);
 ///
-extern void CopyCB();
+void newFile(BufferView * bv, std::string const & filename);
 ///
-extern void NoteCB();
+void insertPlaintextFile(BufferView * bv, std::string const & f, bool asParagraph);
 ///
-extern void HtmlUrlCB();
+std::string getContentsOfPlaintextFile(BufferView * bv, std::string const & f, bool asParagraph);
 ///
-extern void UrlCB();
-///
-extern void ProhibitInput();
-///
-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();
+void reconfigure(LyXView & lv);
 
-///
-struct InsetUpdateStruct {
-       ///
-       Inset* inset;
-       ///
-       InsetUpdateStruct* next;
-};
-#endif
+} // namespace lyx
 
+#endif