-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathscinterm.luadoc
89 lines (78 loc) · 4.48 KB
/
scinterm.luadoc
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
-- Copyright 2012-2025 Mitchell. See LICENSE.
-- This is a DUMMY FILE used for making LuaDoc for the Scinterm API.
--- A curses platform for [Scintilla][] that supports curses platforms like [ncurses][].
--
-- [Scintilla]: https://scintilla.org
-- [ncurses]: https://invisible-island.net/ncurses/
-- @module Scinterm
--- Creates a new Scintilla curses window.
-- @param callback SCNotification callback function of the form: `void callback(Scintilla *,
-- int, void *, void *)`.
-- @param userdata (`void *`) Userdata to pass to *callback*.
-- @return `Scintilla *`
-- @function scintilla_new
--- Returns the curses `WINDOW` associated with the given Scintilla window.
-- @param sci The Scintilla window returned by `scintilla_new()`.
-- @return curses `WINDOW`.
-- @function scintilla_get_window
--- Sends the given message with parameters to the given Scintilla window.
-- @param sci The Scintilla window returned by `scintilla_new()`.
-- @param iMessage (`int`) The Scintilla message ID.
-- @param wParam (`uptr_t`) The first parameter.
-- @param lParam (`sptr_t`) The second parameter.
-- @return `sptr_t`
-- @function scintilla_send_message
--- Sends the specified key to the given Scintilla window for processing.
-- If it is not consumed, an SCNotification will be emitted.
-- @param sci The Scintilla window returned by `scintilla_new()`.
-- @param key (`int`) The keycode of the key, or, if Scintilla's code page is UTF-8, the UTF-8
-- code point of the key.
-- @param modifiers (`int`) Bit-mask of `SCMOD_*` modifier keys.
-- @return `void`
-- @function scintilla_send_key
--- Sends the specified mouse event to the given Scintilla window for processing.
-- @param sci The Scintilla window returned by `scintilla_new()`.
-- @param event (`int`) The mouse event (`SCM_CLICK`, `SCM_DRAG`, or `SCM_RELEASE`).
-- @param button (`int`) The button number pressed, or `0` if none.
-- @param modifiers (`int`) Bit-mask of `SCMOD_*` modifier keys.
-- @param y (`int`) The absolute y coordinate of the mouse event.
-- @param x (`int`) The absolute x coordinate of the mouse event.
-- @return `bool` whether or not Scintilla handled the mouse event.
-- @function scintilla_send_mouse
--- Returns a null-terminated copy of the text on Scintilla's internal clipboard (not the primary
-- and/or secondary X selections) and stores its length in *len*.
-- The caller is responsible for `free`ing the returned text.
-- Keep in mind clipboard text may contain null bytes.
-- @param sci The Scintilla window returned by `scintilla_new()`.
-- @param len (`int *`) The length of the returned text.
-- @return `char *` clipboard text (caller is responsible for `free`ing it)
-- @function scintilla_get_clipboard
--- Refreshes the Scintilla window on the virtual screen.
-- This should be done along with the normal curses `noutrefresh()`.
-- Note: the terminal cursor may be hidden if Scintilla thinks this window has focus
-- (e.g. `SCI_SETFOCUS`) and Scintilla's caret is out of view. If another non-Scintilla window
-- has the real focus, call `curs_set(1)` in order to show the terminal cursor for that window.
-- @param sci The Scintilla window returned by `scintilla_new()`.
-- @function scintilla_noutrefresh
--- Refreshes the Scintilla window on the physical screen.
-- This should be done along with the normal curses `refresh()`.
-- Note: the terminal cursor may be hidden if Scintilla thinks this window has focus
-- (e.g. `SCI_SETFOCUS`) and Scintilla's caret is out of view. If another non-Scintilla window
-- has the real focus, call `curs_set(1)` in order to show the terminal cursor for that window.
-- @param sci The Scintilla window returned by `scintilla_new()`.
-- @return `void`
-- @function scintilla_refresh
--- Updates the curses window cursor for the Scintilla window so the terminal draws the cursor
-- in the correct position.
-- This only needs to be called when `scintilla_refresh()` or `scintilla_noutrefresh()` is not
-- the last curses draw command issued (for any window, not just the Scintilla window).
-- Note: the terminal cursor may be hidden if Scintilla thinks this window has focus
-- (e.g. `SCI_SETFOCUS`) and Scintilla's caret is out of view. If another non-Scintilla window
-- has the real focus, call `curs_set(1)` in order to show the terminal cursor for that window.
-- @param sci The Scintilla window returned by `scintilla_new()`.
-- @return `void`
-- @function scintilla_update_cursor
--- Deletes the given Scintilla window.
-- @param sci The Scintilla window returned by `scintilla_new()`.
-- @return `void`
-- @function scintilla_delete