summaryrefslogtreecommitdiff
path: root/src/ui/root.h
diff options
context:
space:
mode:
authorJaakko Keränen <jaakko.keranen@iki.fi>2021-05-11 18:14:33 +0300
committerJaakko Keränen <jaakko.keranen@iki.fi>2021-05-11 18:14:33 +0300
commit15c5ab9ec7563fb6fcb49657e075729c18461c3b (patch)
treeac203b1966879f9793055f11d86967f49ff6256e /src/ui/root.h
parenta13543aa922647ea2f8cc40cb9f3f797df8758df (diff)
InputWidget: Word wrapping, inserting newlines
Diffstat (limited to 'src/ui/root.h')
-rw-r--r--src/ui/root.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/ui/root.h b/src/ui/root.h
index 00555224..96864a15 100644
--- a/src/ui/root.h
+++ b/src/ui/root.h
@@ -11,6 +11,7 @@ struct Impl_Root {
11 iWidget * widget; 11 iWidget * widget;
12 iPtrArray *onTop; /* order is important; last one is topmost */ 12 iPtrArray *onTop; /* order is important; last one is topmost */
13 iPtrSet * pendingDestruction; 13 iPtrSet * pendingDestruction;
14 iBool pendingArrange;
14 int loadAnimTimer; 15 int loadAnimTimer;
15 iColor tmPalette[tmMax_ColorId]; /* theme-specific palette */ 16 iColor tmPalette[tmMax_ColorId]; /* theme-specific palette */
16}; 17};
@@ -28,6 +29,7 @@ iAnyObject *findWidget_Root (const char *id); /* under curre
28 29
29iPtrArray * onTop_Root (iRoot *); 30iPtrArray * onTop_Root (iRoot *);
30void destroyPending_Root (iRoot *); 31void destroyPending_Root (iRoot *);
32void postArrange_Root (iRoot *);
31 33
32void updateMetrics_Root (iRoot *); 34void updateMetrics_Root (iRoot *);
33void updatePadding_Root (iRoot *); /* TODO: is part of metrics? */ 35void updatePadding_Root (iRoot *); /* TODO: is part of metrics? */
@@ -39,4 +41,4 @@ iRect rect_Root (const iRoot *);
39iRect safeRect_Root (const iRoot *); 41iRect safeRect_Root (const iRoot *);
40iInt2 visibleSize_Root (const iRoot *); /* may be obstructed by software keyboard */ 42iInt2 visibleSize_Root (const iRoot *); /* may be obstructed by software keyboard */
41iBool isNarrow_Root (const iRoot *); 43iBool isNarrow_Root (const iRoot *);
42int appIconSize_Root (void); \ No newline at end of file 44int appIconSize_Root (void);