]> git.lyx.org Git - lyx.git/blobdiff - src/bufferview_funcs.h
rename Inset to InsetOld
[lyx.git] / src / bufferview_funcs.h
index e829c53dcd5cacaf51cacefb85f62d31fbafb95a..4d5fb1267e6f291e476367fa230126e72b0298d3 100644 (file)
@@ -20,6 +20,10 @@ class BufferView;
 class LyXFont;
 class LyXText;
 
+namespace bv_funcs {
+
+///
+void resizeInsets(BufferView * bv);
 /** Set \param data using \param font and \param toggle.
  *  If successful, returns true.
  */
@@ -40,6 +44,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 +70,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 +86,8 @@ extern string const currentState(BufferView *);
 ///
 extern void toggleAndShow(BufferView *, LyXFont const &,
                          bool toggleall = true);
+/// replace selection with insertion
+extern void replaceSelection(LyXText * lt);
+}; // namespace bv_funcs
+
 #endif