diff options
Diffstat (limited to 'src/ui/root.h')
-rw-r--r-- | src/ui/root.h | 4 |
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 | ||
29 | iPtrArray * onTop_Root (iRoot *); | 30 | iPtrArray * onTop_Root (iRoot *); |
30 | void destroyPending_Root (iRoot *); | 31 | void destroyPending_Root (iRoot *); |
32 | void postArrange_Root (iRoot *); | ||
31 | 33 | ||
32 | void updateMetrics_Root (iRoot *); | 34 | void updateMetrics_Root (iRoot *); |
33 | void updatePadding_Root (iRoot *); /* TODO: is part of metrics? */ | 35 | void updatePadding_Root (iRoot *); /* TODO: is part of metrics? */ |
@@ -39,4 +41,4 @@ iRect rect_Root (const iRoot *); | |||
39 | iRect safeRect_Root (const iRoot *); | 41 | iRect safeRect_Root (const iRoot *); |
40 | iInt2 visibleSize_Root (const iRoot *); /* may be obstructed by software keyboard */ | 42 | iInt2 visibleSize_Root (const iRoot *); /* may be obstructed by software keyboard */ |
41 | iBool isNarrow_Root (const iRoot *); | 43 | iBool isNarrow_Root (const iRoot *); |
42 | int appIconSize_Root (void); \ No newline at end of file | 44 | int appIconSize_Root (void); |