|
|
|
@ -7,7 +7,8 @@ import {
|
|
|
|
IPageSizeChange,
|
|
|
|
IPageSizeChange,
|
|
|
|
IRangeStyleChange,
|
|
|
|
IRangeStyleChange,
|
|
|
|
ISaved,
|
|
|
|
ISaved,
|
|
|
|
IVisiblePageNoListChange
|
|
|
|
IVisiblePageNoListChange,
|
|
|
|
|
|
|
|
IZoneChange
|
|
|
|
} from '../../interface/Listener'
|
|
|
|
} from '../../interface/Listener'
|
|
|
|
|
|
|
|
|
|
|
|
export class Listener {
|
|
|
|
export class Listener {
|
|
|
|
@ -21,6 +22,7 @@ export class Listener {
|
|
|
|
public contentChange: IContentChange | null
|
|
|
|
public contentChange: IContentChange | null
|
|
|
|
public controlChange: IControlChange | null
|
|
|
|
public controlChange: IControlChange | null
|
|
|
|
public pageModeChange: IPageModeChange | null
|
|
|
|
public pageModeChange: IPageModeChange | null
|
|
|
|
|
|
|
|
public zoneChange: IZoneChange | null
|
|
|
|
|
|
|
|
|
|
|
|
constructor() {
|
|
|
|
constructor() {
|
|
|
|
this.rangeStyleChange = null
|
|
|
|
this.rangeStyleChange = null
|
|
|
|
@ -32,6 +34,7 @@ export class Listener {
|
|
|
|
this.contentChange = null
|
|
|
|
this.contentChange = null
|
|
|
|
this.controlChange = null
|
|
|
|
this.controlChange = null
|
|
|
|
this.pageModeChange = null
|
|
|
|
this.pageModeChange = null
|
|
|
|
|
|
|
|
this.zoneChange = null
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|