Summary: Previously you could only copy the entire row. Now you can choose which cell to copy. Not the perfect UI admittedly, but that would require a big change to make individual cells selectable. I think it's a definite improvement. Reviewed By: passy Differential Revision: D15231784 fbshipit-source-id: 0d52192a5bf4e8ea1ebee74988c749d3f602fea9
86 lines
1.9 KiB
JavaScript
86 lines
1.9 KiB
JavaScript
/**
|
|
* Copyright 2018-present Facebook.
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
* @format
|
|
*/
|
|
|
|
type Electron$BrowserWindow = any;
|
|
type Electron$NativeImage = any;
|
|
|
|
type Electron$MenuRoles =
|
|
| 'undo'
|
|
| 'redo'
|
|
| 'cut'
|
|
| 'copy'
|
|
| 'paste'
|
|
| 'pasteandmatchstyle'
|
|
| 'selectall'
|
|
| 'delete'
|
|
| 'minimize'
|
|
| 'close'
|
|
| 'quit'
|
|
| 'togglefullscreen' // macOS-only
|
|
| 'about'
|
|
| 'hide'
|
|
| 'hideothers'
|
|
| 'unhide'
|
|
| 'front'
|
|
| 'zoom'
|
|
| 'window'
|
|
| 'help'
|
|
| 'services';
|
|
|
|
type Electron$MenuType =
|
|
| 'normal'
|
|
| 'separator'
|
|
| 'submenu'
|
|
| 'checkbox'
|
|
| 'radio';
|
|
|
|
type Electron$MenuItemOptions = {
|
|
click?: (
|
|
menuItem: Electron$MenuItem,
|
|
browserWindow: Object,
|
|
event: Object,
|
|
) => mixed,
|
|
role?: Electron$MenuRoles,
|
|
type?: Electron$MenuType,
|
|
label?: string,
|
|
sublabel?: string,
|
|
accelerator?: string,
|
|
icon?: Object,
|
|
enabled?: boolean,
|
|
visible?: boolean,
|
|
checked?: boolean,
|
|
submenu?: Electron$Menu | Array<Electron$MenuItemOptions>,
|
|
id?: string,
|
|
position?: string,
|
|
};
|
|
|
|
declare class Electron$MenuItem {
|
|
constructor(options: Electron$MenuItemOptions): Electron$MenuItem;
|
|
enabled: boolean;
|
|
visible: boolean;
|
|
checked: boolean;
|
|
}
|
|
|
|
declare class Electron$Menu {
|
|
static setApplicationMenu: (menu: Electron$Menu) => void;
|
|
static getApplicationMenu: () => ?Electron$Menu;
|
|
static sendActionToFirstResponder: (action: string) => void;
|
|
static buildFromTemplate: (
|
|
templates: Array<Electron$MenuItemOptions>,
|
|
) => Electron$Menu;
|
|
popup: (
|
|
browserWindow: Object,
|
|
x?: number,
|
|
y?: number,
|
|
positioningItem?: number,
|
|
) => void;
|
|
popup: (x?: number, y?: number, positioningItem?: number) => void;
|
|
append: (menuItem: Electron$MenuItem) => void;
|
|
insert: (pos: number, menuItem: Electron$MenuItem) => void;
|
|
items: Array<Electron$MenuItem>;
|
|
}
|