forked from irinazheltisheva/vscode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposite.ts
More file actions
65 lines (52 loc) · 1.58 KB
/
Copy pathcomposite.ts
File metadata and controls
65 lines (52 loc) · 1.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
import { IAction, IActionViewItem } from 'vs/base/common/actions';
import { Event } from 'vs/base/common/event';
export interface IComposite {
/**
* An event when the composite gained focus.
*/
readonly onDidFocus: Event<void>;
/**
* An event when the composite lost focus.
*/
readonly onDidBlur: Event<void>;
/**
* Returns the unique identifier of this composite.
*/
getId(): string;
/**
* Returns the name of this composite to show in the title area.
*/
getTitle(): string | undefined;
/**
* Returns the primary actions of the composite.
*/
getActions(): ReadonlyArray<IAction>;
/**
* Returns the secondary actions of the composite.
*/
getSecondaryActions(): ReadonlyArray<IAction>;
/**
* Returns an array of actions to show in the context menu of the composite
*/
getContextMenuActions(): ReadonlyArray<IAction>;
/**
* Returns the action item for a specific action.
*/
getActionViewItem(action: IAction): IActionViewItem | undefined;
/**
* Returns the underlying control of this composite.
*/
getControl(): ICompositeControl | undefined;
/**
* Asks the underlying control to focus.
*/
focus(): void;
}
/**
* Marker interface for the composite control
*/
export interface ICompositeControl { }