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


TypeScript window.onDidCreateWebView方法代码示例

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


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

示例1: activate

export function activate(context: wing.ExtensionContext) {
	console.log('activate');

	let html = wing.Uri.file(path.join(context.extensionPath, 'web/index.html'));

	wing.window.webviews.forEach(webview => {
		webviewAdded(webview);
	});

	wing.window.onDidCreateWebView((webview) => {
		webviewAdded(webview);
	});

	wing.window.onDidDeleteWebView((webview) => {
		webviewRemoved(webview);
	});

	// wing.commands.registerCommand('extension.previewWebView', () => {
	// 	previewWebView(html);
	// });
	// hello
	wing.commands.registerCommand('extension.showNewTsClassPopup', () => {
		showWebViewPopup(html);
	});
}
开发者ID:Gt-Lab,项目名称:gtlab-wing-extensions,代码行数:25,代码来源:extension.ts

示例2: activate

export function activate(context: wing.ExtensionContext) {
	let html = wing.Uri.file(path.join(context.extensionPath, 'web/index.html'));

	wing.window.webviews.forEach(webview => {
		webviewAdded(webview);
	});

	wing.window.onDidCreateWebView((webview) => {
		webviewAdded(webview);
	});

	wing.window.onDidDeleteWebView((webview) => {
		webviewRemoved(webview);
	});

	wing.commands.registerCommand('extension.newUiStoryboard', () => {
		previewWebView(html);
	});
	wing.commands.registerCommand('extension.showWebViewPopup', () => {
		showWebViewPopup(html);
	});
}
开发者ID:Gt-Lab,项目名称:gtlab-wing-extensions,代码行数:22,代码来源:extension.ts

示例3: activate

export function activate(context: wing.ExtensionContext) {
	let html = wing.Uri.file(path.join(context.extensionPath, 'web/index.html'));
	
	wing.window.webviews.forEach(webview => {
		webviewAdded(webview);
	});

	wing.window.onDidCreateWebView((webview) => {
		webviewAdded(webview);
	});

	wing.window.onDidDeleteWebView((webview) => {
		webviewRemoved(webview);
	});

	wing.commands.registerCommand('extension.previewWebView', () => {
		previewWebView(html);
	});
	wing.commands.registerCommand('extension.showWebViewPopup', () => {
		showWebViewPopup(html);
	});
	
	
	wing.window.onDidChangeActiveTextEditor((texteditor) => {
		// console.log('onDidChangeActiveTextEditor');
		// previewWebView(html);
		
		showFileName(context);
	});
	showFileName(context);
	
	// wing.workspace.onDidChangeTextDocument((event)=>{
	// 	wing.window.showInformationMessage('wing.workspace.onDidChangeTextDocument');
	// });
	
	
}
开发者ID:Gt-Lab,项目名称:gtlab-wing-extensions,代码行数:37,代码来源:extension.ts

示例4: activate

export function activate(context: wing.ExtensionContext) {
	// console.log('activate');
	// wing.window.showInformationMessage('activate');
	
	let html = wing.Uri.file(path.join(context.extensionPath, 'web/index.html'));

	wing.window.webviews.forEach(webview => {
		webviewAdded(webview);
	});

	wing.window.onDidCreateWebView((webview) => {
		webviewAdded(webview);
	});

	wing.window.onDidDeleteWebView((webview) => {
		webviewRemoved(webview);
	});

	wing.commands.registerCommand('extension.gtlab.wingPsMaster.show', () => {
		previewWebView(html);
	});
	// wing.commands.registerCommand('extension.showWebViewPopup', () => {
	// 	showWebViewPopup(html);
	// });
	
	
	
	// // workspace
	// wing.workspace.onDidChangeTextDocument((e: any) => {
	// 	wing.window.showInformationMessage('onDidChangeTextDocument');
	// });
	
	// wing.workspace.onDidOpenTextDocument((e: any) => {
	// 	wing.window.showInformationMessage('onDidOpenTextDocument');
	// });
	
	
	
	// // window
	// wing.window.onDidChangeTextEditorOptions((e:any) => {
	// 	wing.window.showInformationMessage('onDidChangeTextEditorOptions');
	// });
	
	// wing.window.onDidChangeTextEditorSelection((e:any)=>{
	// 	wing.window.showInformationMessage('onDidChangeTextEditorSelection');
	// });
	
	// wing.window.onDidChangeTextEditorViewColumn((e:any)=>{
	// 	wing.window.showInformationMessage('onDidChangeTextEditorViewColumn');
	// });
	
	
	
	
	// wing.window.onDidChangeActiveTextEditor((texteditor) => {
	// 	wing.window.showInformationMessage('onDidChangeActiveTextEditor');
	// 	// console.log('onDidChangeActiveTextEditor');
	// 	// previewWebView(html);
		
	// 	// showFileName(context);
	// });
	// // showFileName(context);
	
	// wing.window.showInformationMessage('setInterval');
	// setInterval( function () {
	// 	showFileName(context)
	// }, 2000);
}
开发者ID:Gt-Lab,项目名称:gtlab-wing-extensions,代码行数:68,代码来源:extension.ts


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