当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript Emitter.fire方法代码示例

本文整理汇总了TypeScript中vs/base/common/event.Emitter.fire方法的典型用法代码示例。如果您正苦于以下问题:TypeScript Emitter.fire方法的具体用法?TypeScript Emitter.fire怎么用?TypeScript Emitter.fire使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在vs/base/common/event.Emitter的用法示例。


在下文中一共展示了Emitter.fire方法的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: _onUserIdle

	private _onUserIdle(): void {
		if (this._status !== UserStatus.Idle) {
			this._status = UserStatus.Idle;
			this._onStatusChange.fire(this._status);
		}
	}
开发者ID:TanukiSharp,项目名称:vscode,代码行数:6,代码来源:idleMonitor.ts

示例2: setSelectedExpression

	public setSelectedExpression(expression: IExpression) {
		this.selectedExpression = expression;
		this.expressionSelectedContextKey.set(!!expression);
		this._onDidSelectExpression.fire(expression);
	}
开发者ID:AllureFer,项目名称:vscode,代码行数:5,代码来源:debugViewModel.ts

示例3: change

	public change(newState: INewFindReplaceState, moveCursor: boolean, updateHistory: boolean = true): void {
		let changeEvent: FindReplaceStateChangedEvent = {
			moveCursor: moveCursor,
			updateHistory: updateHistory,
			searchString: false,
			replaceString: false,
			isRevealed: false,
			isReplaceRevealed: false,
			isRegex: false,
			wholeWord: false,
			matchCase: false,
			searchScope: false,
			matchesPosition: false,
			matchesCount: false,
			currentMatch: false
		};
		let somethingChanged = false;

		const oldEffectiveIsRegex = this.isRegex;
		const oldEffectiveWholeWords = this.wholeWord;
		const oldEffectiveMatchCase = this.matchCase;

		if (typeof newState.searchString !== 'undefined') {
			if (this._searchString !== newState.searchString) {
				this._searchString = newState.searchString;
				changeEvent.searchString = true;
				somethingChanged = true;
			}
		}
		if (typeof newState.replaceString !== 'undefined') {
			if (this._replaceString !== newState.replaceString) {
				this._replaceString = newState.replaceString;
				changeEvent.replaceString = true;
				somethingChanged = true;
			}
		}
		if (typeof newState.isRevealed !== 'undefined') {
			if (this._isRevealed !== newState.isRevealed) {
				this._isRevealed = newState.isRevealed;
				changeEvent.isRevealed = true;
				somethingChanged = true;
			}
		}
		if (typeof newState.isReplaceRevealed !== 'undefined') {
			if (this._isReplaceRevealed !== newState.isReplaceRevealed) {
				this._isReplaceRevealed = newState.isReplaceRevealed;
				changeEvent.isReplaceRevealed = true;
				somethingChanged = true;
			}
		}
		if (typeof newState.isRegex !== 'undefined') {
			this._isRegex = newState.isRegex;
		}
		if (typeof newState.wholeWord !== 'undefined') {
			this._wholeWord = newState.wholeWord;
		}
		if (typeof newState.matchCase !== 'undefined') {
			this._matchCase = newState.matchCase;
		}
		if (typeof newState.searchScope !== 'undefined') {
			if (!Range.equalsRange(this._searchScope, newState.searchScope)) {
				this._searchScope = newState.searchScope;
				changeEvent.searchScope = true;
				somethingChanged = true;
			}
		}

		// Overrides get set when they explicitly come in and get reset anytime something else changes
		this._isRegexOverride = (typeof newState.isRegexOverride !== 'undefined' ? newState.isRegexOverride : FindOptionOverride.NotSet);
		this._wholeWordOverride = (typeof newState.wholeWordOverride !== 'undefined' ? newState.wholeWordOverride : FindOptionOverride.NotSet);
		this._matchCaseOverride = (typeof newState.matchCaseOverride !== 'undefined' ? newState.matchCaseOverride : FindOptionOverride.NotSet);

		if (oldEffectiveIsRegex !== this.isRegex) {
			somethingChanged = true;
			changeEvent.isRegex = true;
		}
		if (oldEffectiveWholeWords !== this.wholeWord) {
			somethingChanged = true;
			changeEvent.wholeWord = true;
		}
		if (oldEffectiveMatchCase !== this.matchCase) {
			somethingChanged = true;
			changeEvent.matchCase = true;
		}

		if (somethingChanged) {
			this._onFindReplaceStateChange.fire(changeEvent);
		}
	}
开发者ID:KTXSoftware,项目名称:KodeStudio,代码行数:89,代码来源:findState.ts

示例4:

		viewFocusTracker.addFocusListener(() => this._onFocus.fire(view));
开发者ID:Contagious-Marketing,项目名称:vscode,代码行数:1,代码来源:splitview.ts

示例5:

		this.toDispose.push(this.model.addListener('highlight', () => this._onHighlightChange.fire()));
开发者ID:SeanKilleen,项目名称:vscode,代码行数:1,代码来源:treeImpl.ts

示例6: setSelectedFunctionBreakpoint

	public setSelectedFunctionBreakpoint(functionBreakpoint: debug.IFunctionBreakpoint): void {
		this.selectedFunctionBreakpoint = functionBreakpoint;
		this._onDidSelectFunctionBreakpoint.fire(functionBreakpoint);
	}
开发者ID:,项目名称:,代码行数:4,代码来源:

示例7:

		this._xterm.on('lineFeed', () => this._onCheckShell.fire());
开发者ID:armanio123,项目名称:vscode,代码行数:1,代码来源:windowsShellHelper.ts

示例8:

		this.toDispose.push(dom.addStandardDisposableListener(this.select, 'change', (e) => {
			this.select.title = e.target.value;
			this._onDidSelect.fire(e.target.value);
		}));
开发者ID:sandy081,项目名称:vscode,代码行数:4,代码来源:selectBox.ts

示例9: handleMetadataChanged

	private handleMetadataChanged(meta: string): void {
		this.metadata = meta;
		this._onMetadataChanged.fire();
	}
开发者ID:jumpinjackie,项目名称:sqlopsstudio,代码行数:4,代码来源:binaryEditor.ts

示例10: addCodeEditor

	public addCodeEditor(editor: ICommonCodeEditor): void {
		this._codeEditors[editor.getId()] = editor;
		this._onCodeEditorAdd.fire(editor);
	}
开发者ID:StateFarmIns,项目名称:vscode,代码行数:4,代码来源:abstractCodeEditorService.ts


注:本文中的vs/base/common/event.Emitter.fire方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。