]> git.lyx.org Git - features.git/blobdiff - src/update_flags.h
InsetIndex: hide printTree behind a LYX_INSET_INDEX_DEBUG flag
[features.git] / src / update_flags.h
index 2950a894d1d6853fd0fbdfb76720ecdc0d0d4f63..517bfb62e4ee9a64e7b4c1961a087c08fd11c369 100644 (file)
@@ -21,13 +21,17 @@ namespace Update {
                /// Recenter the screen around the cursor if is found outside the
                /// visible area.
                FitCursor = 1,
-               /// Force a full screen metrics update.
+               /// Force a full screen metrics update and a full draw.
                Force = 2,
+               /// Force a full redraw (but no metrics computations)
+               ForceDraw = 4,
                /// Try to rebreak only the current paragraph metrics.
-               SinglePar = 4,
+               SinglePar = 8,
                /// Only the inset decorations need to be redrawn, no text metrics
                /// update is needed.
-               Decoration = 8
+               Decoration = 16,
+               /// Force metrics and redraw for all buffers.
+               ForceAll = 32
        };
 
 inline flags operator|(flags const f, flags const g)
@@ -40,7 +44,12 @@ inline flags operator&(flags const f, flags const g)
        return static_cast<flags>(int(f) & int(g));
 }
 
-} // namespace
+inline flags operator~(flags const f)
+{
+       return static_cast<flags>(~int(f) & 0x3f);
+}
+
+} // namespace Update
 
 } // namespace lyx
 #endif