]> git.lyx.org Git - lyx.git/blobdiff - src/lyx_cb.h
Small formatting and comment cleanup.
[lyx.git] / src / lyx_cb.h
index 0c3240eb57ece5b77cb3e63972b90ae509bfaa22..03cecc4a7058b103faa96d56d1a68dcbeb23c09b 100644 (file)
@@ -1,36 +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 "LString.h"
+#include <string>
+
+namespace lyx {
 
 class Buffer;
 class BufferView;
+class LyXView;
 
 ///
 extern bool quitting;
 
 ///
-void ShowMessage(Buffer const * buf,
-                string const & msg1,
-                string const & msg2 = string(),
-                string const & msg3 = string());
-///
-bool MenuWrite(Buffer * buffer);
+bool menuWrite(Buffer * buffer);
 /// write the given file, or ask if no name given
-bool WriteAs(Buffer * buffer, string const & filename = string());
-///
-void QuitLyX();
+bool writeAs(Buffer * buffer, std::string const & filename = std::string());
 ///
-void AutoSave(BufferView * bv);
+void autoSave(BufferView * bv);
 ///
-Buffer * NewFile(string const & filename);
+void newFile(BufferView * bv, std::string const & filename);
 ///
-void InsertAsciiFile(BufferView * bv, string const & f, bool asParagraph);
+void insertPlaintextFile(BufferView * bv, std::string const & f, bool asParagraph);
 ///
-string getContentsOfAsciiFile(BufferView * bv, string const & f, bool asParagraph);
+std::string getContentsOfPlaintextFile(BufferView * bv, std::string const & f, bool asParagraph);
 ///
-string const getPossibleLabel(BufferView const & bv);
-///
-void Reconfigure(BufferView * bv);
+void reconfigure(LyXView & lv);
+
+} // namespace lyx
+
 #endif