-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathMacAuth.r
70 lines (60 loc) · 1.25 KB
/
MacAuth.r
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
#include "Dialogs.r"
resource 'DLOG' (1028, purgeable) {
{ 0, 0, 124, 340 },
dBoxProc,
visible,
goAway,
0,
1028,
"",
alertPositionMainScreen
};
data 'dctb' (1028, purgeable) {
$"0000 0000 0000 FFFF" /*use default colors*/
};
resource 'DITL' (1028, purgeable) {
{
{ 90, 340-170, 90+20, 340-110 },
Button { enabled, "Cancel" };
{ 90, 340-10-80-4, 90+20, 340-10-4 },
Button { enabled, "Continue" };
}
};
resource 'ALRT' (1029, purgeable ) {
{ 0, 0, 110, 400 },
1029,
{
OK, visible, silent,
OK, visible, silent,
OK, visible, silent,
OK, visible, silent
},
alertPositionMainScreen
};
resource 'DITL' (1029, purgeable) {
{
{ 80, 300, 80+20, 380 },
Button { enabled, "OK" };
{8, 72, 70, 380},
StaticText { disabled, "Please ensure you follow all of the steps your smartphone before clicking Continue." };
}
};
resource 'ALRT' (1030, purgeable ) {
{ 0, 0, 110, 400 },
1030,
{
OK, visible, silent,
OK, visible, silent,
OK, visible, silent,
OK, visible, silent
},
alertPositionMainScreen
};
resource 'DITL' (1030, purgeable) {
{
{ 76, 300, 76+20, 380 },
Button { enabled, "OK" };
{8, 72, 70, 380},
StaticText { disabled, "Sorry, something went wrong.\r^0" };
}
};