52 lines
902 B
TypeScript
52 lines
902 B
TypeScript
import { ParagraphProperty, SpecialIndentKind } from "./paragraph";
|
|
|
|
export class Level {
|
|
id: number;
|
|
start: number;
|
|
format: string;
|
|
text: string;
|
|
jc: string;
|
|
paragraphProperty: ParagraphProperty = {};
|
|
|
|
constructor(
|
|
id: number,
|
|
start: number,
|
|
format: string,
|
|
text: string,
|
|
jc: string
|
|
) {
|
|
this.id = id;
|
|
this.start = start;
|
|
this.format = format;
|
|
this.text = text;
|
|
this.jc = jc;
|
|
}
|
|
|
|
indent(
|
|
left: number,
|
|
specialIndentKind?: SpecialIndentKind,
|
|
specialIndentSize?: number
|
|
) {
|
|
this.paragraphProperty.indent = {
|
|
left,
|
|
specialIndentKind,
|
|
specialIndentSize,
|
|
};
|
|
return this;
|
|
}
|
|
}
|
|
|
|
export class LevelOverride {
|
|
level: number;
|
|
startOverride: number | null = null;
|
|
|
|
constructor(level: number) {
|
|
this.level = level;
|
|
}
|
|
|
|
start(start: number) {
|
|
this.startOverride = start;
|
|
return this;
|
|
}
|
|
}
|