-
Notifications
You must be signed in to change notification settings - Fork 238
/
piuLayout.c
108 lines (98 loc) · 3.04 KB
/
piuLayout.c
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
/*
* Copyright (c) 2016-2017 Moddable Tech, Inc.
*
* This file is part of the Moddable SDK Runtime.
*
* The Moddable SDK Runtime is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* The Moddable SDK Runtime is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with the Moddable SDK Runtime. If not, see <http://www.gnu.org/licenses/>.
*
*/
#include "piuAll.h"
static void PiuLayoutFitHorizontally(void* it);
static void PiuLayoutFitVertically(void* it);
static void PiuLayoutMeasureHorizontally(void* it);
static void PiuLayoutMeasureVertically(void* it);
static void PiuLayoutPlace(void* it);
const PiuDispatchRecord ICACHE_FLASH_ATTR PiuLayoutDispatchRecord = {
"Layout",
PiuContainerBind,
PiuContainerCascade,
PiuContentDraw,
PiuLayoutFitHorizontally,
PiuLayoutFitVertically,
PiuContainerHit,
PiuContentIdle,
PiuContainerInvalidate,
PiuLayoutMeasureHorizontally,
PiuLayoutMeasureVertically,
PiuLayoutPlace,
PiuContainerPlaceContentHorizontally,
PiuContainerPlaceContentVertically,
PiuContainerReflow,
PiuContainerShowing,
PiuContainerShown,
PiuContentSync,
PiuContainerUnbind,
PiuContainerUpdate
};
const xsHostHooks ICACHE_FLASH_ATTR PiuLayoutHooks = {
PiuContentDelete,
PiuContainerMark,
NULL
};
void PiuLayoutFitHorizontally(void* it)
{
PiuLayout* self = it;
PiuBehaviorOnFitHorizontally(self, (*self)->bounds.width);
PiuContainerFitHorizontally(it);
}
void PiuLayoutFitVertically(void* it)
{
PiuLayout* self = it;
PiuBehaviorOnFitVertically(self, (*self)->bounds.height);
PiuContainerFitVertically(it);
}
void PiuLayoutMeasureHorizontally(void* it)
{
PiuLayout* self = it;
PiuContainerMeasureHorizontally(it);
PiuDimension width = PiuBehaviorOnMeasureHorizontally(self, (*self)->coordinates.width);
(*self)->coordinates.width = width;
}
void PiuLayoutMeasureVertically(void* it)
{
PiuLayout* self = it;
PiuContainerMeasureVertically(it);
PiuDimension height = PiuBehaviorOnMeasureVertically(self, (*self)->coordinates.height);
(*self)->coordinates.height = height;
}
void PiuLayoutPlace(void* it)
{
PiuContainerPlace(it);
PiuBehaviorOnDefaultID(it, xsID_onAdapt);
}
void PiuLayout_create(xsMachine* the)
{
PiuLayout* self;
xsVars(4);
xsSetHostChunk(xsThis, NULL, sizeof(PiuLayoutRecord));
self = PIU(Layout, xsThis);
(*self)->the = the;
(*self)->reference = xsToReference(xsThis);
xsSetHostHooks(xsThis, (xsHostHooks*)&PiuLayoutHooks);
(*self)->dispatch = (PiuDispatch)&PiuLayoutDispatchRecord;
(*self)->flags = piuVisible | piuContainer;
PiuContentDictionary(the, self);
PiuContainerDictionary(the, self);
PiuBehaviorOnCreate(self);
}