mirror of
https://github.com/tauri-apps/tauri.git
synced 2026-04-11 10:43:31 +02:00
83 lines
2.4 KiB
TypeScript
83 lines
2.4 KiB
TypeScript
// Copyright 2019-2024 Tauri Programme within The Commons Conservancy
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
import { MenuItemBase, newMenu } from './base'
|
|
import { invoke } from '../core'
|
|
import { type MenuItemOptions } from '../menu'
|
|
|
|
/** Options for creating a new check menu item. */
|
|
export interface CheckMenuItemOptions extends MenuItemOptions {
|
|
/** Whether the new check menu item is enabled or not. */
|
|
checked?: boolean
|
|
}
|
|
|
|
/**
|
|
* A check menu item inside a {@linkcode Menu} or {@linkcode Submenu}
|
|
* and usually contains a text and a check mark or a similar toggle
|
|
* that corresponds to a checked and unchecked states.
|
|
*/
|
|
export class CheckMenuItem extends MenuItemBase {
|
|
/** @ignore */
|
|
protected constructor(rid: number, id: string) {
|
|
super(rid, id, 'Check')
|
|
}
|
|
|
|
/** Create a new check menu item. */
|
|
static async new(opts: CheckMenuItemOptions): Promise<CheckMenuItem> {
|
|
return newMenu('Check', opts).then(
|
|
([rid, id]) => new CheckMenuItem(rid, id)
|
|
)
|
|
}
|
|
|
|
/** Returns the text of this check menu item. */
|
|
async text(): Promise<string> {
|
|
return invoke('plugin:menu|text', { rid: this.rid, kind: this.kind })
|
|
}
|
|
|
|
/** Sets the text for this check menu item. */
|
|
async setText(text: string): Promise<void> {
|
|
return invoke('plugin:menu|set_text', {
|
|
rid: this.rid,
|
|
kind: this.kind,
|
|
text
|
|
})
|
|
}
|
|
|
|
/** Returns whether this check menu item is enabled or not. */
|
|
async isEnabled(): Promise<boolean> {
|
|
return invoke('plugin:menu|is_enabled', { rid: this.rid, kind: this.kind })
|
|
}
|
|
|
|
/** Sets whether this check menu item is enabled or not. */
|
|
async setEnabled(enabled: boolean): Promise<void> {
|
|
return invoke('plugin:menu|set_enabled', {
|
|
rid: this.rid,
|
|
kind: this.kind,
|
|
enabled
|
|
})
|
|
}
|
|
|
|
/** Sets the accelerator for this check menu item. */
|
|
async setAccelerator(accelerator: string | null): Promise<void> {
|
|
return invoke('plugin:menu|set_accelerator', {
|
|
rid: this.rid,
|
|
kind: this.kind,
|
|
accelerator
|
|
})
|
|
}
|
|
|
|
/** Returns whether this check menu item is checked or not. */
|
|
async isChecked(): Promise<boolean> {
|
|
return invoke('plugin:menu|is_checked', { rid: this.rid })
|
|
}
|
|
|
|
/** Sets whether this check menu item is checked or not. */
|
|
async setChecked(checked: boolean): Promise<void> {
|
|
return invoke('plugin:menu|set_checked', {
|
|
rid: this.rid,
|
|
checked
|
|
})
|
|
}
|
|
}
|