]> git.lyx.org Git - lyx.git/blobdiff - src/update_flags.h
More requires --> required, for C++2a.
[lyx.git] / src / update_flags.h
index 2950a894d1d6853fd0fbdfb76720ecdc0d0d4f63..a40e88c5567a1d200612478cdd835214208937b1 100644 (file)
@@ -21,13 +21,16 @@ 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,
+               /// (currently ignored!)
+               SinglePar = 8,
                /// Only the inset decorations need to be redrawn, no text metrics
                /// update is needed.
-               Decoration = 8
+               Decoration = 16
        };
 
 inline flags operator|(flags const f, flags const g)
@@ -40,7 +43,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));
+}
+
+} // namespace Update
 
 } // namespace lyx
 #endif