1 | import { ColorRegistry } from './color-registry';
|
2 | import { Emitter } from '../common/event';
|
3 | import { ThemeService } from './theming';
|
4 | import { FrontendApplicationContribution } from './frontend-application';
|
5 | import { ContributionProvider } from '../common/contribution-provider';
|
6 | import { Disposable, DisposableCollection } from '../common/disposable';
|
7 | export declare const ColorContribution: unique symbol;
|
8 | export interface ColorContribution {
|
9 | registerColors(colors: ColorRegistry): void;
|
10 | }
|
11 | export declare class ColorApplicationContribution implements FrontendApplicationContribution {
|
12 | protected readonly onDidChangeEmitter: Emitter<void>;
|
13 | readonly onDidChange: import("../common/event").Event<void>;
|
14 | private readonly windows;
|
15 | protected readonly colors: ColorRegistry;
|
16 | protected readonly colorContributions: ContributionProvider<ColorContribution>;
|
17 | protected readonly themeService: ThemeService;
|
18 | onStart(): void;
|
19 | registerWindow(win: Window): Disposable;
|
20 | protected readonly toUpdate: DisposableCollection;
|
21 | protected update(): void;
|
22 | protected updateWindow(win: Window): void;
|
23 | protected updateThemeBackground(): void;
|
24 | }
|
25 |
|
\ | No newline at end of file |