]> git.lyx.org Git - lyx.git/blobdiff - src/lyx_cb.h
LFUN_UNICODE_INSERT - unicode-insert
[lyx.git] / src / lyx_cb.h
index 67bc2bddd82c954dc8404e6cdb3718bd806bf701..246799d26ca8ed790efc12f304ed97cd78f32773 100644 (file)
@@ -14,6 +14,8 @@
 
 #include <string>
 
+namespace lyx {
+
 class Buffer;
 class BufferView;
 
@@ -21,19 +23,20 @@ class BufferView;
 extern bool quitting;
 
 ///
-bool MenuWrite(Buffer * buffer);
+bool menuWrite(Buffer * buffer);
 /// write the given file, or ask if no name given
-bool WriteAs(Buffer * buffer, std::string const & filename = std::string());
-///
-void QuitLyX();
+bool writeAs(Buffer * buffer, std::string const & filename = std::string());
 ///
-void AutoSave(BufferView * bv);
+void autoSave(BufferView * bv);
 ///
-void NewFile(BufferView * bv, std::string const & filename);
+void newFile(BufferView * bv, std::string const & filename);
 ///
-void InsertAsciiFile(BufferView * bv, std::string const & f, bool asParagraph);
+void insertAsciiFile(BufferView * bv, std::string const & f, bool asParagraph);
 ///
 std::string getContentsOfAsciiFile(BufferView * bv, std::string const & f, bool asParagraph);
 ///
-void Reconfigure(BufferView * bv);
+void reconfigure(BufferView * bv);
+
+} // namespace lyx
+
 #endif