123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220 |
- // Copyright 2019-2023 Tauri Programme within The Commons Conservancy
- // SPDX-License-Identifier: Apache-2.0
- // SPDX-License-Identifier: MIT
- /**
- * Provides APIs to create windows, communicate with other windows and manipulate the current window.
- *
- * ## Window events
- *
- * Events can be listened to using {@link Window.listen}:
- * ```typescript
- * import { getCurrent } from "@tauri-apps/api/window";
- * getCurrent().listen("my-window-event", ({ event, payload }) => { });
- * ```
- *
- * @module
- */
- import {
- LogicalPosition,
- LogicalSize,
- PhysicalPosition,
- PhysicalSize
- } from './dpi'
- import type { Event, EventName, EventCallback, UnlistenFn } from './event'
- import { TauriEvent, emit, listen, once } from './event'
- import { invoke } from './primitives'
- /**
- * Allows you to retrieve information about a given monitor.
- *
- * @since 2.0.0
- */
- export interface Monitor {
- /** Human-readable name of the monitor */
- name: string | null
- /** The monitor's resolution. */
- size: PhysicalSize
- /** the Top-left corner position of the monitor relative to the larger full screen area. */
- position: PhysicalPosition
- /** The scale factor that can be used to map physical pixels to logical pixels. */
- scaleFactor: number
- }
- type Theme = 'light' | 'dark'
- type TitleBarStyle = 'visible' | 'transparent' | 'overlay'
- /**
- * The payload for the `scaleChange` event.
- *
- * @since 2.0.0
- */
- interface ScaleFactorChanged {
- /** The new window scale factor. */
- scaleFactor: number
- /** The new window size */
- size: PhysicalSize
- }
- /** The file drop event types. */
- type FileDropEvent =
- | { type: 'hover'; paths: string[] }
- | { type: 'drop'; paths: string[] }
- | { type: 'cancel' }
- /**
- * Attention type to request on a window.
- *
- * @since 2.0.0
- */
- enum UserAttentionType {
- /**
- * #### Platform-specific
- * - **macOS:** Bounces the dock icon until the application is in focus.
- * - **Windows:** Flashes both the window and the taskbar button until the application is in focus.
- */
- Critical = 1,
- /**
- * #### Platform-specific
- * - **macOS:** Bounces the dock icon once.
- * - **Windows:** Flashes the taskbar button until the application is in focus.
- */
- Informational
- }
- class CloseRequestedEvent {
- /** Event name */
- event: EventName
- /** The label of the window that emitted this event. */
- windowLabel: string
- /** Event identifier used to unlisten */
- id: number
- private _preventDefault = false
- constructor(event: Event<null>) {
- this.event = event.event
- this.windowLabel = event.windowLabel
- this.id = event.id
- }
- preventDefault(): void {
- this._preventDefault = true
- }
- isPreventDefault(): boolean {
- return this._preventDefault
- }
- }
- export type CursorIcon =
- | 'default'
- | 'crosshair'
- | 'hand'
- | 'arrow'
- | 'move'
- | 'text'
- | 'wait'
- | 'help'
- | 'progress'
- // something cannot be done
- | 'notAllowed'
- | 'contextMenu'
- | 'cell'
- | 'verticalText'
- | 'alias'
- | 'copy'
- | 'noDrop'
- // something can be grabbed
- | 'grab'
- /// something is grabbed
- | 'grabbing'
- | 'allScroll'
- | 'zoomIn'
- | 'zoomOut'
- // edge is to be moved
- | 'eResize'
- | 'nResize'
- | 'neResize'
- | 'nwResize'
- | 'sResize'
- | 'seResize'
- | 'swResize'
- | 'wResize'
- | 'ewResize'
- | 'nsResize'
- | 'neswResize'
- | 'nwseResize'
- | 'colResize'
- | 'rowResize'
- /**
- * Get an instance of `Window` for the current window.
- *
- * @since 2.0.0
- */
- function getCurrent(): Window {
- return new Window(window.__TAURI_INTERNALS__.metadata.currentWindow.label, {
- // @ts-expect-error `skip` is not defined in the public API but it is handled by the constructor
- skip: true
- })
- }
- /**
- * Gets a list of instances of `Window` for all available windows.
- *
- * @since 2.0.0
- */
- function getAll(): Window[] {
- return window.__TAURI_INTERNALS__.metadata.windows.map(
- (w) =>
- new Window(w.label, {
- // @ts-expect-error `skip` is not defined in the public API but it is handled by the constructor
- skip: true
- })
- )
- }
- /** @ignore */
- // events that are emitted right here instead of by the created webview
- const localTauriEvents = ['tauri://created', 'tauri://error']
- /** @ignore */
- export type WindowLabel = string
- /**
- * Create new webview window or get a handle to an existing one.
- *
- * Windows are identified by a *label* a unique identifier that can be used to reference it later.
- * It may only contain alphanumeric characters `a-zA-Z` plus the following special characters `-`, `/`, `:` and `_`.
- *
- * @example
- * ```typescript
- * // loading embedded asset:
- * const appWindow = new Window('theUniqueLabel', {
- * url: 'path/to/page.html'
- * });
- * // alternatively, load a remote URL:
- * const appWindow = new Window('theUniqueLabel', {
- * url: 'https://github.com/tauri-apps/tauri'
- * });
- *
- * appWindow.once('tauri://created', function () {
- * // window successfully created
- * });
- * appWindow.once('tauri://error', function (e) {
- * // an error happened creating the window
- * });
- *
- * // emit an event to the backend
- * await appWindow.emit("some event", "data");
- * // listen to an event from the backend
- * const unlisten = await appWindow.listen("event name", e => {});
- * unlisten();
- * ```
- *
- * @since 2.0.0
- */
- class Window {
- /** The window label. It is a unique identifier for the window, can be used to reference it later. */
- label: WindowLabel
- /** Local event listeners. */
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
- listeners: Record<string, Array<EventCallback<any>>>
- /**
- * Creates a new Window.
- * @example
- * ```typescript
- * import { Window } from '@tauri-apps/api/window';
- * const appWindow = new Window('my-label', {
- * url: 'https://github.com/tauri-apps/tauri'
- * });
- * appWindow.once('tauri://created', function () {
- * // window successfully created
- * });
- * appWindow.once('tauri://error', function (e) {
- * // an error happened creating the window
- * });
- * ```
- *
- * @param label The unique webview window label. Must be alphanumeric: `a-zA-Z-/:_`.
- * @returns The {@link Window} instance to communicate with the webview.
- *
- * @since 2.0.0
- */
- constructor(label: WindowLabel, options: WindowOptions = {}) {
- this.label = label
- // eslint-disable-next-line @typescript-eslint/no-unsafe-assignment
- this.listeners = Object.create(null)
- // @ts-expect-error `skip` is not a public API so it is not defined in WindowOptions
- if (!options?.skip) {
- invoke('plugin:window|create', {
- options: {
- ...options,
- label
- }
- })
- .then(async () => this.emit('tauri://created'))
- .catch(async (e: string) => this.emit('tauri://error', e))
- }
- }
- /**
- * Gets the Window for the webview associated with the given label.
- * @example
- * ```typescript
- * import { Window } from '@tauri-apps/api/window';
- * const mainWindow = Window.getByLabel('main');
- * ```
- *
- * @param label The webview window label.
- * @returns The Window instance to communicate with the webview or null if the webview doesn't exist.
- *
- * @since 2.0.0
- */
- static getByLabel(label: string): Window | null {
- if (getAll().some((w) => w.label === label)) {
- // @ts-expect-error `skip` is not defined in the public API but it is handled by the constructor
- return new Window(label, { skip: true })
- }
- return null
- }
- /**
- * Get an instance of `Window` for the current window.
- *
- * @since 2.0.0
- */
- static getCurrent(): Window {
- return getCurrent()
- }
- /**
- * Gets a list of instances of `Window` for all available windows.
- *
- * @since 2.0.0
- */
- static getAll(): Window[] {
- return getAll()
- }
- /**
- * Gets the focused window.
- * @example
- * ```typescript
- * import { Window } from '@tauri-apps/api/window';
- * const focusedWindow = Window.getFocusedWindow();
- * ```
- *
- * @returns The Window instance to communicate with the webview or `undefined` if there is not any focused window.
- *
- * @since 1.4
- */
- static async getFocusedWindow(): Promise<Window | null> {
- for (const w of getAll()) {
- if (await w.isFocused()) {
- return w
- }
- }
- return null
- }
- /**
- * Listen to an event emitted by the backend that is tied to the webview window.
- *
- * @example
- * ```typescript
- * import { getCurrent } from '@tauri-apps/api/window';
- * const unlisten = await getCurrent().listen<string>('state-changed', (event) => {
- * console.log(`Got error: ${payload}`);
- * });
- *
- * // you need to call unlisten if your handler goes out of scope e.g. the component is unmounted
- * unlisten();
- * ```
- *
- * @param event Event name. Must include only alphanumeric characters, `-`, `/`, `:` and `_`.
- * @param handler Event handler.
- * @returns A promise resolving to a function to unlisten to the event.
- * Note that removing the listener is required if your listener goes out of scope e.g. the component is unmounted.
- *
- * @since 2.0.0
- */
- async listen<T>(
- event: EventName,
- handler: EventCallback<T>
- ): Promise<UnlistenFn> {
- if (this._handleTauriEvent(event, handler)) {
- return Promise.resolve(() => {
- // eslint-disable-next-line @typescript-eslint/no-unsafe-member-access, security/detect-object-injection
- const listeners = this.listeners[event]
- listeners.splice(listeners.indexOf(handler), 1)
- })
- }
- return listen(event, handler, { target: this.label })
- }
- /**
- * Listen to an one-off event emitted by the backend that is tied to the webview window.
- *
- * @example
- * ```typescript
- * import { getCurrent } from '@tauri-apps/api/window';
- * const unlisten = await getCurrent().once<null>('initialized', (event) => {
- * console.log(`Window initialized!`);
- * });
- *
- * // you need to call unlisten if your handler goes out of scope e.g. the component is unmounted
- * unlisten();
- * ```
- *
- * @param event Event name. Must include only alphanumeric characters, `-`, `/`, `:` and `_`.
- * @param handler Event handler.
- * @returns A promise resolving to a function to unlisten to the event.
- * Note that removing the listener is required if your listener goes out of scope e.g. the component is unmounted.
- *
- * @since 2.0.0
- */
- async once<T>(event: string, handler: EventCallback<T>): Promise<UnlistenFn> {
- if (this._handleTauriEvent(event, handler)) {
- return Promise.resolve(() => {
- // eslint-disable-next-line security/detect-object-injection
- const listeners = this.listeners[event]
- listeners.splice(listeners.indexOf(handler), 1)
- })
- }
- return once(event, handler, { target: this.label })
- }
- /**
- * Emits an event to the backend, tied to the webview window.
- * @example
- * ```typescript
- * import { getCurrent } from '@tauri-apps/api/window';
- * await getCurrent().emit('window-loaded', { loggedIn: true, token: 'authToken' });
- * ```
- *
- * @param event Event name. Must include only alphanumeric characters, `-`, `/`, `:` and `_`.
- * @param payload Event payload.
- */
- async emit(event: string, payload?: unknown): Promise<void> {
- if (localTauriEvents.includes(event)) {
- // eslint-disable-next-line
- for (const handler of this.listeners[event] || []) {
- handler({ event, id: -1, windowLabel: this.label, payload })
- }
- return Promise.resolve()
- }
- return emit(event, payload, { target: this.label })
- }
- /** @ignore */
- _handleTauriEvent<T>(event: string, handler: EventCallback<T>): boolean {
- if (localTauriEvents.includes(event)) {
- if (!(event in this.listeners)) {
- // eslint-disable-next-line
- this.listeners[event] = [handler]
- } else {
- // eslint-disable-next-line
- this.listeners[event].push(handler)
- }
- return true
- }
- return false
- }
- // Getters
- /**
- * The scale factor that can be used to map physical pixels to logical pixels.
- * @example
- * ```typescript
- * import { getCurrent } from '@tauri-apps/api/window';
- * const factor = await getCurrent().scaleFactor();
- * ```
- *
- * @returns The window's monitor scale factor.
- *
- * @since 2.0.0
- * */
- async scaleFactor(): Promise<number> {
- return invoke('plugin:window|scale_factor', {
- label: this.label
- })
- }
- /**
- * The position of the top-left hand corner of the window's client area relative to the top-left hand corner of the desktop.
- * @example
- * ```typescript
- * import { getCurrent } from '@tauri-apps/api/window';
- * const position = await getCurrent().innerPosition();
- * ```
- *
- * @returns The window's inner position.
- *
- * @since 2.0.0
- * */
- async innerPosition(): Promise<PhysicalPosition> {
- return invoke<{ x: number; y: number }>('plugin:window|inner_position', {
- label: this.label
- }).then(({ x, y }) => new PhysicalPosition(x, y))
- }
- /**
- * The position of the top-left hand corner of the window relative to the top-left hand corner of the desktop.
- * @example
- * ```typescript
- * import { getCurrent } from '@tauri-apps/api/window';
- * const position = await getCurrent().outerPosition();
- * ```
- *
- * @returns The window's outer position.
- *
- * @since 2.0.0
- * */
- async outerPosition(): Promise<PhysicalPosition> {
- return invoke<{ x: number; y: number }>('plugin:window|outer_position', {
- label: this.label
- }).then(({ x, y }) => new PhysicalPosition(x, y))
- }
- /**
- * The physical size of the window's client area.
- * The client area is the content of the window, excluding the title bar and borders.
- * @example
- * ```typescript
- * import { getCurrent } from '@tauri-apps/api/window';
- * const size = await getCurrent().innerSize();
- * ```
- *
- * @returns The window's inner size.
- *
- * @since 2.0.0
- */
- async innerSize(): Promise<PhysicalSize> {
- return invoke<{ width: number; height: number }>(
- 'plugin:window|inner_size',
- {
- label: this.label
- }
- ).then(({ width, height }) => new PhysicalSize(width, height))
- }
- /**
- * The physical size of the entire window.
- * These dimensions include the title bar and borders. If you don't want that (and you usually don't), use inner_size instead.
- * @example
- * ```typescript
- * import { getCurrent } from '@tauri-apps/api/window';
- * const size = await getCurrent().outerSize();
- * ```
- *
- * @returns The window's outer size.
- *
- * @since 2.0.0
- */
- async outerSize(): Promise<PhysicalSize> {
- return invoke<{ width: number; height: number }>(
- 'plugin:window|outer_size',
- {
- label: this.label
- }
- ).then(({ width, height }) => new PhysicalSize(width, height))
- }
- /**
- * Gets the window's current fullscreen state.
- * @example
- * ```typescript
- * import { getCurrent } from '@tauri-apps/api/window';
- * const fullscreen = await getCurrent().isFullscreen();
- * ```
- *
- * @returns Whether the window is in fullscreen mode or not.
- *
- * @since 2.0.0
- * */
- async isFullscreen(): Promise<boolean> {
- return invoke('plugin:window|is_fullscreen', {
- label: this.label
- })
- }
- /**
- * Gets the window's current minimized state.
- * @example
- * ```typescript
- * import { getCurrent } from '@tauri-apps/api/window';
- * const minimized = await getCurrent().isMinimized();
- * ```
- *
- * @since 2.0.0
- * */
- async isMinimized(): Promise<boolean> {
- return invoke('plugin:window|is_minimized', {
- label: this.label
- })
- }
- /**
- * Gets the window's current maximized state.
- * @example
- * ```typescript
- * import { getCurrent } from '@tauri-apps/api/window';
- * const maximized = await getCurrent().isMaximized();
- * ```
- *
- * @returns Whether the window is maximized or not.
- *
- * @since 2.0.0
- * */
- async isMaximized(): Promise<boolean> {
- return invoke('plugin:window|is_maximized', {
- label: this.label
- })
- }
- /**
- * Gets the window's current focus state.
- * @example
- * ```typescript
- * import { getCurrent } from '@tauri-apps/api/window';
- * const focused = await getCurrent().isFocused();
- * ```
- *
- * @returns Whether the window is focused or not.
- *
- * @since 2.0.0
- * */
- async isFocused(): Promise<boolean> {
- return invoke('plugin:window|is_focused', {
- label: this.label
- })
- }
- /**
- * Gets the window's current decorated state.
- * @example
- * ```typescript
- * import { getCurrent } from '@tauri-apps/api/window';
- * const decorated = await getCurrent().isDecorated();
- * ```
- *
- * @returns Whether the window is decorated or not.
- *
- * @since 2.0.0
- * */
- async isDecorated(): Promise<boolean> {
- return invoke('plugin:window|is_decorated', {
- label: this.label
- })
- }
- /**
- * Gets the window's current resizable state.
- * @example
- * ```typescript
- * import { getCurrent } from '@tauri-apps/api/window';
- * const resizable = await getCurrent().isResizable();
- * ```
- *
- * @returns Whether the window is resizable or not.
- *
- * @since 2.0.0
- * */
- async isResizable(): Promise<boolean> {
- return invoke('plugin:window|is_resizable', {
- label: this.label
- })
- }
- /**
- * Gets the window’s native maximize button state.
- *
- * #### Platform-specific
- *
- * - **Linux / iOS / Android:** Unsupported.
- *
- * @example
- * ```typescript
- * import { getCurrent } from '@tauri-apps/api/window';
- * const maximizable = await getCurrent().isMaximizable();
- * ```
- *
- * @returns Whether the window's native maximize button is enabled or not.
- * */
- async isMaximizable(): Promise<boolean> {
- return invoke('plugin:window|is_maximizable', {
- label: this.label
- })
- }
- /**
- * Gets the window’s native minimize button state.
- *
- * #### Platform-specific
- *
- * - **Linux / iOS / Android:** Unsupported.
- *
- * @example
- * ```typescript
- * import { getCurrent } from '@tauri-apps/api/window';
- * const minimizable = await getCurrent().isMinimizable();
- * ```
- *
- * @returns Whether the window's native minimize button is enabled or not.
- * */
- async isMinimizable(): Promise<boolean> {
- return invoke('plugin:window|is_minimizable', {
- label: this.label
- })
- }
- /**
- * Gets the window’s native close button state.
- *
- * #### Platform-specific
- *
- * - **iOS / Android:** Unsupported.
- *
- * @example
- * ```typescript
- * import { getCurrent } from '@tauri-apps/api/window';
- * const closable = await getCurrent().isClosable();
- * ```
- *
- * @returns Whether the window's native close button is enabled or not.
- * */
- async isClosable(): Promise<boolean> {
- return invoke('plugin:window|is_closable', {
- label: this.label
- })
- }
- /**
- * Gets the window's current visible state.
- * @example
- * ```typescript
- * import { getCurrent } from '@tauri-apps/api/window';
- * const visible = await getCurrent().isVisible();
- * ```
- *
- * @returns Whether the window is visible or not.
- *
- * @since 2.0.0
- * */
- async isVisible(): Promise<boolean> {
- return invoke('plugin:window|is_visible', {
- label: this.label
- })
- }
- /**
- * Gets the window's current title.
- * @example
- * ```typescript
- * import { getCurrent } from '@tauri-apps/api/window';
- * const title = await getCurrent().title();
- * ```
- *
- * @since 2.0.0
- * */
- async title(): Promise<string> {
- return invoke('plugin:window|title', {
- label: this.label
- })
- }
- /**
- * Gets the window's current theme.
- *
- * #### Platform-specific
- *
- * - **macOS:** Theme was introduced on macOS 10.14. Returns `light` on macOS 10.13 and below.
- *
- * @example
- * ```typescript
- * import { getCurrent } from '@tauri-apps/api/window';
- * const theme = await getCurrent().theme();
- * ```
- *
- * @returns The window theme.
- *
- * @since 2.0.0
- * */
- async theme(): Promise<Theme | null> {
- return invoke('plugin:window|theme', {
- label: this.label
- })
- }
- // Setters
- /**
- * Centers the window.
- * @example
- * ```typescript
- * import { getCurrent } from '@tauri-apps/api/window';
- * await getCurrent().center();
- * ```
- *
- * @param resizable
- * @returns A promise indicating the success or failure of the operation.
- *
- * @since 2.0.0
- */
- async center(): Promise<void> {
- return invoke('plugin:window|center', {
- label: this.label
- })
- }
- /**
- * Requests user attention to the window, this has no effect if the application
- * is already focused. How requesting for user attention manifests is platform dependent,
- * see `UserAttentionType` for details.
- *
- * Providing `null` will unset the request for user attention. Unsetting the request for
- * user attention might not be done automatically by the WM when the window receives input.
- *
- * #### Platform-specific
- *
- * - **macOS:** `null` has no effect.
- * - **Linux:** Urgency levels have the same effect.
- * @example
- * ```typescript
- * import { getCurrent } from '@tauri-apps/api/window';
- * await getCurrent().requestUserAttention();
- * ```
- *
- * @param requestType
- * @returns A promise indicating the success or failure of the operation.
- *
- * @since 2.0.0
- */
- async requestUserAttention(
- requestType: UserAttentionType | null
- ): Promise<void> {
- let requestType_ = null
- if (requestType) {
- if (requestType === UserAttentionType.Critical) {
- requestType_ = { type: 'Critical' }
- } else {
- requestType_ = { type: 'Informational' }
- }
- }
- return invoke('plugin:window|request_user_attention', {
- label: this.label,
- value: requestType_
- })
- }
- /**
- * Updates the window resizable flag.
- * @example
- * ```typescript
- * import { getCurrent } from '@tauri-apps/api/window';
- * await getCurrent().setResizable(false);
- * ```
- *
- * @param resizable
- * @returns A promise indicating the success or failure of the operation.
- *
- * @since 2.0.0
- */
- async setResizable(resizable: boolean): Promise<void> {
- return invoke('plugin:window|set_resizable', {
- label: this.label,
- value: resizable
- })
- }
- /**
- * Sets whether the window's native maximize button is enabled or not.
- * If resizable is set to false, this setting is ignored.
- *
- * #### Platform-specific
- *
- * - **macOS:** Disables the "zoom" button in the window titlebar, which is also used to enter fullscreen mode.
- * - **Linux / iOS / Android:** Unsupported.
- *
- * @example
- * ```typescript
- * import { getCurrent } from '@tauri-apps/api/window';
- * await getCurrent().setMaximizable(false);
- * ```
- *
- * @param maximizable
- * @returns A promise indicating the success or failure of the operation.
- */
- async setMaximizable(maximizable: boolean): Promise<void> {
- return invoke('plugin:window|set_maximizable', {
- label: this.label,
- value: maximizable
- })
- }
- /**
- * Sets whether the window's native minimize button is enabled or not.
- *
- * #### Platform-specific
- *
- * - **Linux / iOS / Android:** Unsupported.
- *
- * @example
- * ```typescript
- * import { getCurrent } from '@tauri-apps/api/window';
- * await getCurrent().setMinimizable(false);
- * ```
- *
- * @param minimizable
- * @returns A promise indicating the success or failure of the operation.
- */
- async setMinimizable(minimizable: boolean): Promise<void> {
- return invoke('plugin:window|set_minimizable', {
- label: this.label,
- value: minimizable
- })
- }
- /**
- * Sets whether the window's native close button is enabled or not.
- *
- * #### Platform-specific
- *
- * - **Linux:** GTK+ will do its best to convince the window manager not to show a close button. Depending on the system, this function may not have any effect when called on a window that is already visible
- * - **iOS / Android:** Unsupported.
- *
- * @example
- * ```typescript
- * import { getCurrent } from '@tauri-apps/api/window';
- * await getCurrent().setClosable(false);
- * ```
- *
- * @param closable
- * @returns A promise indicating the success or failure of the operation.
- */
- async setClosable(closable: boolean): Promise<void> {
- return invoke('plugin:window|set_closable', {
- label: this.label,
- value: closable
- })
- }
- /**
- * Sets the window title.
- * @example
- * ```typescript
- * import { getCurrent } from '@tauri-apps/api/window';
- * await getCurrent().setTitle('Tauri');
- * ```
- *
- * @param title The new title
- * @returns A promise indicating the success or failure of the operation.
- *
- * @since 2.0.0
- */
- async setTitle(title: string): Promise<void> {
- return invoke('plugin:window|set_title', {
- label: this.label,
- value: title
- })
- }
- /**
- * Maximizes the window.
- * @example
- * ```typescript
- * import { getCurrent } from '@tauri-apps/api/window';
- * await getCurrent().maximize();
- * ```
- *
- * @returns A promise indicating the success or failure of the operation.
- *
- * @since 2.0.0
- */
- async maximize(): Promise<void> {
- return invoke('plugin:window|maximize', {
- label: this.label
- })
- }
- /**
- * Unmaximizes the window.
- * @example
- * ```typescript
- * import { getCurrent } from '@tauri-apps/api/window';
- * await getCurrent().unmaximize();
- * ```
- *
- * @returns A promise indicating the success or failure of the operation.
- *
- * @since 2.0.0
- */
- async unmaximize(): Promise<void> {
- return invoke('plugin:window|unmaximize', {
- label: this.label
- })
- }
- /**
- * Toggles the window maximized state.
- * @example
- * ```typescript
- * import { getCurrent } from '@tauri-apps/api/window';
- * await getCurrent().toggleMaximize();
- * ```
- *
- * @returns A promise indicating the success or failure of the operation.
- *
- * @since 2.0.0
- */
- async toggleMaximize(): Promise<void> {
- return invoke('plugin:window|toggle_maximize', {
- label: this.label
- })
- }
- /**
- * Minimizes the window.
- * @example
- * ```typescript
- * import { getCurrent } from '@tauri-apps/api/window';
- * await getCurrent().minimize();
- * ```
- *
- * @returns A promise indicating the success or failure of the operation.
- *
- * @since 2.0.0
- */
- async minimize(): Promise<void> {
- return invoke('plugin:window|minimize', {
- label: this.label
- })
- }
- /**
- * Unminimizes the window.
- * @example
- * ```typescript
- * import { getCurrent } from '@tauri-apps/api/window';
- * await getCurrent().unminimize();
- * ```
- *
- * @returns A promise indicating the success or failure of the operation.
- *
- * @since 2.0.0
- */
- async unminimize(): Promise<void> {
- return invoke('plugin:window|unminimize', {
- label: this.label
- })
- }
- /**
- * Sets the window visibility to true.
- * @example
- * ```typescript
- * import { getCurrent } from '@tauri-apps/api/window';
- * await getCurrent().show();
- * ```
- *
- * @returns A promise indicating the success or failure of the operation.
- *
- * @since 2.0.0
- */
- async show(): Promise<void> {
- return invoke('plugin:window|show', {
- label: this.label
- })
- }
- /**
- * Sets the window visibility to false.
- * @example
- * ```typescript
- * import { getCurrent } from '@tauri-apps/api/window';
- * await getCurrent().hide();
- * ```
- *
- * @returns A promise indicating the success or failure of the operation.
- *
- * @since 2.0.0
- */
- async hide(): Promise<void> {
- return invoke('plugin:window|hide', {
- label: this.label
- })
- }
- /**
- * Closes the window.
- * @example
- * ```typescript
- * import { getCurrent } from '@tauri-apps/api/window';
- * await getCurrent().close();
- * ```
- *
- * @returns A promise indicating the success or failure of the operation.
- *
- * @since 2.0.0
- */
- async close(): Promise<void> {
- return invoke('plugin:window|close', {
- label: this.label
- })
- }
- /**
- * Whether the window should have borders and bars.
- * @example
- * ```typescript
- * import { getCurrent } from '@tauri-apps/api/window';
- * await getCurrent().setDecorations(false);
- * ```
- *
- * @param decorations Whether the window should have borders and bars.
- * @returns A promise indicating the success or failure of the operation.
- *
- * @since 2.0.0
- */
- async setDecorations(decorations: boolean): Promise<void> {
- return invoke('plugin:window|set_decorations', {
- label: this.label,
- value: decorations
- })
- }
- /**
- * Whether or not the window should have shadow.
- *
- * #### Platform-specific
- *
- * - **Windows:**
- * - `false` has no effect on decorated window, shadows are always ON.
- * - `true` will make ndecorated window have a 1px white border,
- * and on Windows 11, it will have a rounded corners.
- * - **Linux:** Unsupported.
- *
- * @example
- * ```typescript
- * import { getCurrent } from '@tauri-apps/api/window';
- * await getCurrent().setShadow(false);
- * ```
- *
- * @returns A promise indicating the success or failure of the operation.
- *
- * @since 2.0.0
- */
- async setShadow(enable: boolean): Promise<void> {
- return invoke('plugin:window|set_shadow', {
- label: this.label,
- value: enable
- })
- }
- /**
- * Set window effects.
- *
- * @since 2.0
- */
- async setEffects(effects: Effects): Promise<void> {
- return invoke('plugin:window|set_effects', {
- label: this.label,
- value: effects
- })
- }
- /**
- * Clear any applied effects if possible.
- *
- * @since 2.0
- */
- async clearEffects(): Promise<void> {
- return invoke('plugin:window|set_effects', {
- label: this.label,
- value: null
- })
- }
- /**
- * Whether the window should always be on top of other windows.
- * @example
- * ```typescript
- * import { getCurrent } from '@tauri-apps/api/window';
- * await getCurrent().setAlwaysOnTop(true);
- * ```
- *
- * @param alwaysOnTop Whether the window should always be on top of other windows or not.
- * @returns A promise indicating the success or failure of the operation.
- *
- * @since 2.0.0
- */
- async setAlwaysOnTop(alwaysOnTop: boolean): Promise<void> {
- return invoke('plugin:window|set_always_on_top', {
- label: this.label,
- value: alwaysOnTop
- })
- }
- /**
- * Prevents the window contents from being captured by other apps.
- * @example
- * ```typescript
- * import { getCurrent } from '@tauri-apps/api/window';
- * await getCurrent().setContentProtected(true);
- * ```
- *
- * @returns A promise indicating the success or failure of the operation.
- *
- * @since 2.0.0
- */
- async setContentProtected(protected_: boolean): Promise<void> {
- return invoke('plugin:window|set_content_protected', {
- label: this.label,
- value: protected_
- })
- }
- /**
- * Resizes the window with a new inner size.
- * @example
- * ```typescript
- * import { getCurrent, LogicalSize } from '@tauri-apps/api/window';
- * await getCurrent().setSize(new LogicalSize(600, 500));
- * ```
- *
- * @param size The logical or physical inner size.
- * @returns A promise indicating the success or failure of the operation.
- *
- * @since 2.0.0
- */
- async setSize(size: LogicalSize | PhysicalSize): Promise<void> {
- if (!size || (size.type !== 'Logical' && size.type !== 'Physical')) {
- throw new Error(
- 'the `size` argument must be either a LogicalSize or a PhysicalSize instance'
- )
- }
- return invoke('plugin:window|set_size', {
- label: this.label,
- value: {
- type: size.type,
- data: {
- width: size.width,
- height: size.height
- }
- }
- })
- }
- /**
- * Sets the window minimum inner size. If the `size` argument is not provided, the constraint is unset.
- * @example
- * ```typescript
- * import { getCurrent, PhysicalSize } from '@tauri-apps/api/window';
- * await getCurrent().setMinSize(new PhysicalSize(600, 500));
- * ```
- *
- * @param size The logical or physical inner size, or `null` to unset the constraint.
- * @returns A promise indicating the success or failure of the operation.
- *
- * @since 2.0.0
- */
- async setMinSize(
- size: LogicalSize | PhysicalSize | null | undefined
- ): Promise<void> {
- if (size && size.type !== 'Logical' && size.type !== 'Physical') {
- throw new Error(
- 'the `size` argument must be either a LogicalSize or a PhysicalSize instance'
- )
- }
- return invoke('plugin:window|set_min_size', {
- label: this.label,
- value: size
- ? {
- type: size.type,
- data: {
- width: size.width,
- height: size.height
- }
- }
- : null
- })
- }
- /**
- * Sets the window maximum inner size. If the `size` argument is undefined, the constraint is unset.
- * @example
- * ```typescript
- * import { getCurrent, LogicalSize } from '@tauri-apps/api/window';
- * await getCurrent().setMaxSize(new LogicalSize(600, 500));
- * ```
- *
- * @param size The logical or physical inner size, or `null` to unset the constraint.
- * @returns A promise indicating the success or failure of the operation.
- *
- * @since 2.0.0
- */
- async setMaxSize(
- size: LogicalSize | PhysicalSize | null | undefined
- ): Promise<void> {
- if (size && size.type !== 'Logical' && size.type !== 'Physical') {
- throw new Error(
- 'the `size` argument must be either a LogicalSize or a PhysicalSize instance'
- )
- }
- return invoke('plugin:window|set_max_size', {
- label: this.label,
- value: size
- ? {
- type: size.type,
- data: {
- width: size.width,
- height: size.height
- }
- }
- : null
- })
- }
- /**
- * Sets the window outer position.
- * @example
- * ```typescript
- * import { getCurrent, LogicalPosition } from '@tauri-apps/api/window';
- * await getCurrent().setPosition(new LogicalPosition(600, 500));
- * ```
- *
- * @param position The new position, in logical or physical pixels.
- * @returns A promise indicating the success or failure of the operation.
- *
- * @since 2.0.0
- */
- async setPosition(
- position: LogicalPosition | PhysicalPosition
- ): Promise<void> {
- if (
- !position ||
- (position.type !== 'Logical' && position.type !== 'Physical')
- ) {
- throw new Error(
- 'the `position` argument must be either a LogicalPosition or a PhysicalPosition instance'
- )
- }
- return invoke('plugin:window|set_position', {
- label: this.label,
- value: {
- type: position.type,
- data: {
- x: position.x,
- y: position.y
- }
- }
- })
- }
- /**
- * Sets the window fullscreen state.
- * @example
- * ```typescript
- * import { getCurrent } from '@tauri-apps/api/window';
- * await getCurrent().setFullscreen(true);
- * ```
- *
- * @param fullscreen Whether the window should go to fullscreen or not.
- * @returns A promise indicating the success or failure of the operation.
- *
- * @since 2.0.0
- */
- async setFullscreen(fullscreen: boolean): Promise<void> {
- return invoke('plugin:window|set_fullscreen', {
- label: this.label,
- value: fullscreen
- })
- }
- /**
- * Bring the window to front and focus.
- * @example
- * ```typescript
- * import { getCurrent } from '@tauri-apps/api/window';
- * await getCurrent().setFocus();
- * ```
- *
- * @returns A promise indicating the success or failure of the operation.
- *
- * @since 2.0.0
- */
- async setFocus(): Promise<void> {
- return invoke('plugin:window|set_focus', {
- label: this.label
- })
- }
- /**
- * Sets the window icon.
- * @example
- * ```typescript
- * import { getCurrent } from '@tauri-apps/api/window';
- * await getCurrent().setIcon('/tauri/awesome.png');
- * ```
- *
- * Note that you need the `icon-ico` or `icon-png` Cargo features to use this API.
- * To enable it, change your Cargo.toml file:
- * ```toml
- * [dependencies]
- * tauri = { version = "...", features = ["...", "icon-png"] }
- * ```
- *
- * @param icon Icon bytes or path to the icon file.
- * @returns A promise indicating the success or failure of the operation.
- *
- * @since 2.0.0
- */
- async setIcon(icon: string | Uint8Array): Promise<void> {
- return invoke('plugin:window|set_icon', {
- label: this.label,
- value: typeof icon === 'string' ? icon : Array.from(icon)
- })
- }
- /**
- * Whether the window icon should be hidden from the taskbar or not.
- *
- * #### Platform-specific
- *
- * - **macOS:** Unsupported.
- * @example
- * ```typescript
- * import { getCurrent } from '@tauri-apps/api/window';
- * await getCurrent().setSkipTaskbar(true);
- * ```
- *
- * @param skip true to hide window icon, false to show it.
- * @returns A promise indicating the success or failure of the operation.
- *
- * @since 2.0.0
- */
- async setSkipTaskbar(skip: boolean): Promise<void> {
- return invoke('plugin:window|set_skip_taskbar', {
- label: this.label,
- value: skip
- })
- }
- /**
- * Grabs the cursor, preventing it from leaving the window.
- *
- * There's no guarantee that the cursor will be hidden. You should
- * hide it by yourself if you want so.
- *
- * #### Platform-specific
- *
- * - **Linux:** Unsupported.
- * - **macOS:** This locks the cursor in a fixed location, which looks visually awkward.
- * @example
- * ```typescript
- * import { getCurrent } from '@tauri-apps/api/window';
- * await getCurrent().setCursorGrab(true);
- * ```
- *
- * @param grab `true` to grab the cursor icon, `false` to release it.
- * @returns A promise indicating the success or failure of the operation.
- *
- * @since 2.0.0
- */
- async setCursorGrab(grab: boolean): Promise<void> {
- return invoke('plugin:window|set_cursor_grab', {
- label: this.label,
- value: grab
- })
- }
- /**
- * Modifies the cursor's visibility.
- *
- * #### Platform-specific
- *
- * - **Windows:** The cursor is only hidden within the confines of the window.
- * - **macOS:** The cursor is hidden as long as the window has input focus, even if the cursor is
- * outside of the window.
- * @example
- * ```typescript
- * import { getCurrent } from '@tauri-apps/api/window';
- * await getCurrent().setCursorVisible(false);
- * ```
- *
- * @param visible If `false`, this will hide the cursor. If `true`, this will show the cursor.
- * @returns A promise indicating the success or failure of the operation.
- *
- * @since 2.0.0
- */
- async setCursorVisible(visible: boolean): Promise<void> {
- return invoke('plugin:window|set_cursor_visible', {
- label: this.label,
- value: visible
- })
- }
- /**
- * Modifies the cursor icon of the window.
- * @example
- * ```typescript
- * import { getCurrent } from '@tauri-apps/api/window';
- * await getCurrent().setCursorIcon('help');
- * ```
- *
- * @param icon The new cursor icon.
- * @returns A promise indicating the success or failure of the operation.
- *
- * @since 2.0.0
- */
- async setCursorIcon(icon: CursorIcon): Promise<void> {
- return invoke('plugin:window|set_cursor_icon', {
- label: this.label,
- value: icon
- })
- }
- /**
- * Changes the position of the cursor in window coordinates.
- * @example
- * ```typescript
- * import { getCurrent, LogicalPosition } from '@tauri-apps/api/window';
- * await getCurrent().setCursorPosition(new LogicalPosition(600, 300));
- * ```
- *
- * @param position The new cursor position.
- * @returns A promise indicating the success or failure of the operation.
- *
- * @since 2.0.0
- */
- async setCursorPosition(
- position: LogicalPosition | PhysicalPosition
- ): Promise<void> {
- if (
- !position ||
- (position.type !== 'Logical' && position.type !== 'Physical')
- ) {
- throw new Error(
- 'the `position` argument must be either a LogicalPosition or a PhysicalPosition instance'
- )
- }
- return invoke('plugin:window|set_cursor_position', {
- label: this.label,
- value: {
- type: position.type,
- data: {
- x: position.x,
- y: position.y
- }
- }
- })
- }
- /**
- * Changes the cursor events behavior.
- *
- * @example
- * ```typescript
- * import { getCurrent } from '@tauri-apps/api/window';
- * await getCurrent().setIgnoreCursorEvents(true);
- * ```
- *
- * @param ignore `true` to ignore the cursor events; `false` to process them as usual.
- * @returns A promise indicating the success or failure of the operation.
- *
- * @since 2.0.0
- */
- async setIgnoreCursorEvents(ignore: boolean): Promise<void> {
- return invoke('plugin:window|set_ignore_cursor_events', {
- label: this.label,
- value: ignore
- })
- }
- /**
- * Starts dragging the window.
- * @example
- * ```typescript
- * import { getCurrent } from '@tauri-apps/api/window';
- * await getCurrent().startDragging();
- * ```
- *
- * @return A promise indicating the success or failure of the operation.
- *
- * @since 2.0.0
- */
- async startDragging(): Promise<void> {
- return invoke('plugin:window|start_dragging', {
- label: this.label
- })
- }
- // Listeners
- /**
- * Listen to window resize.
- *
- * @example
- * ```typescript
- * import { getCurrent } from "@tauri-apps/api/window";
- * const unlisten = await getCurrent().onResized(({ payload: size }) => {
- * console.log('Window resized', size);
- * });
- *
- * // you need to call unlisten if your handler goes out of scope e.g. the component is unmounted
- * unlisten();
- * ```
- *
- * @returns A promise resolving to a function to unlisten to the event.
- * Note that removing the listener is required if your listener goes out of scope e.g. the component is unmounted.
- *
- * @since 2.0.0
- */
- async onResized(handler: EventCallback<PhysicalSize>): Promise<UnlistenFn> {
- return this.listen<PhysicalSize>(TauriEvent.WINDOW_RESIZED, (e) => {
- e.payload = mapPhysicalSize(e.payload)
- handler(e)
- })
- }
- /**
- * Listen to window move.
- *
- * @example
- * ```typescript
- * import { getCurrent } from "@tauri-apps/api/window";
- * const unlisten = await getCurrent().onMoved(({ payload: position }) => {
- * console.log('Window moved', position);
- * });
- *
- * // you need to call unlisten if your handler goes out of scope e.g. the component is unmounted
- * unlisten();
- * ```
- *
- * @returns A promise resolving to a function to unlisten to the event.
- * Note that removing the listener is required if your listener goes out of scope e.g. the component is unmounted.
- *
- * @since 2.0.0
- */
- async onMoved(handler: EventCallback<PhysicalPosition>): Promise<UnlistenFn> {
- return this.listen<PhysicalPosition>(TauriEvent.WINDOW_MOVED, (e) => {
- e.payload = mapPhysicalPosition(e.payload)
- handler(e)
- })
- }
- /**
- * Listen to window close requested. Emitted when the user requests to closes the window.
- *
- * @example
- * ```typescript
- * import { getCurrent } from "@tauri-apps/api/window";
- * import { confirm } from '@tauri-apps/api/dialog';
- * const unlisten = await getCurrent().onCloseRequested(async (event) => {
- * const confirmed = await confirm('Are you sure?');
- * if (!confirmed) {
- * // user did not confirm closing the window; let's prevent it
- * event.preventDefault();
- * }
- * });
- *
- * // you need to call unlisten if your handler goes out of scope e.g. the component is unmounted
- * unlisten();
- * ```
- *
- * @returns A promise resolving to a function to unlisten to the event.
- * Note that removing the listener is required if your listener goes out of scope e.g. the component is unmounted.
- *
- * @since 2.0.0
- */
- /* eslint-disable @typescript-eslint/promise-function-async */
- async onCloseRequested(
- handler: (event: CloseRequestedEvent) => void | Promise<void>
- ): Promise<UnlistenFn> {
- return this.listen<null>(TauriEvent.WINDOW_CLOSE_REQUESTED, (event) => {
- const evt = new CloseRequestedEvent(event)
- void Promise.resolve(handler(evt)).then(() => {
- if (!evt.isPreventDefault()) {
- return this.close()
- }
- })
- })
- }
- /* eslint-enable */
- /**
- * Listen to window focus change.
- *
- * @example
- * ```typescript
- * import { getCurrent } from "@tauri-apps/api/window";
- * const unlisten = await getCurrent().onFocusChanged(({ payload: focused }) => {
- * console.log('Focus changed, window is focused? ' + focused);
- * });
- *
- * // you need to call unlisten if your handler goes out of scope e.g. the component is unmounted
- * unlisten();
- * ```
- *
- * @returns A promise resolving to a function to unlisten to the event.
- * Note that removing the listener is required if your listener goes out of scope e.g. the component is unmounted.
- *
- * @since 2.0.0
- */
- async onFocusChanged(handler: EventCallback<boolean>): Promise<UnlistenFn> {
- const unlistenFocus = await this.listen<PhysicalPosition>(
- TauriEvent.WINDOW_FOCUS,
- (event) => {
- handler({ ...event, payload: true })
- }
- )
- const unlistenBlur = await this.listen<PhysicalPosition>(
- TauriEvent.WINDOW_BLUR,
- (event) => {
- handler({ ...event, payload: false })
- }
- )
- return () => {
- unlistenFocus()
- unlistenBlur()
- }
- }
- /**
- * Listen to window scale change. Emitted when the window's scale factor has changed.
- * The following user actions can cause DPI changes:
- * - Changing the display's resolution.
- * - Changing the display's scale factor (e.g. in Control Panel on Windows).
- * - Moving the window to a display with a different scale factor.
- *
- * @example
- * ```typescript
- * import { getCurrent } from "@tauri-apps/api/window";
- * const unlisten = await getCurrent().onScaleChanged(({ payload }) => {
- * console.log('Scale changed', payload.scaleFactor, payload.size);
- * });
- *
- * // you need to call unlisten if your handler goes out of scope e.g. the component is unmounted
- * unlisten();
- * ```
- *
- * @returns A promise resolving to a function to unlisten to the event.
- * Note that removing the listener is required if your listener goes out of scope e.g. the component is unmounted.
- *
- * @since 2.0.0
- */
- async onScaleChanged(
- handler: EventCallback<ScaleFactorChanged>
- ): Promise<UnlistenFn> {
- return this.listen<ScaleFactorChanged>(
- TauriEvent.WINDOW_SCALE_FACTOR_CHANGED,
- handler
- )
- }
- /**
- * Listen to the window menu item click. The payload is the item id.
- *
- * @example
- * ```typescript
- * import { getCurrent } from "@tauri-apps/api/window";
- * const unlisten = await getCurrent().onMenuClicked(({ payload: menuId }) => {
- * console.log('Menu clicked: ' + menuId);
- * });
- *
- * // you need to call unlisten if your handler goes out of scope e.g. the component is unmounted
- * unlisten();
- * ```
- *
- * @returns A promise resolving to a function to unlisten to the event.
- * Note that removing the listener is required if your listener goes out of scope e.g. the component is unmounted.
- *
- * @since 2.0.0
- */
- async onMenuClicked(handler: EventCallback<string>): Promise<UnlistenFn> {
- return this.listen<string>(TauriEvent.MENU, handler)
- }
- /**
- * Listen to a file drop event.
- * The listener is triggered when the user hovers the selected files on the window,
- * drops the files or cancels the operation.
- *
- * @example
- * ```typescript
- * import { getCurrent } from "@tauri-apps/api/window";
- * const unlisten = await getCurrent().onFileDropEvent((event) => {
- * if (event.payload.type === 'hover') {
- * console.log('User hovering', event.payload.paths);
- * } else if (event.payload.type === 'drop') {
- * console.log('User dropped', event.payload.paths);
- * } else {
- * console.log('File drop cancelled');
- * }
- * });
- *
- * // you need to call unlisten if your handler goes out of scope e.g. the component is unmounted
- * unlisten();
- * ```
- *
- * @returns A promise resolving to a function to unlisten to the event.
- * Note that removing the listener is required if your listener goes out of scope e.g. the component is unmounted.
- *
- * @since 2.0.0
- */
- async onFileDropEvent(
- handler: EventCallback<FileDropEvent>
- ): Promise<UnlistenFn> {
- const unlistenFileDrop = await this.listen<string[]>(
- TauriEvent.WINDOW_FILE_DROP,
- (event) => {
- handler({ ...event, payload: { type: 'drop', paths: event.payload } })
- }
- )
- const unlistenFileHover = await this.listen<string[]>(
- TauriEvent.WINDOW_FILE_DROP_HOVER,
- (event) => {
- handler({ ...event, payload: { type: 'hover', paths: event.payload } })
- }
- )
- const unlistenCancel = await this.listen<null>(
- TauriEvent.WINDOW_FILE_DROP_CANCELLED,
- (event) => {
- handler({ ...event, payload: { type: 'cancel' } })
- }
- )
- return () => {
- unlistenFileDrop()
- unlistenFileHover()
- unlistenCancel()
- }
- }
- /**
- * Listen to the system theme change.
- *
- * @example
- * ```typescript
- * import { getCurrent } from "@tauri-apps/api/window";
- * const unlisten = await getCurrent().onThemeChanged(({ payload: theme }) => {
- * console.log('New theme: ' + theme);
- * });
- *
- * // you need to call unlisten if your handler goes out of scope e.g. the component is unmounted
- * unlisten();
- * ```
- *
- * @returns A promise resolving to a function to unlisten to the event.
- * Note that removing the listener is required if your listener goes out of scope e.g. the component is unmounted.
- *
- * @since 2.0.0
- */
- async onThemeChanged(handler: EventCallback<Theme>): Promise<UnlistenFn> {
- return this.listen<Theme>(TauriEvent.WINDOW_THEME_CHANGED, handler)
- }
- }
- /**
- * an array RGBA colors. Each value has minimum of 0 and maximum of 255.
- *
- * @since 2.0
- */
- type Color = [number, number, number, number]
- /**
- * Platform-specific window effects
- *
- * @since 2.0
- */
- enum Effect {
- /**
- * A default material appropriate for the view's effectiveAppearance. **macOS 10.14-**
- *
- * @deprecated since macOS 10.14. You should instead choose an appropriate semantic material.
- */
- AppearanceBased = 'appearanceBased',
- /**
- * **macOS 10.14-**
- *
- * @deprecated since macOS 10.14. Use a semantic material instead.
- */
- Light = 'light',
- /**
- * **macOS 10.14-**
- *
- * @deprecated since macOS 10.14. Use a semantic material instead.
- */
- Dark = 'dark',
- /**
- * **macOS 10.14-**
- *
- * @deprecated since macOS 10.14. Use a semantic material instead.
- */
- MediumLight = 'mediumLight',
- /**
- * **macOS 10.14-**
- *
- * @deprecated since macOS 10.14. Use a semantic material instead.
- */
- UltraDark = 'ultraDark',
- /**
- * **macOS 10.10+**
- */
- Titlebar = 'titlebar',
- /**
- * **macOS 10.10+**
- */
- Selection = 'selection',
- /**
- * **macOS 10.11+**
- */
- Menu = 'menu',
- /**
- * **macOS 10.11+**
- */
- Popover = 'popover',
- /**
- * **macOS 10.11+**
- */
- Sidebar = 'sidebar',
- /**
- * **macOS 10.14+**
- */
- HeaderView = 'headerView',
- /**
- * **macOS 10.14+**
- */
- Sheet = 'sheet',
- /**
- * **macOS 10.14+**
- */
- WindowBackground = 'windowBackground',
- /**
- * **macOS 10.14+**
- */
- HudWindow = 'hudWindow',
- /**
- * **macOS 10.14+**
- */
- FullScreenUI = 'fullScreenUI',
- /**
- * **macOS 10.14+**
- */
- Tooltip = 'tooltip',
- /**
- * **macOS 10.14+**
- */
- ContentBackground = 'contentBackground',
- /**
- * **macOS 10.14+**
- */
- UnderWindowBackground = 'underWindowBackground',
- /**
- * **macOS 10.14+**
- */
- UnderPageBackground = 'underPageBackground',
- /**
- * **Windows 11 Only**
- */
- Mica = 'mica',
- /**
- * **Windows 7/10/11(22H1) Only**
- *
- * ## Notes
- *
- * This effect has bad performance when resizing/dragging the window on Windows 11 build 22621.
- */
- Blur = 'blur',
- /**
- * **Windows 10/11**
- *
- * ## Notes
- *
- * This effect has bad performance when resizing/dragging the window on Windows 10 v1903+ and Windows 11 build 22000.
- */
- Acrylic = 'acrylic'
- }
- /**
- * Window effect state **macOS only**
- *
- * @see https://developer.apple.com/documentation/appkit/nsvisualeffectview/state
- *
- * @since 2.0
- */
- enum EffectState {
- /**
- * Make window effect state follow the window's active state **macOS only**
- */
- FollowsWindowActiveState = 'followsWindowActiveState',
- /**
- * Make window effect state always active **macOS only**
- */
- Active = 'active',
- /**
- * Make window effect state always inactive **macOS only**
- */
- Inactive = 'inactive'
- }
- /** The window effects configuration object
- *
- * @since 2.0
- */
- interface Effects {
- /**
- * List of Window effects to apply to the Window.
- * Conflicting effects will apply the first one and ignore the rest.
- */
- effects: Effect[]
- /**
- * Window effect state **macOS Only**
- */
- state?: EffectState
- /**
- * Window effect corner radius **macOS Only**
- */
- radius?: number
- /**
- * Window effect color. Affects {@link Effects.Blur} and {@link Effects.Acrylic} only
- * on Windows 10 v1903+. Doesn't have any effect on Windows 7 or Windows 11.
- */
- color?: Color
- }
- /**
- * Configuration for the window to create.
- *
- * @since 2.0.0
- */
- interface WindowOptions {
- /**
- * Remote URL or local file path to open.
- *
- * - URL such as `https://github.com/tauri-apps` is opened directly on a Tauri window.
- * - data: URL such as `data:text/html,<html>...` is only supported with the `window-data-url` Cargo feature for the `tauri` dependency.
- * - local file path or route such as `/path/to/page.html` or `/users` is appended to the application URL (the devServer URL on development, or `tauri://localhost/` and `https://tauri.localhost/` on production).
- */
- url?: string
- /** Show window in the center of the screen.. */
- center?: boolean
- /** The initial vertical position. Only applies if `y` is also set. */
- x?: number
- /** The initial horizontal position. Only applies if `x` is also set. */
- y?: number
- /** The initial width. */
- width?: number
- /** The initial height. */
- height?: number
- /** The minimum width. Only applies if `minHeight` is also set. */
- minWidth?: number
- /** The minimum height. Only applies if `minWidth` is also set. */
- minHeight?: number
- /** The maximum width. Only applies if `maxHeight` is also set. */
- maxWidth?: number
- /** The maximum height. Only applies if `maxWidth` is also set. */
- maxHeight?: number
- /** Whether the window is resizable or not. */
- resizable?: boolean
- /** Window title. */
- title?: string
- /** Whether the window is in fullscreen mode or not. */
- fullscreen?: boolean
- /** Whether the window will be initially focused or not. */
- focus?: boolean
- /**
- * Whether the window is transparent or not.
- * Note that on `macOS` this requires the `macos-private-api` feature flag, enabled under `tauri.conf.json > tauri > macOSPrivateApi`.
- * WARNING: Using private APIs on `macOS` prevents your application from being accepted to the `App Store`.
- */
- transparent?: boolean
- /** Whether the window should be maximized upon creation or not. */
- maximized?: boolean
- /** Whether the window should be immediately visible upon creation or not. */
- visible?: boolean
- /** Whether the window should have borders and bars or not. */
- decorations?: boolean
- /** Whether the window should always be on top of other windows or not. */
- alwaysOnTop?: boolean
- /** Prevents the window contents from being captured by other apps. */
- contentProtected?: boolean
- /** Whether or not the window icon should be added to the taskbar. */
- skipTaskbar?: boolean
- /**
- * Whether or not the window has shadow.
- *
- * #### Platform-specific
- *
- * - **Windows:**
- * - `false` has no effect on decorated window, shadows are always ON.
- * - `true` will make ndecorated window have a 1px white border,
- * and on Windows 11, it will have a rounded corners.
- * - **Linux:** Unsupported.
- *
- * @since 2.0.0
- */
- shadow?: boolean
- /**
- * Whether the file drop is enabled or not on the webview. By default it is enabled.
- *
- * Disabling it is required to use drag and drop on the frontend on Windows.
- */
- fileDropEnabled?: boolean
- /**
- * The initial window theme. Defaults to the system theme.
- *
- * Only implemented on Windows and macOS 10.14+.
- */
- theme?: Theme
- /**
- * The style of the macOS title bar.
- */
- titleBarStyle?: TitleBarStyle
- /**
- * If `true`, sets the window title to be hidden on macOS.
- */
- hiddenTitle?: boolean
- /**
- * Whether clicking an inactive window also clicks through to the webview on macOS.
- */
- acceptFirstMouse?: boolean
- /**
- * Defines the window [tabbing identifier](https://developer.apple.com/documentation/appkit/nswindow/1644704-tabbingidentifier) on macOS.
- *
- * Windows with the same tabbing identifier will be grouped together.
- * If the tabbing identifier is not set, automatic tabbing will be disabled.
- */
- tabbingIdentifier?: string
- /**
- * The user agent for the webview.
- */
- userAgent?: string
- /**
- * Whether or not the webview should be launched in incognito mode.
- *
- * #### Platform-specific
- *
- * - **Android:** Unsupported.
- */
- incognito?: boolean
- /**
- * Whether the window's native maximize button is enabled or not. Defaults to `true`.
- */
- maximizable?: boolean
- /**
- * Whether the window's native minimize button is enabled or not. Defaults to `true`.
- */
- minimizable?: boolean
- /**
- * Whether the window's native close button is enabled or not. Defaults to `true`.
- */
- closable?: boolean
- }
- function mapMonitor(m: Monitor | null): Monitor | null {
- return m === null
- ? null
- : {
- name: m.name,
- scaleFactor: m.scaleFactor,
- position: mapPhysicalPosition(m.position),
- size: mapPhysicalSize(m.size)
- }
- }
- function mapPhysicalPosition(m: PhysicalPosition): PhysicalPosition {
- return new PhysicalPosition(m.x, m.y)
- }
- function mapPhysicalSize(m: PhysicalSize): PhysicalSize {
- return new PhysicalSize(m.width, m.height)
- }
- /**
- * Returns the monitor on which the window currently resides.
- * Returns `null` if current monitor can't be detected.
- * @example
- * ```typescript
- * import { currentMonitor } from '@tauri-apps/api/window';
- * const monitor = currentMonitor();
- * ```
- *
- * @since 2.0.0
- */
- async function currentMonitor(): Promise<Monitor | null> {
- return invoke<Monitor | null>('plugin:window|current_monitor').then(
- mapMonitor
- )
- }
- /**
- * Returns the primary monitor of the system.
- * Returns `null` if it can't identify any monitor as a primary one.
- * @example
- * ```typescript
- * import { primaryMonitor } from '@tauri-apps/api/window';
- * const monitor = primaryMonitor();
- * ```
- *
- * @since 2.0.0
- */
- async function primaryMonitor(): Promise<Monitor | null> {
- return invoke<Monitor | null>('plugin:window|primary_monitor').then(
- mapMonitor
- )
- }
- /**
- * Returns the list of all the monitors available on the system.
- * @example
- * ```typescript
- * import { availableMonitors } from '@tauri-apps/api/window';
- * const monitors = availableMonitors();
- * ```
- *
- * @since 2.0.0
- */
- async function availableMonitors(): Promise<Monitor[]> {
- return invoke<Monitor[]>('plugin:window|available_monitors').then(
- (ms) => ms.map(mapMonitor) as Monitor[]
- )
- }
- export {
- Window,
- CloseRequestedEvent,
- getCurrent,
- getAll,
- LogicalSize,
- PhysicalSize,
- LogicalPosition,
- PhysicalPosition,
- UserAttentionType,
- Effect,
- EffectState,
- currentMonitor,
- primaryMonitor,
- availableMonitors
- }
- export type {
- Effects,
- Theme,
- TitleBarStyle,
- ScaleFactorChanged,
- FileDropEvent,
- WindowOptions,
- Color
- }
|