]> git.gir.st - VimFx.git/blob - extension/lib/button.coffee
Fix handling of tabs dragged to new/other windows
[VimFx.git] / extension / lib / button.coffee
1 ###
2 # Copyright Simon Lydell 2015.
3 #
4 # This file is part of VimFx.
5 #
6 # VimFx is free software: you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation, either version 3 of the License, or
9 # (at your option) any later version.
10 #
11 # VimFx is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License
17 # along with VimFx. If not, see <http://www.gnu.org/licenses/>.
18 ###
19
20 # This file creates VimFx’s toolbar button.
21
22 help = require('./help')
23 translate = require('./l10n')
24 utils = require('./utils')
25
26 cui = Cu.import('resource:///modules/CustomizableUI.jsm', {}).CustomizableUI
27
28 BUTTON_ID = 'VimFxButton'
29
30 injectButton = (vimfx) ->
31 cui.createWidget({
32 id: BUTTON_ID
33 defaultArea: cui.AREA_NAVBAR
34 label: 'VimFx'
35 tooltiptext: translate('button.tooltip.normal')
36 onCommand: (event) ->
37 button = event.originalTarget
38 window = button.ownerGlobal
39 mode = button.getAttribute('vimfx-mode')
40 if mode == 'normal'
41 help.injectHelp(window, vimfx)
42 else
43 return unless vim = vimfx.getCurrentVim(window)
44 vim.enterMode('normal')
45 onCreated: (node) ->
46 node.setAttribute('vimfx-mode', 'normal')
47
48 updateButton = (vimOrEvent) ->
49 window = vimOrEvent.window ? vimOrEvent.originalTarget.ownerGlobal
50 button = getButton(window)
51
52 # The 'modeChange' event provides the `vim` object that changed mode,
53 # but it might not be the current `vim` anymore, so always get the
54 # current instance.
55 return unless vim = vimfx.getCurrentVim(window)
56
57 button.setAttribute('vimfx-mode', vim.mode)
58 tooltip =
59 if vim.mode == 'normal'
60 translate('button.tooltip.normal')
61 else
62 translate('button.tooltip.other_mode',
63 translate("mode.#{ vim.mode }"), translate('mode.normal'))
64 button.setAttribute('tooltiptext', tooltip)
65
66 vimfx.on('modeChange', updateButton)
67 vimfx.on('TabSelect', updateButton)
68 })
69 module.onShutdown(cui.destroyWidget.bind(cui, BUTTON_ID))
70
71 getButton = (window) -> window.document.getElementById(BUTTON_ID)
72
73 module.exports = {
74 injectButton
75 getButton
76 }
Imprint / Impressum