feat: add tooltip for right top widget of windows

This commit is contained in:
tiny-craft 2023-09-08 21:00:29 +08:00
parent 04a328159b
commit 4710871c97
3 changed files with 33 additions and 10 deletions

View File

@ -4,7 +4,7 @@ import WindowMax from '@/components/icons/WindowMax.vue'
import WindowClose from '@/components/icons/WindowClose.vue'
import { computed } from 'vue'
import { useThemeVars } from 'naive-ui'
import { Quit, WindowMinimise, WindowToggleMaximise } from 'wailsjs/runtime/runtime.js'
import { Quit, WindowIsMaximised, WindowMinimise, WindowToggleMaximise } from 'wailsjs/runtime/runtime.js'
const themeVars = useThemeVars()
const props = defineProps({
@ -33,15 +33,30 @@ const handleClose = () => {
<template>
<n-space :wrap-item="false" align="center" justify="center" :size="0">
<n-tooltip :show-arrow="false">
{{ $t('menu.minimise') }}
<template #trigger>
<div class="btn-wrapper" @click="handleMinimise">
<window-min />
</div>
</template>
</n-tooltip>
<n-tooltip :show-arrow="false">
{{ WindowIsMaximised() ? $t('menu.restore') : $t('menu.maximise') }}
<template #trigger>
<div class="btn-wrapper" @click="handleMaximise">
<window-max />
</div>
</template>
</n-tooltip>
<n-tooltip :show-arrow="false">
{{ $t('menu.close') }}
<template #trigger>
<div class="btn-wrapper" @click="handleClose">
<window-close />
</div>
</template>
</n-tooltip>
</n-space>
</template>

View File

@ -180,6 +180,10 @@
}
},
"menu": {
"minimise": "Minimise",
"maximise": "Maximise",
"restore": "Restore Down",
"close": "Close",
"preferences": "Preferences",
"help": "Help",
"check_update": "Check for Updates..."

View File

@ -181,6 +181,10 @@
}
},
"menu": {
"minimise": "最小化",
"maximise": "最大化",
"restore": "还原",
"close": "关闭",
"preferences": "偏好设置",
"help": "帮助",
"check_update": "检查更新..."