blob: 3b053c9eec91ce9527b42977d573f0fa8a8a0b7d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
#pragma once
#include "widget.h"
#include "color.h"
#include <the_Foundation/audience.h>
#include <the_Foundation/ptrset.h>
#include <the_Foundation/vec2.h>
iDeclareType(Root)
iDeclareNotifyFunc(Root, VisualOffsetsChanged)
iDeclareAudienceGetter(Root, visualOffsetsChanged)
struct Impl_Root {
iWidget * widget;
iWindow * window;
iPtrArray *onTop; /* order is important; last one is topmost */
iPtrSet * pendingDestruction;
iBool pendingArrange;
int loadAnimTimer;
iBool didAnimateVisualOffsets;
iBool didChangeArrangement;
iAudience *visualOffsetsChanged; /* called after running tickers */
iColor tmPalette[tmMax_ColorId]; /* theme-specific palette */
};
iDeclareTypeConstruction(Root)
/*----------------------------------------------------------------------------------------------*/
void createUserInterface_Root (iRoot *);
void setCurrent_Root (iRoot *);
iRoot * current_Root (void);
iRoot * get_Root (void); /* assert != NULL */
iAnyObject *findWidget_Root (const char *id); /* under current Root */
iPtrArray * onTop_Root (iRoot *);
void destroyPending_Root (iRoot *);
void updateMetrics_Root (iRoot *);
void updatePadding_Root (iRoot *); /* TODO: is part of metrics? */
void dismissPortraitPhoneSidebars_Root (iRoot *);
void showToolbar_Root (iRoot *, iBool show);
void updateToolbarColors_Root (iRoot *);
void showOrHideNewTabButton_Root (iRoot *);
void notifyVisualOffsetChange_Root (iRoot *);
size_t windowIndex_Root (const iRoot *);
iInt2 size_Root (const iRoot *);
iRect rect_Root (const iRoot *);
iRect safeRect_Root (const iRoot *);
iRect visibleRect_Root (const iRoot *); /* may be obstructed by software keyboard */
iBool isNarrow_Root (const iRoot *);
int appIconSize_Root (void);
|