forked from llaske/sugarizer
-
Notifications
You must be signed in to change notification settings - Fork 54
/
buttons.js
151 lines (130 loc) · 4.46 KB
/
buttons.js
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
// Go home button
enyo.kind({
name: "Abcd.HomeButton",
kind: enyo.Control,
components: [
{name: "home", kind: "Image", src: "images/home.png", classes: "standardButton backButton", ontap: "goHome"},
],
// Constructor
rendered: function() {
this.inherited(arguments);
},
// Go back home
goHome: function() {
Abcd.goHome();
}
});
// Switch case button
var caseVisibilityTab = [
{switchToLower: false, switchToUpper: true, switchToScript: false},
{switchToLower: false, switchToUpper: false, switchToScript: true},
{switchToLower: true, switchToUpper: false, switchToScript: false}
];
enyo.kind({
name: "Abcd.CaseButton",
kind: enyo.Control,
classes: "switchCase",
components: [
{name: "switchToUpper", kind: "Image", src: "images/case0.png", classes: "standardButton switchCaseButton", ontap: "localUpper"},
{name: "switchToScript", kind: "Image", src: "images/case1.png", showing: false, classes: "standardButton switchCaseButton", ontap: "localScript"},
{name: "switchToLower", kind: "Image", src: "images/case2.png", showing: false, classes: "standardButton switchCaseButton", ontap: "localLower"},
],
// Constructor
rendered: function() {
this.inherited(arguments);
if (document.getElementById("main-toolbar").style.visibility == "hidden")
Abcd.hideCase()
Abcd.changeVisibility(this, caseVisibilityTab[Abcd.context.casevalue]);
},
// Change current case
localUpper: function() {
Abcd.changeVisibility(this, caseVisibilityTab[1]);
Abcd.setCase(1);
},
localLower: function() {
Abcd.changeVisibility(this, caseVisibilityTab[0]);
Abcd.setCase(0);
},
localScript: function() {
Abcd.changeVisibility(this, caseVisibilityTab[2]);
Abcd.setCase(2);
}
});
// Switch language button
enyo.kind({
name: "Abcd.LanguageButton",
kind: enyo.Control,
classes: "switchLang",
components: [
{name: "switchToFrench", kind: "Image", src: "images/us.png", showing: false, classes: "standardButton switchLangButton", ontap: "localFrench"},
{name: "switchToSpanish", kind: "Image", src: "images/fr.png", classes: "standardButton switchLangButton", ontap: "localSpanish"},
{name: "switchToEnglish", kind: "Image", src: "images/es.png", showing: false, classes: "standardButton switchLangButton", ontap: "localEnglish"},
],
// Constructor
rendered: function() {
this.inherited(arguments);
if (document.getElementById("main-toolbar").style.visibility == "hidden")
Abcd.hideLang()
if (Abcd.context.lang == 'en')
Abcd.changeVisibility(this, {switchToEnglish: false, switchToFrench: true, switchToSpanish: false});
else if (Abcd.context.lang == 'fr')
Abcd.changeVisibility(this, {switchToEnglish: false, switchToFrench: false, switchToSpanish: true});
else
Abcd.changeVisibility(this, {switchToEnglish: true, switchToFrench: false, switchToSpanish: false});
},
// Change current language
localEnglish: function() {
Abcd.changeVisibility(this, {switchToEnglish: false, switchToFrench: true, switchToSpanish: false});
Abcd.setLocale("en");
},
localFrench: function() {
Abcd.changeVisibility(this, {switchToEnglish: false, switchToFrench: false, switchToSpanish: true});
Abcd.setLocale("fr");
},
localSpanish: function() {
Abcd.changeVisibility(this, {switchToEnglish: true, switchToFrench: false, switchToSpanish: false});
Abcd.setLocale("es");
}
});
// Play type button
enyo.kind({
name: "Abcd.PlayTypeButton",
published: { from: "", to: "", theme: null },
classes: "play-type-button",
components: [
{ name: "contentBox", components: [
{ name: "imageFrom", classes: "playtypeImageFrom", kind: "Image" },
{ name: "imageArrow", classes: "playtypeImageArrow", kind: "Image", src: "images/arrow.png" },
{ name: "imageTo", classes: "playtypeImageTo", kind: "Image" }
]}
],
// Constructor
rendered: function() {
this.inherited(arguments);
if (this.theme != null)
this.$.contentBox.addClass(this.theme);
this.fromChanged();
this.toChanged();
},
// Case changed
setCase: function() {
if (this.from.substr(0, 6) == "letter") {
this.from = "letter" + Abcd.context.casevalue;
this.fromChanged();
}
if (this.to.substr(0, 6) == "letter") {
this.to = "letter" + Abcd.context.casevalue;
this.toChanged();
}
},
// Image source setup
fromChanged: function() {
var src = "images/"+this.from+".png";
this.$.imageFrom.setAttribute("src", src);
},
toChanged: function() {
var src = "images/"+this.to+".png";
this.$.imageTo.setAttribute("src", src);
}
});