diff options
author | Jaakko Keränen <jaakko.keranen@iki.fi> | 2020-08-12 10:28:02 +0300 |
---|---|---|
committer | Jaakko Keränen <jaakko.keranen@iki.fi> | 2020-08-12 10:28:02 +0300 |
commit | 1d54f7b990ea7f676403681577fc4df984cab0be (patch) | |
tree | 94a8ac83159f021dbbb354a6d76ecbaf83a63aad /src/ui/widget.h | |
parent | 38e09f15ff3e9c4781236016bfbb0b0f9062590b (diff) |
Save and load app state (tabs, history)
Diffstat (limited to 'src/ui/widget.h')
-rw-r--r-- | src/ui/widget.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/ui/widget.h b/src/ui/widget.h index bf6489a0..c82e37f8 100644 --- a/src/ui/widget.h +++ b/src/ui/widget.h | |||
@@ -114,6 +114,11 @@ iAny * findFocusable_Widget(const iWidget *startFrom, enum iWidgetFocusDir focu | |||
114 | size_t childCount_Widget (const iWidget *); | 114 | size_t childCount_Widget (const iWidget *); |
115 | void draw_Widget (const iWidget *); | 115 | void draw_Widget (const iWidget *); |
116 | 116 | ||
117 | iLocalDef iObjectList *children_Widget(iAnyObject *d) { | ||
118 | iAssert(isInstance_Object(d, &Class_Widget)); | ||
119 | return ((iWidget *) d)->children; | ||
120 | } | ||
121 | |||
117 | iBool isVisible_Widget (const iWidget *); | 122 | iBool isVisible_Widget (const iWidget *); |
118 | iBool isDisabled_Widget (const iWidget *); | 123 | iBool isDisabled_Widget (const iWidget *); |
119 | iBool isFocused_Widget (const iWidget *); | 124 | iBool isFocused_Widget (const iWidget *); |