xterm.d.ts 14.9 KB
Newer Older
D
Daniel Imms 已提交
1 2 3 4 5 6 7 8
/**
 * @license MIT
 *
 * This contains the type declarations for the xterm.js library. Note that
 * some interfaces differ between this file and the actual implementation in
 * src/, that's because this file declares the *public* API which is intended
 * to be stable and consumed by external programs.
 */
D
Daniel Imms 已提交
9

10
declare module 'xterm' {
D
Daniel Imms 已提交
11
	/**
12
	 * An object containing start up options for the terminal.
D
Daniel Imms 已提交
13
	 */
D
Daniel Imms 已提交
14
	export interface ITerminalOptions {
15 16 17 18
		/**
		 * A data uri of the sound to use for the bell (needs bellStyle = 'sound').
		 */
		bellSound?: string;
D
Daniel Imms 已提交
19

20 21 22
		/**
		 * The type of the bell notification the terminal will use.
		 */
D
Daniel Imms 已提交
23
		bellStyle?: 'none' /*| 'visual'*/ | 'sound' /*| 'both'*/;
D
Daniel Imms 已提交
24

25 26 27 28
		/**
		 * The number of columns in the terminal.
		 */
		cols?: number;
D
Daniel Imms 已提交
29

30 31 32 33
		/**
		 * Whether the cursor blinks.
		 */
		cursorBlink?: boolean;
D
Daniel Imms 已提交
34

35 36 37 38
		/**
		 * The style of the cursor.
		 */
		cursorStyle?: 'block' | 'underline' | 'bar';
D
Daniel Imms 已提交
39

40 41 42 43
		/**
		 * Whether input should be disabled.
		 */
		disableStdin?: boolean;
D
Daniel Imms 已提交
44

45 46 47 48
		/**
		 * Whether to enable the rendering of bold text.
		 */
		enableBold?: boolean;
D
Daniel Imms 已提交
49

50 51 52 53
		/**
		 * The font size used to render text.
		 */
		fontSize?: number;
D
Daniel Imms 已提交
54

55 56 57 58
		/**
		 * The font family used to render text.
		 */
		fontFamily?: string;
D
Daniel Imms 已提交
59

D
Daniel Imms 已提交
60 61 62 63 64
		/**
		 * The spacing in whole pixels between characters..
		 */
		letterSpacing?: number;

65 66 67 68
		/**
		 * The line height used to render text.
		 */
		lineHeight?: number;
D
Daniel Imms 已提交
69

70 71 72 73
		/**
		 * The number of rows in the terminal.
		 */
		rows?: number;
D
Daniel Imms 已提交
74

75 76 77 78 79
		/**
		 * The amount of scrollback in the terminal. Scrollback is the amount of rows
		 * that are retained when lines are scrolled beyond the initial viewport.
		 */
		scrollback?: number;
D
Daniel Imms 已提交
80

81 82 83 84
		/**
		 * The size of tab stops in the terminal.
		 */
		tabStopWidth?: number;
D
Daniel Imms 已提交
85

86 87 88 89 90 91 92 93 94
		/**
		 * The color theme of the terminal.
		 */
		theme?: ITheme;
	}

	/**
	 * Contains colors to theme the terminal with.
	 */
D
Daniel Imms 已提交
95
	export interface ITheme {
96 97 98 99 100 101 102 103
		/** The default foreground color */
		foreground?: string,
		/** The default background color */
		background?: string,
		/** The cursor color */
		cursor?: string,
		/** The accent color of the cursor (used as the foreground color for a block cursor) */
		cursorAccent?: string,
D
Daniel Imms 已提交
104 105
		/** The selection color (can be transparent) */
		selection?: string,
106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142
		/** ANSI black (eg. `\x1b[30m`) */
		black?: string,
		/** ANSI red (eg. `\x1b[31m`) */
		red?: string,
		/** ANSI green (eg. `\x1b[32m`) */
		green?: string,
		/** ANSI yellow (eg. `\x1b[33m`) */
		yellow?: string,
		/** ANSI blue (eg. `\x1b[34m`) */
		blue?: string,
		/** ANSI magenta (eg. `\x1b[35m`) */
		magenta?: string,
		/** ANSI cyan (eg. `\x1b[36m`) */
		cyan?: string,
		/** ANSI white (eg. `\x1b[37m`) */
		white?: string,
		/** ANSI bright black (eg. `\x1b[1;30m`) */
		brightBlack?: string,
		/** ANSI bright red (eg. `\x1b[1;31m`) */
		brightRed?: string,
		/** ANSI bright green (eg. `\x1b[1;32m`) */
		brightGreen?: string,
		/** ANSI bright yellow (eg. `\x1b[1;33m`) */
		brightYellow?: string,
		/** ANSI bright blue (eg. `\x1b[1;34m`) */
		brightBlue?: string,
		/** ANSI bright magenta (eg. `\x1b[1;35m`) */
		brightMagenta?: string,
		/** ANSI bright cyan (eg. `\x1b[1;36m`) */
		brightCyan?: string,
		/** ANSI bright white (eg. `\x1b[1;37m`) */
		brightWhite?: string
	}

	/**
	 * An object containing options for a link matcher.
	 */
D
Daniel Imms 已提交
143
	export interface ILinkMatcherOptions {
144 145 146 147 148
		/**
		 * The index of the link from the regex.match(text) call. This defaults to 0
		 * (for regular expressions without capture groups).
		 */
		matchIndex?: number;
D
Daniel Imms 已提交
149

150 151 152 153 154
		/**
		 * A callback that validates an individual link, returning true if valid and
		 * false if invalid.
		 */
		validationCallback?: (uri: string, callback: (isValid: boolean) => void) => void;
D
Daniel Imms 已提交
155

156 157 158 159
		/**
		 * A callback that fires when the mouse hovers over a link for a moment.
		 */
		tooltipCallback?: (event: MouseEvent, uri: string) => boolean | void;
D
Daniel Imms 已提交
160

161 162 163 164 165
		/**
		 * A callback that fires when the mouse leaves a link. Note that this can
		 * happen even when tooltipCallback hasn't fired for the link yet.
		 */
		leaveCallback?: (event: MouseEvent, uri: string) => boolean | void;
D
Daniel Imms 已提交
166

167 168 169 170 171 172 173
		/**
		 * The priority of the link matcher, this defines the order in which the link
		 * matcher is evaluated relative to others, from highest to lowest. The
		 * default value is 0.
		 */
		priority?: number;
	}
D
Daniel Imms 已提交
174 175 176 177

	/**
	 * The class that represents an xterm.js terminal.
	 */
D
Daniel Imms 已提交
178
	export class Terminal {
D
Daniel Imms 已提交
179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220
		/**
		 * The element containing the terminal.
		 */
		element: HTMLElement;

		/**
		 * The textarea that accepts input for the terminal.
		 */
		textarea: HTMLTextAreaElement;

		/**
		 * The number of rows in the terminal's viewport.
		 */
		rows: number;

		/**
		 * The number of columns in the terminal's viewport.
		 */
		cols: number;

		/**
		 * Creates a new `Terminal` object.
		 *
		 * @param options An object containing a set of options.
		 */
		constructor(options?: ITerminalOptions);

		/**
		 * Unfocus the terminal.
		 */
		blur(): void;

		/**
		 * Focus the terminal.
		 */
		focus(): void;

		/**
		 * Registers an event listener.
		 * @param type The type of the event.
		 * @param listener The listener.
		 */
D
Daniel Imms 已提交
221
		on(type: 'blur' | 'focus' | 'linefeed' | 'selection', listener: () => void): void;
D
Daniel Imms 已提交
222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244
		/**
		 * Registers an event listener.
		 * @param type The type of the event.
		 * @param listener The listener.
		 */
		on(type: 'data', listener: (data?: string) => void): void;
		/**
		 * Registers an event listener.
		 * @param type The type of the event.
		 * @param listener The listener.
		 */
		on(type: 'key', listener: (key?: string, event?: KeyboardEvent) => void): void;
		/**
		 * Registers an event listener.
		 * @param type The type of the event.
		 * @param listener The listener.
		 */
		on(type: 'keypress' | 'keydown', listener: (event?: KeyboardEvent) => void): void;
		/**
		 * Registers an event listener.
		 * @param type The type of the event.
		 * @param listener The listener.
		 */
D
Daniel Imms 已提交
245
		on(type: 'refresh', listener: (data?: {start: number, end: number}) => void): void;
D
Daniel Imms 已提交
246 247 248 249 250
		/**
		 * Registers an event listener.
		 * @param type The type of the event.
		 * @param listener The listener.
		 */
D
Daniel Imms 已提交
251
		on(type: 'resize', listener: (data?: {cols: number, rows: number}) => void): void;
D
Daniel Imms 已提交
252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275
		/**
		 * Registers an event listener.
		 * @param type The type of the event.
		 * @param listener The listener.
		 */
		on(type: 'scroll', listener: (ydisp?: number) => void): void;
		/**
		 * Registers an event listener.
		 * @param type The type of the event.
		 * @param listener The listener.
		 */
		on(type: 'title', listener: (title?: string) => void): void;
		/**
		 * Registers an event listener.
		 * @param type The type of the event.
		 * @param listener The listener.
		 */
		on(type: string, listener: (...args: any[]) => void): void;

		/**
		 * Deregisters an event listener.
		 * @param type The type of the event.
		 * @param listener The listener.
		 */
D
Daniel Imms 已提交
276
		off(type: 'blur' | 'focus' | 'linefeed' | 'selection' | 'data' | 'key' | 'keypress' | 'keydown' | 'refresh' | 'resize' | 'scroll' | 'title' | string, listener: (...args: any[]) => void): void;
D
Daniel Imms 已提交
277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292

		/**
		 * Resizes the terminal.
		 * @param x The number of columns to resize to.
		 * @param y The number of rows to resize to.
		 */
		resize(columns: number, rows: number): void;

		/**
		 * Writes text to the terminal, followed by a break line character (\n).
		 * @param data The text to write to the terminal.
		 */
		writeln(data: string): void;

		/**
		 * Opens the terminal within an element.
D
Daniel Imms 已提交
293 294 295
		 * @param parent The element to create the terminal within. This element
		 * must be visible (have dimensions) when `open` is called as several DOM-
		 * based measurements need to be performed when this function is called.
D
Daniel Imms 已提交
296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319
		 */
		open(parent: HTMLElement): void;

		/**
		 * Attaches a custom key event handler which is run before keys are
		 * processed, giving consumers of xterm.js ultimate control as to what keys
		 * should be processed by the terminal and what keys should not.
		 * @param customKeyEventHandler The custom KeyboardEvent handler to attach.
		 * This is a function that takes a KeyboardEvent, allowing consumers to stop
		 * propogation and/or prevent the default action. The function returns
		 * whether the event should be processed by xterm.js.
		 */
		attachCustomKeyEventHandler(customKeyEventHandler: (event: KeyboardEvent) => boolean): void;

		/**
		 * (EXPERIMENTAL) Registers a link matcher, allowing custom link patterns to
		 * be matched and handled.
		 * @param regex The regular expression to search for, specifically this
		 * searches the textContent of the rows. You will want to use \s to match a
		 * space ' ' character for example.
		 * @param handler The callback when the link is called.
		 * @param options Options for the link matcher.
		 * @return The ID of the new matcher, this can be used to deregister.
		 */
D
Daniel Imms 已提交
320
		registerLinkMatcher(regex: RegExp, handler: (event: MouseEvent, uri: string) => boolean | void, options?: ILinkMatcherOptions): number;
D
Daniel Imms 已提交
321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373

		/**
		 * (EXPERIMENTAL) Deregisters a link matcher if it has been registered.
		 * @param matcherId The link matcher's ID (returned after register)
		 */
		deregisterLinkMatcher(matcherId: number): void;

		/**
		 * Gets whether the terminal has an active selection.
		 */
		hasSelection(): boolean;

		/**
		 * Gets the terminal's current selection, this is useful for implementing
		 * copy behavior outside of xterm.js.
		 */
		getSelection(): string;

		/**
		 * Clears the current terminal selection.
		 */
		clearSelection(): void;

		/**
		 * Selects all text within the terminal.
		 */
		selectAll(): void;

		// /**
		//  * Find the next instance of the term, then scroll to and select it. If it
		//  * doesn't exist, do nothing.
		//  * @param term Tne search term.
		//  * @return Whether a result was found.
		//  */
		// findNext(term: string): boolean;

		// /**
		//  * Find the previous instance of the term, then scroll to and select it. If it
		//  * doesn't exist, do nothing.
		//  * @param term Tne search term.
		//  * @return Whether a result was found.
		//  */
		// findPrevious(term: string): boolean;

		/**
		 * Destroys the terminal and detaches it from the DOM.
		 */
		destroy(): void;

		/**
		 * Scroll the display of the terminal
		 * @param amount The number of lines to scroll down (negative scroll up).
		 */
D
Daniel Imms 已提交
374
		scrollLines(amount: number): void;
D
Daniel Imms 已提交
375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411

		/**
		 * Scroll the display of the terminal by a number of pages.
		 * @param pageCount The number of pages to scroll (negative scrolls up).
		 */
		scrollPages(pageCount: number): void;

		/**
		 * Scrolls the display of the terminal to the top.
		 */
		scrollToTop(): void;

		/**
		 * Scrolls the display of the terminal to the bottom.
		 */
		scrollToBottom(): void;

		/**
		 * Clear the entire buffer, making the prompt line the new first line.
		 */
		clear(): void;

		/**
		 * Writes text to the terminal.
		 * @param data The text to write to the terminal.
		 */
		write(data: string): void;

		/**
		 * Retrieves an option's value from the terminal.
		 * @param key The option key.
		 */
		getOption(key: 'bellSound' | 'bellStyle' | 'cursorStyle' | 'fontFamily' | 'termName'): string;
		/**
		 * Retrieves an option's value from the terminal.
		 * @param key The option key.
		 */
D
Daniel Imms 已提交
412
		getOption(key: 'cancelEvents' | 'convertEol' | 'cursorBlink' | 'debug' | 'disableStdin' | 'enableBold' | 'popOnBell' | 'screenKeys' | 'useFlowControl' | 'visualBell'): boolean;
D
Daniel Imms 已提交
413 414 415 416 417 418 419 420 421
		/**
		 * Retrieves an option's value from the terminal.
		 * @param key The option key.
		 */
		getOption(key: 'colors'): string[];
		/**
		 * Retrieves an option's value from the terminal.
		 * @param key The option key.
		 */
D
Daniel Imms 已提交
422
		getOption(key: 'cols' | 'fontSize' | 'letterSpacing' | 'lineHeight' | 'rows' | 'tabStopWidth' | 'scrollback'): number;
D
Daniel Imms 已提交
423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456
		/**
		 * Retrieves an option's value from the terminal.
		 * @param key The option key.
		 */
		getOption(key: 'handler'): (data: string) => void;
		/**
		 * Retrieves an option's value from the terminal.
		 * @param key The option key.
		 */
		getOption(key: string): any;

		/**
		 * Sets an option on the terminal.
		 * @param key The option key.
		 * @param value The option value.
		 */
		setOption(key: 'fontFamily' | 'termName' | 'bellSound', value: string): void;
		/**
		 * Sets an option on the terminal.
		 * @param key The option key.
		 * @param value The option value.
		 */
		setOption(key: 'bellStyle', value: null | 'none' | 'visual' | 'sound' | 'both'): void;
		/**
		 * Sets an option on the terminal.
		 * @param key The option key.
		 * @param value The option value.
		 */
		setOption(key: 'cursorStyle', value: null | 'block' | 'underline' | 'bar'): void;
		/**
		 * Sets an option on the terminal.
		 * @param key The option key.
		 * @param value The option value.
		 */
D
Daniel Imms 已提交
457
		setOption(key: 'cancelEvents' | 'convertEol' | 'cursorBlink' | 'debug' | 'disableStdin' | 'enableBold' | 'popOnBell' | 'screenKeys' | 'useFlowControl' | 'visualBell', value: boolean): void;
D
Daniel Imms 已提交
458 459 460 461 462 463 464 465 466 467 468
		/**
		 * Sets an option on the terminal.
		 * @param key The option key.
		 * @param value The option value.
		 */
		setOption(key: 'colors', value: string[]): void;
		/**
		 * Sets an option on the terminal.
		 * @param key The option key.
		 * @param value The option value.
		 */
D
Daniel Imms 已提交
469
		setOption(key: 'fontSize' | 'letterSpacing' | 'lineHeight' | 'tabStopWidth' | 'scrollback', value: number): void;
D
Daniel Imms 已提交
470 471 472 473 474 475 476 477 478 479 480
		/**
		 * Sets an option on the terminal.
		 * @param key The option key.
		 * @param value The option value.
		 */
		setOption(key: 'handler', value: (data: string) => void): void;
		/**
		 * Sets an option on the terminal.
		 * @param key The option key.
		 * @param value The option value.
		 */
D
Daniel Imms 已提交
481
		setOption(key: 'theme', value: ITheme): void;
D
Daniel Imms 已提交
482
		/**
D
Daniel Imms 已提交
483 484 485
		 * Sets an option on the terminal.
		 * @param key The option key.
		 * @param value The option value.
D
Daniel Imms 已提交
486
		 */
D
Daniel Imms 已提交
487
		setOption(key: string, value: any): void;
D
Daniel Imms 已提交
488 489 490 491 492 493 494 495 496 497 498 499 500 501 502

		/**
		 * Tells the renderer to refresh terminal content between two rows
		 * (inclusive) at the next opportunity.
		 * @param start The row to start from (between 0 and this.rows - 1).
		 * @param end The row to end at (between start and this.rows - 1).
		 */
		refresh(start: number, end: number): void;

		/**
		 * Perform a full reset (RIS, aka '\x1bc').
		 */
		reset(): void

		/**
D
Daniel Imms 已提交
503 504 505
		 * Applies an addon to the Terminal prototype, making it available to all
		 * newly created Terminals.
		 * @param addon The addon to apply.
D
Daniel Imms 已提交
506
		 */
D
Daniel Imms 已提交
507
		static applyAddon(addon: any): void;
D
Daniel Imms 已提交
508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539



		// Modifications to official .d.ts below

		buffer: {
			/**
			 * The viewport position.
			 */
			ydisp: number;
		};

		/**
		 * Emit an event on the terminal.
		 */
		emit(type: string, data: any): void;

		/**
		 * Find the next instance of the term, then scroll to and select it. If it
		 * doesn't exist, do nothing.
		 * @param term Tne search term.
		 * @return Whether a result was found.
		 */
		findNext(term: string): boolean;

		/**
		 * Find the previous instance of the term, then scroll to and select it. If it
		 * doesn't exist, do nothing.
		 * @param term Tne search term.
		 * @return Whether a result was found.
		 */
		findPrevious(term: string): boolean;
540 541

		winptyCompatInit(): void;
D
Daniel Imms 已提交
542
	}
D
Daniel Imms 已提交
543
}