本文整理汇总了TypeScript中vs/editor/browser/view/viewOutgoingEvents.ViewOutgoingEvents类的典型用法代码示例。如果您正苦于以下问题:TypeScript ViewOutgoingEvents类的具体用法?TypeScript ViewOutgoingEvents怎么用?TypeScript ViewOutgoingEvents使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了ViewOutgoingEvents类的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: onFocusChanged
public onFocusChanged(e: viewEvents.ViewFocusChangedEvent): boolean {
this.domNode.setClassName(this.getEditorClassName());
if (e.isFocused) {
this.outgoingEvents.emitViewFocusGained();
} else {
this.outgoingEvents.emitViewFocusLost();
}
return false;
}
示例2: onFocusChanged
public onFocusChanged(e: viewEvents.ViewFocusChangedEvent): boolean {
this.domNode.toggleClassName('focused', e.isFocused);
if (e.isFocused) {
this.outgoingEvents.emitViewFocusGained();
} else {
this.outgoingEvents.emitViewFocusLost();
}
return false;
}
示例3: dispose
public dispose(): void {
this._isDisposed = true;
if (this.handleAccumulatedModelEventsTimeout !== -1) {
clearTimeout(this.handleAccumulatedModelEventsTimeout);
this.handleAccumulatedModelEventsTimeout = -1;
}
if (this._renderAnimationFrame !== null) {
this._renderAnimationFrame.dispose();
this._renderAnimationFrame = null;
}
this.accumulatedModelEvents = [];
this.eventDispatcher.removeEventHandler(this);
this.outgoingEvents.dispose();
this.listenersToRemove = dispose(this.listenersToRemove);
this.listenersToDispose = dispose(this.listenersToDispose);
this.keyboardHandler.dispose();
this.pointerHandler.dispose();
this.viewLines.dispose();
// Destroy view parts
for (let i = 0, len = this.viewParts.length; i < len; i++) {
this.viewParts[i].dispose();
}
this.viewParts = [];
this.layoutProvider.dispose();
}
示例4: _renderOnce
private _renderOnce(callback: () => any): any {
if (this._isDisposed) {
throw new Error('ViewImpl._renderOnce: View is disposed');
}
return this.outgoingEvents.deferredEmit(() => {
let r = safeInvokeNoArg(callback);
this._scheduleRender();
return r;
});
}
示例5: dispose
public dispose(): void {
if (this._renderAnimationFrame !== null) {
this._renderAnimationFrame.dispose();
this._renderAnimationFrame = null;
}
this.eventDispatcher.removeEventHandler(this);
this.outgoingEvents.dispose();
this.viewLines.dispose();
// Destroy view parts
for (let i = 0, len = this.viewParts.length; i < len; i++) {
this.viewParts[i].dispose();
}
this.viewParts = [];
super.dispose();
}
示例6: onScrollChanged
public onScrollChanged(e: viewEvents.ViewScrollChangedEvent): boolean {
this.outgoingEvents.emitScrollChanged(e);
return false;
}
示例7: getInternalEventBus
public getInternalEventBus(): IEventEmitter {
if (this._isDisposed) {
throw new Error('ViewImpl.getInternalEventBus: View is disposed');
}
return this.outgoingEvents.getInternalEventBus();
}
示例8: emitMouseDrop
public emitMouseDrop(e: IPartialEditorMouseEvent): void {
this.outgoingEvents.emitMouseDrop(e);
}
示例9: emitMouseDrag
public emitMouseDrag(e: IEditorMouseEvent): void {
this.outgoingEvents.emitMouseDrag(e);
}
示例10: emitContextMenu
public emitContextMenu(e: IEditorMouseEvent): void {
this.outgoingEvents.emitContextMenu(e);
}