]> git.lyx.org Git - lyx.git/blobdiff - src/bufferview_funcs.h
compilation fix
[lyx.git] / src / bufferview_funcs.h
index c8665daa71412c4bdc9eb946889038e04571c5f7..7bc244ac21499e13a4c4a592045f9d9fed5ff41b 100644 (file)
@@ -17,6 +17,9 @@
 #include <string>
 
 class LyXFont;
+class Point;
+class DocIterator;
+class BufferView;
 
 
 namespace bv_funcs {
@@ -32,6 +35,21 @@ bool string2font(std::string const & data, LyXFont & font, bool & toggle);
  */
 std::string const freefont2string();
 
+Point getPos(DocIterator const & dit);
+
+enum CurStatus {
+       CUR_INSIDE,
+       CUR_ABOVE,
+       CUR_BELOW
+};
+
+
+CurStatus status(BufferView const * bv, DocIterator const & dit);
+
+
+Point coordOffset(DocIterator const & dit);
+
+
 } // namespace bv_funcs
 
 #endif