SQL Operations Studio Public Preview 1 (0.23) release source code

This commit is contained in:
Karl Burtram
2017-11-09 14:30:27 -08:00
parent b88ecb8d93
commit 3cdac41339
8829 changed files with 759707 additions and 286 deletions

View File

@@ -0,0 +1,95 @@
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the Source EULA. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
'use strict';
import { IDisposable } from 'vs/base/common/lifecycle';
import { createDecorator } from 'vs/platform/instantiation/common/instantiation';
export interface IBadge {
getDescription(): string;
}
export class BaseBadge implements IBadge {
public descriptorFn: (args: any) => string;
constructor(descriptorFn: (args: any) => string) {
this.descriptorFn = descriptorFn;
}
public getDescription(): string {
return this.descriptorFn(null);
}
}
export class NumberBadge extends BaseBadge {
public number: number;
constructor(number: number, descriptorFn: (args: any) => string) {
super(descriptorFn);
this.number = number;
}
public getDescription(): string {
return this.descriptorFn(this.number);
}
}
export class TextBadge extends BaseBadge {
public text: string;
constructor(text: string, descriptorFn: (args: any) => string) {
super(descriptorFn);
this.text = text;
}
}
export class IconBadge extends BaseBadge {
constructor(descriptorFn: (args: any) => string) {
super(descriptorFn);
}
}
export class ProgressBadge extends BaseBadge {
}
export const IActivityBarService = createDecorator<IActivityBarService>('activityBarService');
export interface IActivityBarService {
_serviceBrand: any;
/**
* Show activity in the activitybar for the given global activity.
*/
showGlobalActivity(globalActivityId: string, badge: IBadge): IDisposable;
/**
* Show activity in the activitybar for the given viewlet.
*/
showActivity(viewletId: string, badge: IBadge, clazz?: string): IDisposable;
/**
* Unpins a viewlet from the activitybar.
*/
unpin(viewletId: string): void;
/**
* Pin a viewlet inside the activity bar.
*/
pin(viewletId: string): void;
/**
* Find out if a viewlet is pinned in the activity bar.
*/
isPinned(viewletId: string): boolean;
/**
* Reorder viewlet ordering by moving a viewlet to the location of another viewlet.
*/
move(viewletId: string, toViewletId: string): void;
}