本文整理汇总了TypeScript中vs/platform/clipboard/common/clipboardService.IClipboardService类的典型用法代码示例。如果您正苦于以下问题:TypeScript IClipboardService类的具体用法?TypeScript IClipboardService怎么用?TypeScript IClipboardService使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了IClipboardService类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: resourcesToClipboard
function resourcesToClipboard(resources: URI[], clipboardService: IClipboardService, notificationService: INotificationService): void {
if (resources.length) {
const lineDelimiter = isWindows ? '\r\n' : '\n';
const text = resources.map(r => r.scheme === Schemas.file ? labels.getPathLabel(r) : r.toString()).join(lineDelimiter);
clipboardService.writeText(text);
} else {
notificationService.info(nls.localize('openFileToCopy', "Open a file first to copy its path"));
}
}
示例2: resourcesToClipboard
function resourcesToClipboard(resources: URI[], relative: boolean, clipboardService: IClipboardService, notificationService: INotificationService, labelService: ILabelService): void {
if (resources.length) {
const lineDelimiter = isWindows ? '\r\n' : '\n';
const text = resources.map(resource => labelService.getUriLabel(resource, { relative, noPrefix: true }))
.join(lineDelimiter);
clipboardService.writeText(text);
} else {
notificationService.info(nls.localize('openFileToCopy', "Open a file first to copy its path"));
}
}
示例3:
resolve(variable: Variable): string {
if (variable.name !== 'CLIPBOARD' || !this._clipboardService) {
return undefined;
}
const text = this._clipboardService.readText();
if (!text) {
return undefined;
}
const lines = text.split(/\r\n|\n|\r/).filter(s => !isFalsyOrWhitespace(s));
if (lines.length === this._selectionCount) {
return lines[this._selectionIdx];
} else {
return text;
}
}
示例4: onKeyDown
// Allow copy to clipboard
public onKeyDown(event: IKeyboardEvent): void {
if (this.selectedOptions.length > 0) {
let key = event.keyCode;
let ctrlOrCmd = event.ctrlKey || event.metaKey;
if (ctrlOrCmd && key === KeyCode.KEY_C) {
let textToCopy = this.selectedOptions[0];
for (let i = 1; i < this.selectedOptions.length; i++) {
textToCopy = textToCopy + ', ' + this.selectedOptions[i];
}
// Copy to clipboard
this._clipboardService.writeText(textToCopy);
event.stopPropagation();
}
}
}