]> git.lyx.org Git - lyx.git/blobdiff - src/bufferview_funcs.h
compilation fix
[lyx.git] / src / bufferview_funcs.h
index 6504f4fc90bc77ecadfb0b00685b249ffdef397f..7bc244ac21499e13a4c4a592045f9d9fed5ff41b 100644 (file)
 
 #include <string>
 
-
-class BufferView;
 class LyXFont;
-class LyXText;
-class PosIterator;
+class Point;
+class DocIterator;
+class BufferView;
 
 
 namespace bv_funcs {
 
-/** Set \param data using \param font and \param toggle.
- *  If successful, returns true.
- */
+/// Set \param data using \param font and \param toggle. Return success.
 bool font2string(LyXFont const & font, bool toggle, std::string & data);
-/** Set \param font and \param toggle using \param data.
- *  If successful, returns true.
- */
+
+/// Set \param font and \param toggle using \param data. Return success.
 bool string2font(std::string const & data, LyXFont & font, bool & toggle);
+
 /** Returns the current freefont, encoded as a std::string to be passed to the
  *  frontends.
  */
 std::string const freefont2string();
-///
-void put_selection_at(BufferView * bv, PosIterator const & cur,
-                     int length, bool backwards);
 
+Point getPos(DocIterator const & dit);
 
-/// what type of depth change to make
-enum DEPTH_CHANGE {
-       INC_DEPTH,
-       DEC_DEPTH
+enum CurStatus {
+       CUR_INSIDE,
+       CUR_ABOVE,
+       CUR_BELOW
 };
 
-/**
- * Increase or decrease the nesting depth of the selected paragraph(s)
- * if test_only, don't change any depths. Returns whether something
- * (would have) changed
- */
-bool changeDepth(BufferView *, LyXText *, DEPTH_CHANGE, bool test_only);
 
-/// Returns the current font and depth as a message.
-std::string const currentState(BufferView *);
-/// replace selection with insertion
-void replaceSelection(LyXText * lt);
+CurStatus status(BufferView const * bv, DocIterator const & dit);
+
+
+Point coordOffset(DocIterator const & dit);
 
 
-}; // namespace bv_funcs
+} // namespace bv_funcs
 
 #endif