118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
|
case "textToTest":
textToTest(dParam.sText, dParam.sCountry, dParam.bDebug, dParam.bContext, dInfo);
break;
case "fullTests":
fullTests(dInfo);
break;
case "setDictionary":
setDictionary(dParam.sType, dParam.oDict, dInfo);
break;
case "getSpellSuggestions":
getSpellSuggestions(dParam.sWord, dInfo);
break;
case "getListOfTokens":
getListOfTokens(dParam.sText, dInfo);
break;
|
|
>
>
>
|
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
|
case "textToTest":
textToTest(dParam.sText, dParam.sCountry, dParam.bDebug, dParam.bContext, dInfo);
break;
case "fullTests":
fullTests(dInfo);
break;
case "setDictionary":
setDictionary(dParam.sDictionary, dParam.oDict, dInfo);
break;
case "setDictionaryOnOff":
setDictionaryOnOff(dParam.sDictionary, dParam.bActivate, dInfo);
break;
case "getSpellSuggestions":
getSpellSuggestions(dParam.sWord, dInfo);
break;
case "getListOfTokens":
getListOfTokens(dParam.sText, dInfo);
break;
|
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
|
gc_engine.setOptions(dMemoOptions);
postMessage(createResponse("fullTests", sMsg, dInfo, true));
}
// SpellChecker
function setDictionary (sType, oDict, dInfo) {
if (!oSpellChecker) {
postMessage(createResponse("setDictionary", "# Error. SpellChecker not loaded.", dInfo, true));
return;
}
switch (sType) {
case "main":
oSpellChecker.setMainDictionary(oDict);
postMessage(createResponse("setDictionary", true, dInfo, true));
break;
case "extended":
oSpellChecker.setExtendedDictionary(oDict);
postMessage(createResponse("setDictionary", true, dInfo, true));
break;
case "community":
oSpellChecker.setCommunityDictionary(oDict);
postMessage(createResponse("setDictionary", true, dInfo, true));
break;
case "personal":
oSpellChecker.setPersonalDictionary(oDict);
postMessage(createResponse("setDictionary", true, dInfo, true));
break;
default:
console.log("[worker] setDictionary: Unknown command");
}
}
function getSpellSuggestions (sWord, dInfo) {
if (!oSpellChecker) {
postMessage(createResponse("getSpellSuggestions", "# Error. SpellChecker not loaded.", dInfo, true));
return;
}
|
|
|
<
<
<
>
>
>
>
|
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
|
>
|
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
|
gc_engine.setOptions(dMemoOptions);
postMessage(createResponse("fullTests", sMsg, dInfo, true));
}
// SpellChecker
function setDictionary (sDictionary, oDict, dInfo) {
if (!oSpellChecker) {
postMessage(createResponse("setDictionary", "# Error. SpellChecker not loaded.", dInfo, true));
return;
}
switch (sDictionary) {
case "main":
oSpellChecker.setMainDictionary(oDict);
break;
case "extended":
oSpellChecker.setExtendedDictionary(oDict);
break;
case "community":
oSpellChecker.setCommunityDictionary(oDict);
break;
case "personal":
oSpellChecker.setPersonalDictionary(oDict);
break;
default:
console.log("[worker] setDictionary: Unknown dictionary");
}
postMessage(createResponse("setDictionary", true, dInfo, true));
}
function setDictionaryOnOff (sDictionary, bActivate, dInfo) {
if (!oSpellChecker) {
postMessage(createResponse("setDictionary", "# Error. SpellChecker not loaded.", dInfo, true));
return;
}
console.log(sDictionary, bActivate);
switch (sDictionary) {
case "extended":
if (bActivate) {
oSpellChecker.activateExtendedDictionary();
} else {
oSpellChecker.deactivateExtendedDictionary();
}
break;
case "community":
if (bActivate) {
oSpellChecker.activateCommunityDictionary();
} else {
oSpellChecker.deactivateCommunityDictionary();
}
break;
case "personal":
if (bActivate) {
oSpellChecker.activatePersonalDictionary();
} else {
oSpellChecker.deactivatePersonalDictionary();
}
break;
default:
console.log("[worker] setDictionaryOnOff: Unknown dictionary");
}
postMessage(createResponse("setDictionary", true, dInfo, true));
}
function getSpellSuggestions (sWord, dInfo) {
if (!oSpellChecker) {
postMessage(createResponse("getSpellSuggestions", "# Error. SpellChecker not loaded.", dInfo, true));
return;
}
|