]> git.gir.st - VimFx.git/blob - extension/lib/button.coffee
Fix blacklisting on already loaded tabs
[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: ->
37 window = utils.getCurrentWindow()
38 button = getButton(window)
39 mode = button.getAttribute('vimfx-mode')
40 if mode == 'normal'
41 help.injectHelp(window, vimfx)
42 else
43 vimfx.getCurrentVim(window).enterMode('normal')
44 onCreated: (node) ->
45 node.setAttribute('vimfx-mode', 'normal')
46
47 updateButton = ->
48 window = utils.getCurrentWindow()
49 button = getButton(window)
50
51 # - The 'modeChange' event provides the `vim` object that changed mode,
52 # but it might not be the current `vim` anymore, so always get the
53 # current instance.
54 # - A 'TabSelect' event fires for the current tab when Firefox starts.
55 # By then a `vim` object for that tab might not have been constructed
56 # yet. If so, simply do nothing.
57 return unless vim = vimfx.getCurrentVim(window)
58
59 button.setAttribute('vimfx-mode', vim.mode)
60 tooltip =
61 if vim.mode == 'normal'
62 translate('button.tooltip.normal')
63 else
64 translate('button.tooltip.other_mode',
65 translate("mode.#{ vim.mode }"), translate('mode.normal'))
66 button.setAttribute('tooltiptext', tooltip)
67
68 vimfx.on('modeChange', updateButton)
69 vimfx.on('TabSelect', updateButton)
70 })
71 module.onShutdown(cui.destroyWidget.bind(cui, BUTTON_ID))
72
73 getButton = (window) -> window.document.getElementById(BUTTON_ID)
74
75 module.exports = {
76 injectButton
77 getButton
78 }
Imprint / Impressum