236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
|
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
|
-
-
+
+
-
+
-
+
-
-
+
+
|
return this.oTextFormatter.formatText(sText);
}
setTfOptions(dOptions) {
if (!this.isInit.TextFormatter) {
this.load(["TextFormatter"]);
}
this.oTextFormatter.setUsedOptions(dOptions);
return this._helpers.mapToObject(this.oTextFormatter.getUsedOptions());
this.oTextFormatter.setOptions(dOptions);
return this._helpers.mapToObject(this.oTextFormatter.getOptions());
}
setTfOption(sOptName, bValue) {
if (!this.isInit.TextFormatter) {
this.load(["TextFormatter"]);
}
if (sOptName) {
let optionsTF = this.oTextFormatter.getUsedOptions();
let optionsTF = this.oTextFormatter.getOptions();
optionsTF.set(sOptName, bValue);
return this._helpers.mapToObject(this.oTextFormatter.getUsedOptions());
return this._helpers.mapToObject(this.oTextFormatter.getOptions());
}
return false;
}
resetTfOptions() {
if (!this.isInit.TextFormatter) {
this.load(["TextFormatter"]);
}
let optionsTF = this.oTextFormatter.getDefaultOptions();
this.oTextFormatter.setUsedOptions(optionsTF);
return this._helpers.mapToObject(this.oTextFormatter.getUsedOptions());
this.oTextFormatter.setOptions(optionsTF);
return this._helpers.mapToObject(this.oTextFormatter.getOptions());
}
//fonctions concernant plussieurs parties
verifParagraph(sText, bSuggest = true){
if (!this.isInit.Grammalecte || !this.isInit.Graphspell) {
this.load(["Grammalecte"]);
}
|