提交 4a5dd038 编写于 作者: I isidor

panel: introduce IComposite

上级 0799ac05
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
import {IEventEmitter} from 'vs/base/common/eventEmitter';
import {IAction, IActionItem} from 'vs/base/common/actions';
import {ISelection} from 'vs/platform/selection/common/selection';
export interface IComposite {
/**
* Returns the unique identifier of this composite.
*/
getId(): string;
/**
* Returns the name of this composite to show in the title area.
*/
getTitle(): string;
/**
* Returns the primary actions of the composite.
*/
getActions(): IAction[];
/**
* Returns the secondary actions of the composite.
*/
getSecondaryActions(): IAction[];
/**
* Returns the action item for a specific action.
*/
getActionItem(action: IAction): IActionItem;
/**
* Returns the underlying control of this composite.
*/
getControl(): IEventEmitter;
/**
* Returns the selection of this composite.
*/
getSelection(): ISelection;
/**
* Asks the underlying control to focus.
*/
focus(): void;
}
......@@ -4,49 +4,6 @@
*--------------------------------------------------------------------------------------------*/
'use strict';
import {IEventEmitter} from 'vs/base/common/eventEmitter';
import {IAction, IActionItem} from 'vs/base/common/actions';
import {ISelection} from 'vs/platform/selection/common/selection';
import {IComposite} from 'vs/workbench/common/composite';
export interface IViewlet {
/**
* Returns the unique identifier of this viewlet.
*/
getId(): string;
/**
* Returns the name of this viewlet to show in the title area.
*/
getTitle(): string;
/**
* Returns the primary actions of the viewlet.
*/
getActions(): IAction[];
/**
* Returns the secondary actions of the viewlet.
*/
getSecondaryActions(): IAction[];
/**
* Returns the action item for a specific action.
*/
getActionItem(action: IAction): IActionItem;
/**
* Returns the underlying control of this viewlet.
*/
getControl(): IEventEmitter;
/**
* Returns the selection of this viewlet.
*/
getSelection(): ISelection;
/**
* Asks the underlying control to focus.
*/
focus(): void;
}
\ No newline at end of file
export interface IViewlet extends IComposite { }
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册