aboutsummaryrefslogtreecommitdiff
path: root/dw/types.hh
diff options
context:
space:
mode:
authorSebastian Geerken <devnull@localhost>2014-09-13 11:55:06 +0200
committerSebastian Geerken <devnull@localhost>2014-09-13 11:55:06 +0200
commit6edebce03296520b698f62a2f0d9d76ad8090536 (patch)
tree8eeb3001b0cd69cb976710fea1bb2c5040878306 /dw/types.hh
parentacedc140e545b34b46df551d79b4ef90638b36b6 (diff)
OOFAwareWidgetIterator is now base of TableIterator.
Diffstat (limited to 'dw/types.hh')
-rw-r--r--dw/types.hh4
1 files changed, 4 insertions, 0 deletions
diff --git a/dw/types.hh b/dw/types.hh
index 36d6caa1..081b8db4 100644
--- a/dw/types.hh
+++ b/dw/types.hh
@@ -207,6 +207,10 @@ struct Content
WIDGET_OOF_REF = 1 << 5,
BREAK = 1 << 6,
+ /** \brief can be used internally, but should never be exposed,
+ e. g. by iterators */
+ INVALID = 1 << 7,
+
ALL = 0xff,
REAL_CONTENT = 0xff ^ (START | END),
SELECTION_CONTENT = TEXT | BREAK, // WIDGET_* must be set additionally