-- Copyright 2007-2010 Mitchell mitchellcaladbolg.net. See LICENSE. local L = _G.locale.localize --- -- Textadept's core event structure and handlers. module('events', package.seeall) -- Markdown: -- ## Overview -- -- Textadept is very event-driven. Most of its functionality comes through event -- handlers. Events occur when you create a new buffer, press a key, click on a -- menu, etc. You can even make an event occur with Lua code. Instead of having -- a single event handler however, each event can have a set of handlers. These -- handlers are simply Lua functions that are called in the order they were -- added to an event. This enables dynamically loaded modules to add their own -- handlers to events. -- -- Events themselves are nothing special. They do not have to be declared in -- order to be used. They are simply strings containing an arbitrary event name. -- When an event of this name occurs, either generated by Textadept or you, all -- event handlers assigned to it are run. -- -- Events can be given any number of arguments. These arguments will be passed -- to the event's handler functions. If a handler returns either true or false -- explicitly, all subsequent handlers are not called. This is useful if you -- want to stop the propagation of an event like a keypress. -- -- ## Textadept Events -- -- The following is a list of all Scintilla events generated by Textadept in -- `event_name(arguments)` format: -- -- * **char\_added** (ch)
-- Called when an ordinary text character is added to the buffer. -- - ch: the ASCII representation of the character. -- * **save\_point\_reached** ()
-- Called when a save point is entered. -- * **save\_point\_left** ()
-- Called when a save point is left. -- * **double\_click** (position, line)
-- Called when the mouse button is double-clicked. -- - position: the text position the click occured at. -- - line: the line number the click occured at. -- * **update\_ui** ()
-- Called when the text or styling of the buffer has changed or the selection -- range has changed. -- * **margin\_click** (margin, modifiers, position)
-- Called when the mouse is clicked inside a margin. -- - margin: the margin number that was clicked. -- - modifiers: the appropriate combination of `SCI_SHIFT`, `SCI_CTRL`, -- and `SCI_ALT` to indicate the keys that were held down at the time of -- the margin click. -- - position: The position of the start of the line in the buffer that -- corresponds to the margin click. -- * **user\_list\_selection** (wParam, text)
-- Called when the user has selected an item in a user list. -- - wParam: the list_type parameter from -- [`buffer:user_list_show()`][buffer_user_list_show]. -- - text: the text of the selection. -- * **uri\_dropped** (text)
-- Called when the user has dragged a URI such as a file name or web address -- into Textadept. -- - text: URI text. -- * **call\_tip\_click** (position)
-- Called when the user clicks on a calltip. -- - position: 1 if the click is in an up arrow, 2 if in a down arrow, and -- 0 if elsewhere. -- * **auto\_c\_selection** (lParam, text)
-- Called when the user has selected an item in an autocompletion list. -- - lParam: the start position of the word being completed. -- - text: the text of the selection. -- -- [buffer_user_list_show]: ../modules/buffer.html#buffer:user_list_show -- -- The following is a list of gui events generated in -- `event_name(arguments)` format: -- -- * **buffer\_new** ()
-- Called when a new [buffer][buffer] is created. -- * **buffer\_deleted** ()
-- Called when a [buffer][buffer] has been deleted. -- * **buffer\_before\_switch** ()
-- Called right before another [buffer][buffer] is switched to. -- * **buffer\_after\_switch** ()
-- Called right after a [buffer][buffer] was switched to. -- * **view\_new** ()
-- Called when a new [view][view] is created. -- * **view\_before\_switch** ()
-- Called right before another [view][view] is switched to. -- * **view\_after\_switch** ()
-- Called right after [view][view] was switched to. -- * **reset\_before** ()
-- Called before resetting the Lua state during a call to [`reset()`][reset]. -- * **reset\_after** ()
-- Called after resetting the Lua state during a call to [`reset()`][reset]. -- * **quit** ()
-- Called when quitting Textadept.
-- Note: Any quit handlers added must be inserted at index 1 because the -- default quit handler in `core/events.lua` returns `true`, which ignores all -- subsequent handlers. -- * **error** (text)
-- Called when an error occurs in the C code. -- - text: The error text. -- * **appleevent\_odoc** (uri)
-- Called when Mac OSX instructs Textadept to open a document. -- - uri: The URI to open. -- -- [buffer]: ../modules/buffer.html -- [view]: ../modules/view.html -- [reset]: ../modules/_G.html#reset -- -- ## Example -- -- The following Lua code generates and handles a custom `my_event` event: -- -- function my_event_handler(message) -- gui.print(message) -- end -- -- events.connect('my_event', my_event_handler) -- events.emit('my_event', 'my message') --- -- Adds a handler function to an event. -- @param event The string event name. It is arbitrary and need not be defined -- anywhere. -- @param f The Lua function to add. -- @param index Optional index to insert the handler into. -- @return Index of handler. -- @see disconnect function connect(event, f, index) local plural = event..'s' if not _M[plural] then _M[plural] = {} end local handlers = _M[plural] if index then table.insert(handlers, index, f) else handlers[#handlers + 1] = f end return index or #handlers end --- -- Disconnects a handler function from an event. -- @param event The string event name. -- @param index Index of the handler (returned by events.connect). -- @see connect function disconnect(event, index) local plural = event..'s' if not events[plural] then return end local handlers = events[plural] table.remove(handlers, index) end local error_emitted = false --- -- Calls all handlers for the given event in sequence (effectively "generating" -- the event). -- If true or false is explicitly returned by any handler, the event is not -- propagated any further; iteration ceases. -- @param event The string event name. -- @param ... Arguments passed to the handler. -- @return true or false if any handler explicitly returned such; nil otherwise. function emit(event, ...) local plural = event..'s' local handlers = _M[plural] if not handlers then return end for _, f in ipairs(handlers) do local ok, result = pcall(f, unpack{...}) if not ok then if not error_emitted then error_emitted = true emit('error', result) error_emitted = false else io.stderr:write(result) end end if type(result) == 'boolean' then return result end end end local connect = connect local emit = emit --- Map of Scintilla notifications to their handlers. local c = _SCINTILLA.constants local scnnotifications = { [c.SCN_CHARADDED] = { 'char_added', 'ch' }, [c.SCN_SAVEPOINTREACHED] = { 'save_point_reached' }, [c.SCN_SAVEPOINTLEFT] = { 'save_point_left' }, [c.SCN_DOUBLECLICK] = { 'double_click', 'position', 'line' }, [c.SCN_UPDATEUI] = { 'update_ui' }, [c.SCN_MARGINCLICK] = { 'margin_click', 'margin', 'modifiers', 'position' }, [c.SCN_USERLISTSELECTION] = { 'user_list_selection', 'wParam', 'text' }, [c.SCN_URIDROPPED] = { 'uri_dropped', 'text' }, [c.SCN_CALLTIPCLICK] = { 'call_tip_click', 'position' }, [c.SCN_AUTOCSELECTION] = { 'auto_c_selection', 'lParam', 'text' } } --- -- Handles Scintilla notifications. -- @param n The Scintilla notification structure as a Lua table. -- @return true or false if any handler explicitly returned such; nil otherwise. function notification(n) local f = scnnotifications[n.code] if f then local args = { unpack(f, 2) } for k, v in ipairs(args) do args[k] = n[v] end return emit(f[1], unpack(args)) end end -- Default handlers to follow. connect('view_new', function() -- sets default properties for a Scintilla window local buffer = buffer local c = _SCINTILLA.constants -- Allow redefinitions of these Scintilla key commands. local ctrl_keys = { '[', ']', '/', '\\', 'Z', 'Y', 'X', 'C', 'V', 'A', 'L', 'T', 'D', 'U' } local ctrl_shift_keys = { 'L', 'T', 'U' } for _, key in ipairs(ctrl_keys) do buffer:clear_cmd_key(string.byte(key), c.SCMOD_CTRL) end for _, key in ipairs(ctrl_shift_keys) do buffer:clear_cmd_key(string.byte(key), c.SCMOD_CTRL + c.SCMOD_SHIFT) end if _THEME and #_THEME > 0 then local ok, err = pcall(dofile, _THEME..'/view.lua') if ok then return end io.stderr:write(err) end end) local SETDIRECTFUNCTION = _SCINTILLA.properties.direct_function[1] local SETDIRECTPOINTER = _SCINTILLA.properties.doc_pointer[2] local SETLEXERLANGUAGE = _SCINTILLA.functions.set_lexer_language[1] connect('buffer_new', function() -- sets default properties for a Scintilla document local function run() local buffer = buffer -- Lexer. buffer:set_lexer_language('lpeg') buffer:private_lexer_call(SETDIRECTFUNCTION, buffer.direct_function) buffer:private_lexer_call(SETDIRECTPOINTER, buffer.direct_pointer) buffer:private_lexer_call(SETLEXERLANGUAGE, 'container') buffer.style_bits = 8 -- Properties. buffer.property['textadept.home'] = _HOME buffer.property['lexer.lpeg.home'] = _LEXERPATH buffer.property['lexer.lpeg.script'] = _HOME..'/lexers/lexer.lua' if _THEME and #_THEME > 0 then buffer.property['lexer.lpeg.color.theme'] = _THEME..'/lexer.lua' end -- Buffer. buffer.code_page = _SCINTILLA.constants.SC_CP_UTF8 if _THEME and #_THEME > 0 then local ok, err = pcall(dofile, _THEME..'/buffer.lua') if ok then return end io.stderr:write(err) end end -- Normally when an error occurs, a new buffer is created with the error -- message, but if an error occurs here, this event would be called again -- and again, erroring each time resulting in an infinite loop; print error -- to stderr instead. local ok, err = pcall(run) if not ok then io.stderr:write(err) end end) -- Sets the title of the Textadept window to the buffer's filename. -- @param buffer The currently focused buffer. local function set_title(buffer) local buffer = buffer local filename = buffer.filename or buffer._type or L('Untitled') local dirty = buffer.dirty and '*' or '-' gui.title = string.format('%s %s Textadept (%s)', filename:match('[^/\\]+$'), dirty, filename) end connect('save_point_reached', function() -- changes Textadept title to show 'clean' buffer buffer.dirty = false set_title(buffer) end) connect('save_point_left', function() -- changes Textadept title to show 'dirty' buffer buffer.dirty = true set_title(buffer) end) connect('uri_dropped', function(utf8_uris) -- open uri(s) for utf8_uri in utf8_uris:gmatch('[^\r\n]+') do if utf8_uri:find('^file://') then utf8_uri = utf8_uri:match('^file://([^\r\n]+)') utf8_uri = utf8_uri:gsub('%%(%x%x)', function(hex) return string.char(tonumber(hex, 16)) end) if WIN32 then utf8_uri = utf8_uri:sub(2, -1) end -- ignore leading '/' local uri = utf8_uri:iconv(_CHARSET, 'UTF-8') if lfs.attributes(uri).mode ~= 'directory' then io.open_file(utf8_uri) end end end end) local string_format = string.format local EOLs = { L('CRLF'), L('CR'), L('LF') } local GETLEXERLANGUAGE = _SCINTILLA.functions.get_lexer_language[1] connect('update_ui', function() -- sets docstatusbar text local buffer = buffer local pos = buffer.current_pos local line, max = buffer:line_from_position(pos) + 1, buffer.line_count local col = buffer.column[pos] + 1 local lexer = buffer:private_lexer_call(GETLEXERLANGUAGE) local eol = EOLs[buffer.eol_mode + 1] local tabs = string_format('%s %d', buffer.use_tabs and L('Tabs:') or L('Spaces:'), buffer.indent) local enc = buffer.encoding or '' gui.docstatusbar_text = string_format('%s %d/%d %s %d %s %s %s %s', L('Line:'), line, max, L('Col:'), col, lexer, eol, tabs, enc) end) connect('margin_click', function(margin, modifiers, position) -- toggles folding buffer:toggle_fold(buffer:line_from_position(position)) end) connect('buffer_new', function() set_title(buffer) end) connect('buffer_before_switch', function() -- save buffer properties local buffer = buffer -- Save view state. buffer._anchor = buffer.anchor buffer._current_pos = buffer.current_pos buffer._first_visible_line = buffer.first_visible_line -- Save fold state. buffer._folds = {} local folds = buffer._folds local i = buffer:contracted_fold_next(0) while i >= 0 do folds[#folds + 1] = i i = buffer:contracted_fold_next(i + 1) end end) connect('buffer_after_switch', function() -- restore buffer properties local buffer = buffer if not buffer._folds then return end -- Restore fold state. for _, i in ipairs(buffer._folds) do buffer:toggle_fold(i) end -- Restore view state. buffer:set_sel(buffer._anchor, buffer._current_pos) buffer:line_scroll(0, buffer:visible_from_doc_line(buffer._first_visible_line) - buffer.first_visible_line) end) connect('buffer_after_switch', function() -- updates titlebar and statusbar set_title(buffer) emit('update_ui') end) connect('view_after_switch', function() -- updates titlebar and statusbar set_title(buffer) emit('update_ui') end) connect('reset_after', function() gui.statusbar_text = 'Lua reset' end) connect('quit', function() -- prompts for confirmation if any buffers are dirty local list = {} for _, buffer in ipairs(_BUFFERS) do if buffer.dirty then list[#list + 1] = buffer.filename or buffer._type or L('Untitled') end end if #list > 0 and gui.dialog('msgbox', '--title', L('Quit without saving?'), '--text', L('The following buffers are unsaved:'), '--informative-text', string.format('%s', table.concat(list, '\n')), '--button1', 'gtk-cancel', '--button2', L('Quit _without saving'), '--no-newline') ~= '2' then return false end return true end) if OSX then connect('appleevent_odoc', function(uri) return emit('uri_dropped', 'file://'..uri) end) connect('buffer_new', function() -- GTK-OSX has clipboard problems buffer.paste = function() local clipboard_text = gui.clipboard_text if #clipboard_text > 0 then buffer:replace_sel(clipboard_text) end end end) end connect('error', function(...) gui._print(L('[Error Buffer]'), ...) end)