]> git.lyx.org Git - lyx.git/blobdiff - src/bufferview_funcs.h
The "I want this in now" patch.
[lyx.git] / src / bufferview_funcs.h
index e829c53dcd5cacaf51cacefb85f62d31fbafb95a..c0bade96251b9b9b6ae2a7a553f0b9fe90b63234 100644 (file)
@@ -20,6 +20,8 @@ class BufferView;
 class LyXFont;
 class LyXText;
 
+namespace bv_funcs {
+
 /** Set \param data using \param font and \param toggle.
  *  If successful, returns true.
  */
@@ -40,6 +42,18 @@ void update_and_apply_freefont(BufferView * bv, string const & data);
  */
 void apply_freefont(BufferView * bv);
 
+/// what type of depth change to make
+enum DEPTH_CHANGE {
+       INC_DEPTH,
+       DEC_DEPTH
+};
+
+/**
+ * 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
+ */
+extern bool changeDepth(BufferView *, LyXText *, DEPTH_CHANGE, bool test_only);
 
 ///
 extern void emph(BufferView *);
@@ -54,8 +68,6 @@ extern void number(BufferView *);
 ///
 extern void tex(BufferView *);
 ///
-extern void changeDepth(BufferView *, LyXText *, int);
-///
 extern void code(BufferView *);
 ///
 extern void sans(BufferView *);
@@ -72,4 +84,7 @@ extern string const currentState(BufferView *);
 ///
 extern void toggleAndShow(BufferView *, LyXFont const &,
                          bool toggleall = true);
+
+}; // namespace bv_funcs
+
 #endif