73 lines
2.0 KiB
JavaScript
73 lines
2.0 KiB
JavaScript
const names = {
|
|
mainWindow: {
|
|
focus: 'focus',
|
|
close: 'close',
|
|
min: 'min',
|
|
max: 'max',
|
|
set_app_name: 'set_app_name',
|
|
clear_cache: 'clear_cache',
|
|
get_cache_size: 'get_cache_size',
|
|
get_env_params: 'get_env_params',
|
|
|
|
set_music_meta: 'set_music_meta',
|
|
progress: 'progress',
|
|
change_tray: 'change_tray',
|
|
quit_update: 'quit_update',
|
|
update_available: 'update_available',
|
|
update_error: 'update_error',
|
|
update_progress: 'update_progress',
|
|
update_downloaded: 'update_downloaded',
|
|
update_not_available: 'update_not_available',
|
|
set_ignore_mouse_events: 'set_ignore_mouse_events',
|
|
set_app_setting: 'set_app_setting',
|
|
set_window_size: 'set_window_size',
|
|
show_save_dialog: 'show_save_dialog',
|
|
|
|
handle_request: 'handle_request',
|
|
cancel_request: 'cancel_request',
|
|
|
|
handle_xm_verify_open: 'handle_xm_verify_open',
|
|
handle_xm_verify_close: 'handle_xm_verify_close',
|
|
select_dir: 'select_dir',
|
|
|
|
restart_window: 'restart_window',
|
|
|
|
handle_kw_decode_lyric: 'handle_kw_decode_lyric',
|
|
get_lyric_info: 'get_lyric_info',
|
|
set_lyric_info: 'set_lyric_info',
|
|
set_config: 'set_config',
|
|
set_hot_key_config: 'set_hot_key_config',
|
|
key_down: 'key_down',
|
|
quit: 'quit',
|
|
min_toggle: 'min_toggle',
|
|
hide_toggle: 'hide_toggle',
|
|
get_data_path: 'get_data_path',
|
|
show_dialog: 'show_dialog',
|
|
},
|
|
winLyric: {
|
|
close: 'close',
|
|
set_lyric_info: 'set_lyric_info',
|
|
get_lyric_info: 'get_lyric_info',
|
|
set_lyric_config: 'set_lyric_config',
|
|
get_lyric_config: 'get_lyric_config',
|
|
set_win_bounds: 'set_win_bounds',
|
|
key_down: 'key_down',
|
|
},
|
|
hotKey: {
|
|
enable: 'enable',
|
|
status: 'status',
|
|
set_config: 'set_config',
|
|
},
|
|
}
|
|
|
|
for (const item of Object.keys(names)) {
|
|
let name = names[item]
|
|
for (const key of Object.keys(name)) {
|
|
name[key] = `${item}_${name[key]}`
|
|
}
|
|
}
|
|
|
|
exports.mainWindow = names.mainWindow
|
|
exports.winLyric = names.winLyric
|
|
exports.hotKey = names.hotKey
|