65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
this.xLxgPanelContent = oGrammalecte.createNode("div", {id: "grammalecte_lxg_panel_content"});
this.xPanelContent.appendChild(this.xLxgPanelContent);
}
createMenu () {
this.xMenu = oGrammalecte.createNode("div", {className: "grammalecte_panel_menu"});
this.xTFButton = oGrammalecte.createNode("div", {className: "grammalecte_menu_button", textContent: "Formateur de texte"});
this.xEditorButton = oGrammalecte.createNode("div", {className: "grammalecte_menu_button", textContent: "Texte"});
this.xLxgButton = oGrammalecte.createNode("div", {className: "grammalecte_menu_button", textContent: "Lexicographe"});
this.xConjButton = oGrammalecte.createNode("div", {className: "grammalecte_menu_button", textContent: "Conjugueur "});
this.xLEButton = oGrammalecte.createNode("div", {className: "grammalecte_menu_button", textContent: "Éditeur lexical "});
this.xTFButton.onclick = () => {
oGrammalecte.createTFPanel();
if (this.xNode) {
oGrammalecte.oTFPanel.start(this.xNode);
|
|
|
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
this.xLxgPanelContent = oGrammalecte.createNode("div", {id: "grammalecte_lxg_panel_content"});
this.xPanelContent.appendChild(this.xLxgPanelContent);
}
createMenu () {
this.xMenu = oGrammalecte.createNode("div", {className: "grammalecte_panel_menu"});
this.xTFButton = oGrammalecte.createNode("div", {className: "grammalecte_menu_button", textContent: "Formateur de texte"});
this.xEditorButton = oGrammalecte.createNode("div", {className: "grammalecte_menu_button", textContent: "Éditeur"});
this.xLxgButton = oGrammalecte.createNode("div", {className: "grammalecte_menu_button", textContent: "Lexicographe"});
this.xConjButton = oGrammalecte.createNode("div", {className: "grammalecte_menu_button", textContent: "Conjugueur "});
this.xLEButton = oGrammalecte.createNode("div", {className: "grammalecte_menu_button", textContent: "Éditeur lexical "});
this.xTFButton.onclick = () => {
oGrammalecte.createTFPanel();
if (this.xNode) {
oGrammalecte.oTFPanel.start(this.xNode);
|
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
|
return oGrammalecte.getPageText();
}
}
showEditor () {
this.xGCPanelContent.style.display = "block";
this.xLxgPanelContent.style.display = "none";
}
showLexicographer () {
this.xGCPanelContent.style.display = "none";
this.xLxgPanelContent.style.display = "block";
}
clear () {
while (this.xParagraphList.firstChild) {
this.xParagraphList.removeChild(this.xParagraphList.firstChild);
}
this.aIgnoredErrors.clear();
|
>
>
>
>
>
>
>
>
|
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
|
return oGrammalecte.getPageText();
}
}
showEditor () {
this.xGCPanelContent.style.display = "block";
this.xLxgPanelContent.style.display = "none";
this.xEditorButton.style.textShadow = "2px 0 0 hsla(210, 40%, 35%, .5), -2px 0 0 hsla(210, 40%, 35%, .5), 0 2px 0 hsla(210, 40%, 35%, .5), 0 -2px 0 hsla(210, 40%, 35%, .5), 1px 1px hsla(210, 40%, 35%, .5), -1px -1px 0 hsla(210, 40%, 35%, .5), 1px -1px 0 hsla(210, 40%, 35%, .5), -1px 1px 0 hsla(210, 40%, 35%, .5)";
this.xLxgButton.style.textShadow = "";
this.xEditorButton.style.backgroundColor = "hsl(210, 60%, 40%)";
this.xLxgButton.style.backgroundColor = "";
}
showLexicographer () {
this.xGCPanelContent.style.display = "none";
this.xLxgPanelContent.style.display = "block";
this.xEditorButton.style.textShadow = "";
this.xLxgButton.style.textShadow = "2px 0 0 hsla(210, 40%, 35%, .5), -2px 0 0 hsla(210, 40%, 35%, .5), 0 2px 0 hsla(210, 40%, 35%, .5), 0 -2px 0 hsla(210, 40%, 35%, .5), 1px 1px hsla(210, 40%, 35%, .5), -1px -1px 0 hsla(210, 40%, 35%, .5), 1px -1px 0 hsla(210, 40%, 35%, .5), -1px 1px 0 hsla(210, 30%, 35%, .5)";
this.xEditorButton.style.backgroundColor = "";
this.xLxgButton.style.backgroundColor = "hsl(210, 60%, 40%)";
}
clear () {
while (this.xParagraphList.firstChild) {
this.xParagraphList.removeChild(this.xParagraphList.firstChild);
}
this.aIgnoredErrors.clear();
|