devexpress-richedit
Version:
DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.
30 lines (29 loc) • 1.63 kB
JavaScript
import { __awaiter } from "tslib";
import { MapCreator } from '../../../../../../common/utils/map-creator';
import { CompatSettings } from '../../../../../../common/model/compat-settings';
import { CompatibilityMode } from '../../../../../../common/model/document-model';
import { ElementDestination, LeafElementDestination } from '../destination';
export class DocumentSettingsCompatDestination extends ElementDestination {
get elementHandlerTable() {
return DocumentSettingsCompatDestination.handlerTable;
}
}
DocumentSettingsCompatDestination.handlerTable = new MapCreator()
.add('compatSetting', (data) => new DocumentSettingsCompatSettingDestination(data))
.get();
export class DocumentSettingsCompatSettingDestination extends LeafElementDestination {
processElementOpen(reader) {
return __awaiter(this, void 0, void 0, function* () {
const compatSettings = new CompatSettings();
compatSettings.name = this.data.readerHelper.readAttribute(reader, 'name');
compatSettings.uri = this.data.readerHelper.readAttribute(reader, 'uri');
compatSettings.value = this.data.readerHelper.readAttribute(reader, 'val');
this.data.documentModel.compatSettings.push(compatSettings);
this.processSetting(reader, compatSettings);
});
}
processSetting(reader, prop) {
if (prop.name == "compatibilityMode")
this.data.documentModel.compatibilitySettings.compatibilityMode = this.data.readerHelper.getWpSTIntegerValue(reader, "val", CompatibilityMode.Word2007);
}
}