1
0
mirror of https://github.com/mifi/lossless-cut.git synced 2024-11-22 18:32:34 +01:00
lossless-cut/public/menu.js

277 lines
7.3 KiB
JavaScript
Raw Normal View History

2016-10-30 11:57:12 +01:00
const electron = require('electron'); // eslint-disable-line
const i18n = require('i18next');
2016-10-30 11:57:12 +01:00
2018-09-30 22:08:36 +02:00
const { Menu } = electron;
const { dialog } = electron;
2016-10-30 11:57:12 +01:00
const { homepage, releasesPage } = require('./constants');
2016-10-30 11:57:12 +01:00
2018-02-17 15:15:30 +01:00
module.exports = (app, mainWindow, newVersion) => {
const menu = [
...(process.platform === 'darwin' ? [{ role: 'appMenu' }] : []),
2016-10-30 11:57:12 +01:00
{
label: i18n.t('File'),
submenu: [
{
label: i18n.t('Open'),
accelerator: 'CmdOrCtrl+O',
async click() {
const { canceled, filePaths } = await dialog.showOpenDialog({ properties: ['openFile', 'multiSelections'] });
if (canceled) return;
mainWindow.webContents.send('file-opened', filePaths);
},
},
{
label: i18n.t('Close'),
accelerator: 'CmdOrCtrl+W',
async click() {
mainWindow.webContents.send('close-file');
},
},
{ type: 'separator' },
{
label: i18n.t('Load project (CSV)'),
click() {
2020-11-18 21:24:20 +01:00
mainWindow.webContents.send('importEdlFile', 'csv');
},
},
2020-12-11 16:15:35 +01:00
{
label: i18n.t('Save project (CSV)'),
2020-12-11 16:15:35 +01:00
click() {
mainWindow.webContents.send('exportEdlFile', 'csv');
2020-12-11 16:15:35 +01:00
},
},
2020-11-18 21:24:20 +01:00
{
label: i18n.t('Import project'),
2020-11-18 21:24:20 +01:00
submenu: [
{
label: i18n.t('EDL (MPlayer)'),
click() {
mainWindow.webContents.send('importEdlFile', 'mplayer');
},
},
{
label: i18n.t('Text chapters / YouTube'),
click() {
mainWindow.webContents.send('importEdlFile', 'youtube');
},
},
2020-11-18 21:24:20 +01:00
{
label: i18n.t('DaVinci Resolve / Final Cut Pro XML'),
2020-11-18 21:24:20 +01:00
click() {
mainWindow.webContents.send('importEdlFile', 'xmeml');
},
},
{
label: i18n.t('CUE sheet file'),
click() {
mainWindow.webContents.send('importEdlFile', 'cue');
},
},
{
label: i18n.t('PotPlayer Bookmarks (.pbf)'),
click() {
mainWindow.webContents.send('importEdlFile', 'pbf');
},
},
2020-11-18 21:24:20 +01:00
],
},
{
label: i18n.t('Export project'),
submenu: [
{
label: i18n.t('Timestamps (CSV)'),
click() {
2020-12-15 00:49:08 +01:00
mainWindow.webContents.send('exportEdlFile', 'csv-human');
},
},
{
label: i18n.t('Timestamps (TSV/TXT)'),
2020-12-15 00:49:08 +01:00
click() {
mainWindow.webContents.send('exportEdlFile', 'tsv-human');
},
},
{
label: i18n.t('Start times as YouTube Chapters'),
click() {
mainWindow.webContents.send('exportEdlYouTube');
},
},
],
},
{ type: 'separator' },
{
label: i18n.t('Convert to supported format'),
click() {
mainWindow.webContents.send('html5ify');
},
},
2020-11-22 23:53:04 +01:00
{
label: i18n.t('Fix incorrect duration'),
2020-11-22 23:53:04 +01:00
click() {
mainWindow.webContents.send('fixInvalidDuration');
},
},
{ type: 'separator' },
2020-12-11 16:15:35 +01:00
{ type: 'separator' },
{
label: i18n.t('Settings'),
accelerator: 'CmdOrCtrl+,',
click() {
mainWindow.webContents.send('openSettings');
},
},
{ type: 'separator' },
{
label: i18n.t('Exit'),
click() {
app.quit();
},
},
],
2020-02-20 11:41:01 +01:00
},
{
label: i18n.t('Edit'),
submenu: [
{ role: 'undo' },
{ role: 'redo' },
{ type: 'separator' },
{ role: 'cut' },
{ role: 'copy' },
{ role: 'paste' },
{ role: 'selectall' },
{ type: 'separator' },
{
label: i18n.t('Segments'),
submenu: [
2020-12-14 12:29:17 +01:00
{
label: i18n.t('Clear all segments'),
2020-12-14 12:29:17 +01:00
click() {
mainWindow.webContents.send('clearSegments');
},
},
{
label: i18n.t('Reorder segments by start time'),
click() {
mainWindow.webContents.send('reorderSegsByStartTime');
},
},
{
label: i18n.t('Create num segments'),
click() {
mainWindow.webContents.send('createNumSegments');
},
},
{
label: i18n.t('Create fixed duration segments'),
click() {
mainWindow.webContents.send('createFixedDurationSegments');
},
},
],
},
2020-12-11 16:15:35 +01:00
{
label: i18n.t('Tracks'),
2020-12-11 16:15:35 +01:00
submenu: [
{
label: i18n.t('Extract all tracks'),
2020-12-11 16:15:35 +01:00
click() {
mainWindow.webContents.send('extract-all-streams');
},
},
{
label: i18n.t('Edit tracks / metadata tags'),
2020-12-11 16:15:35 +01:00
click() {
mainWindow.webContents.send('showStreamsSelector');
},
},
],
},
],
2020-02-20 11:41:01 +01:00
},
{
label: i18n.t('View'),
submenu: [
{ role: 'togglefullscreen' },
],
},
2020-02-20 11:41:01 +01:00
2020-03-26 14:31:11 +01:00
// On Windows the windowMenu has a close Ctrl+W which clashes with File->Close shortcut
...(process.platform === 'darwin'
? [{ role: 'windowMenu' }]
: [{
label: i18n.t('Window'),
2020-03-26 14:31:11 +01:00
submenu: [{ role: 'minimize' }],
}]
),
2016-10-30 11:57:12 +01:00
{
label: i18n.t('Tools'),
submenu: [
{
label: i18n.t('Merge files'),
click() {
mainWindow.webContents.send('show-merge-dialog', true);
},
},
{
label: i18n.t('Batch convert to supported format'),
click() {
mainWindow.webContents.send('batchConvertFriendlyFormat');
},
},
{
label: i18n.t('Set custom start offset/timecode'),
click() {
mainWindow.webContents.send('set-start-offset', true);
},
},
{ role: 'toggleDevTools' },
],
},
{
role: 'help',
submenu: [
{
label: i18n.t('Help and shortcuts'),
click() {
mainWindow.webContents.send('openHelp');
},
},
{
label: i18n.t('About'),
click() {
mainWindow.webContents.send('openAbout');
},
},
{
label: i18n.t('Learn More'),
click() { electron.shell.openExternal(homepage); },
},
{
label: i18n.t('Report an error'),
click() { mainWindow.webContents.send('openSendReportDialog'); },
},
],
},
];
2016-10-30 11:57:12 +01:00
2018-02-17 15:15:30 +01:00
if (newVersion) {
menu.push({
label: i18n.t('New version!'),
2018-02-17 15:15:30 +01:00
submenu: [
{
label: i18n.t('Download {{version}}', { version: newVersion }),
2018-02-17 15:15:30 +01:00
click() { electron.shell.openExternal(releasesPage); },
},
],
});
}
2016-10-30 11:57:12 +01:00
Menu.setApplicationMenu(Menu.buildFromTemplate(menu));
};