aboutsummaryrefslogtreecommitdiffstats
path: root/tagit/actions/misc.kv
blob: f9d51570e05aee4f95a63e1d22b60965000a7585 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#:import resource_find kivy.resources.resource_find

<Menu>:
    source: resource_find('atlas://misc/menu')
    tooltip: 'Open the menu'

<ShellDrop>:
    source: resource_find('atlas://misc/shell')
    tooltip: 'Open a terminal shell'

<OpenExternal>:
    source: resource_find('atlas://misc/open_external')
    tooltip: 'Open selected items in an external application'

<ShowConsole>:
    source: resource_find('atlas://misc/console')
    tooltip: 'Open the log console'

<ShowHelp>:
    source: resource_find('atlas://misc/help')
    tooltip: 'Open the help'

<ShowSettings>:
    source: resource_find('atlas://misc/settings')
    tooltip: 'Open the settings menu'

<ClipboardCopy>:
    source: resource_find('atlas://misc/clip_copy')
    tooltip: 'Copy selected items to the clipboard'

<ClipboardPaste>:
    source: resource_find('atlas://misc/clip_paste')
    tooltip: 'Import files from the clipboard'

## EOF ##