3 This file lists the events currently in use, when they are called, what they
4 do and what arguments they expect.
6 Events are a mechanism for communication between ELinks parts --- any ELinks
7 subsystem (module) can register an event, hook at an event or trigger an event.
8 Events are designed to allow transition to a completely message-passing model
9 internally, with modules talking to each other through the events.
11 Events are currently used primarily as a generic way to trigger event handlers
12 in various scripting backends.
14 Therefore, so far this reference sheet is useful mainly to scripting backends
15 developers and also scripting power users - it looks at the C side but usually
16 you get most (if not all) of it passed to the hook functions in your scripts.
20 Below is a template showing how to read the event information
23 Managed By: <what part of the code registers and unregister the event>
26 <short description of when the event is triggered>
30 <the order and type of the arguments>
34 <description of the arguments, what the event does etc.>
36 Please keep in alphabetical order!
40 The list of events itself:
42 -------------------------------------------------------------------------------
44 Managed By: The bookmarks subsystem
47 A bookmark is being deleted.
51 struct bookmark *bookmark
55 Currently only used by the tab snapshotting code to avoid a dangling pointer
56 should the deleted bookmark be the folder to which it made the last snapshot.
58 -------------------------------------------------------------------------------
60 Managed By: The bookmarks subsystem
63 A bookmark is being moved.
67 struct bookmark *bookmark
68 struct bookmark *destination
72 The bookmark is moved immediately after the destination bookmark.
74 This is currently only used by the tab snapshotting code, which assumes
75 that when a user moves a bookmark, the user does not want the snapshotting
76 code to delete it when it makes the next snapshot.
78 -------------------------------------------------------------------------------
80 Managed By: The bookmarks subsystem
83 The user finishes editing a bookmark.
87 struct bookmark *bookmark
88 unsigned char *new_title
89 unsigned char *new_url
93 This is triggered before the new title and URL are assigned to the bookmark.
94 Therefore, handlers can get the old title and URL from the bookmark structure
95 and the new title and URL from the event arguments.
97 This is currently only used by the tab snapshotting code, which assumes
98 that when a user edits a bookmark, the user does not want the snapshotting
99 code to delete it when it makes the next snapshot.
101 -------------------------------------------------------------------------------
102 Name: dialog-lua-console
103 Managed By: The Lua scripting subsystem/backend
106 The user hits a key associated with 'lua-console' action.
114 Open Lua console dialog.
116 -------------------------------------------------------------------------------
118 Managed By: The scripting subsystem/backends
121 Elinks is going to free its caches. This happens when the user chooses
122 ACT_MAIN_CACHE_MINIMIZE, but currently also on ACT_MAIN_FORGET_CREDENTIALS
123 and when ELinks is quitting.
131 If scripting backends hold pointers to cache entries, they should try
132 to release those pointers so that ELinks can free the entries. This
133 may involve a full garbage collection. Also, if backends have some
134 caches of their own, they should flush them.
136 -------------------------------------------------------------------------------
138 Managed By: The scripting subsystem/backends
141 The user decides to load some document by following a link, entering an URL
142 in the goto URL dialog, loading frames from a frameset (?) etc.
146 unsigned char **url, struct session *ses
150 If another URL than @url should be followed it is passed by setting @url.
151 If @url is changed the event propagation should be ended.
152 Valid values for @url includes:
153 - unchanged, if the original URL should be followed;
154 - a new, dynamically allocated URL to be followed instead; or
155 - NULL or an empty, dynamically allocated string if no URL should be followed.
157 -------------------------------------------------------------------------------
159 Managed By: The scripting subsystem/backends
170 Allow a subsystem to free its history lists.
172 -------------------------------------------------------------------------------
174 Managed By: The scripting subsystem/backends
177 Determining what proxy, if any, should be used to load a requested URL.
181 unsigned char **new_proxy_url, unsigned char *url
185 Possible values for @new_proxy_url includes:
186 - a dynamically allocated string with the format proxy:port;
187 - an empty string (dynamically allocated!) to use no proxy; or
188 - NULL to use the default proxies.
190 -------------------------------------------------------------------------------
192 Managed By: The scripting subsystem/backends
195 The user enters something into the goto URL dialog.
199 unsigned char **url, struct session *ses
203 If a URL other than @url should be followed, the old one should be freed
204 and the new one should be assigned to @url. @url must not be assigned
205 NULL and must remain freeable.
206 Valid values for @url are:
207 - unchanged, if the original URL should be followed;
208 - a new, dynamically allocated URL to be followed instead; or
209 - NULL or an empty, dynamically allocated string if no URL should be followed.
211 @ses is usually used for deciding based on the current URI or for reporting
212 potential errors during the hook processing through the UI. With @ses being
213 NULL the hook handler should assume no current URI and no suitable UI set up
214 (i.e., starting up yet or -dump).
216 -------------------------------------------------------------------------------
217 Name: periodic-saving
218 Managed By: No maintainer but used by lowlevel/timer.*
221 The interval timer configured through option goes off.
229 Makes it possible to periodically save files in ~/.elinks to disk.
231 -------------------------------------------------------------------------------
232 Name: pre-format-html
233 Managed By: The scripting subsystem/backends
236 A HTML document has been loaded - before the document rendering begins.
241 struct cache_entry *cached
245 Makes it possible to fix up bad HTML code, remove tags etc. The parameter
246 cached is guaranteed to have a single fragment. The HTML source is changed
247 by replacing this fragment:
249 add_fragment(cached, 0, new_string, new_len);
250 normalize_cache_entry(cached, new_len);
252 -------------------------------------------------------------------------------
254 Managed By: The scripting subsystem/backends
265 Allows a subsystem to do whatever clean-up is required when ELinks quits.
267 -------------------------------------------------------------------------------