point-per-window design started
[conkeror.git] / modules / window.js
blob74d12cde82273a83336d8ac23ccc97f50899a2bf
1 /**
2  * (C) Copyright 2007 John J. Foerch
3  * (C) Copyright 2007-2008 Jeremy Maitin-Shepard
4  *
5  * Use, modification, and distribution are subject to the terms specified in the
6  * COPYING file.
7 **/
9 require("mode.js");
11 var define_window_local_hook = simple_local_hook_definer();
12 var define_window_local_coroutine_hook = simple_local_coroutine_hook_definer();
15 define_hook("make_window_hook");
17 var window_watcher = Cc["@mozilla.org/embedcomp/window-watcher;1"]
18     .getService(Ci.nsIWindowWatcher);
20 function generate_new_window_tag (tag) {
21     var existing = [];
22     var exact_match = false;
23     var en = window_watcher.getWindowEnumerator();
24     if (tag == '')
25         tag = null;
26     var re;
27     if (tag)
28         re = new RegExp ("^" + tag + "<(\\d+)>$");
29     else
30         re = new RegExp ("^(\\d+)$");
31     while (en.hasMoreElements()) {
32         var w = en.getNext().QueryInterface(Ci.nsIDOMWindow);
33         if ('tag' in w)  {
34             if (tag && w.tag == tag) {
35                 exact_match = true;
36                 continue;
37             }
38             var re_result = re.exec(w.tag);
39             if (re_result)
40                 existing.push(re_result[1]);
41         }
42     }
43     if (tag && ! exact_match)
44         return tag;
46     existing.sort(function (a, b) { return a - b; });
48     var n = 1;
49     for (var i = 0; i < existing.length; i++) {
50         if (existing[i] < n) continue;
51         if (existing[i] == n) { n++; continue; }
52         break;
53     }
54     if (tag)
55         return tag + "<" + n + ">";
56     else
57         return n;
60 function make_chrome_window (chrome_uri, args) {
61     return window_watcher.openWindow(null, chrome_uri, "_blank",
62                                      "chrome,dialog=no,all,resizable", args);
65 var conkeror_chrome_uri = "chrome://conkeror-gui/content/conkeror.xul";
67 function make_window (initial_buffer_creator, tag) {
68     var args = { tag: tag,
69                  initial_buffer_creator: initial_buffer_creator };
70     var result = make_chrome_window(conkeror_chrome_uri, null);
71     result.args = args;
72     make_window_hook.run(result);
73     var close = result.close;
74     result.close = function () {
75         function attempt_close () {
76             var res = yield window_before_close_hook.run(result);
77             if (res) {
78                 window_close_hook.run(result);
79                 close.call(result);
80             }
81         }
82         co_call(attempt_close());
83     };
84     return result;
87 function get_window_by_tag (tag) {
88     var en = window_watcher.getWindowEnumerator();
89     while (en.hasMoreElements()) {
90         var w = en.getNext().QueryInterface(Ci.nsIDOMWindow);
91         if ('tag' in w && w.tag == tag)
92             return w;
93     }
94     return null;
97 /* FIXME: decide if this should include not-fully-initialized windows  */
98 function for_each_window (func) {
99     var en = window_watcher.getWindowEnumerator();
100     while (en.hasMoreElements()) {
101         var w = en.getNext().QueryInterface(Ci.nsIDOMWindow);
102         if ('conkeror' in w)
103             func(w);
104     }
107 function get_recent_conkeror_window () {
108     var wm = Cc['@mozilla.org/appshell/window-mediator;1']
109        .getService(Ci.nsIWindowMediator);
110     var window = wm.getMostRecentWindow("navigator:browser");
111     if (window && ("conkeror" in window))
112         return window;
113     var en = window_watcher.getWindowEnumerator();
114     while (en.hasMoreElements()) {
115         window = en.getNext().QueryInterface(Ci.nsIDOMWindow);
116         if ('conkeror' in window)
117             return window;
118     }
119     return null;
122 define_window_local_hook("window_initialize_early_hook");
123 define_window_local_hook("window_initialize_hook");
124 define_window_local_hook("window_initialize_late_hook");
126 var window_extra_argument_list = [];
128 define_variable("window_extra_argument_max_delay", 100);
130 function window_setup_args (window) {
131     if (window.args != null)
132         return;
134     var cur_time = Date.now();
135     var i;
136     var result = null;
137     for (i = 0; i < window_extra_argument_list.length; ++i) {
138         var a = window_extra_argument_list[i];
139         if (a.time > cur_time - window_extra_argument_max_delay) {
140             delete a.time;
141             result = a;
142             i++;
143             break;
144         }
145     }
146     window_extra_argument_list = window_extra_argument_list.slice(i);
148     if (result == null)
149         window.args = {};
150     else
151         window.args = result;
154 function window_set_extra_arguments (args) {
155     args.time = Date.now();
156     window_extra_argument_list.push(args);
159 function window_get_this_browser () {
160     return this.buffers.current.browser;
163 function window_initialize (window) {
164     window.conkeror = conkeror;
166     // Used by get_window_from_frame to get an unwrapped window reference
167     window.escape_wrapper = function (x) { x(window); };
169     window_setup_args(window);
171     // Set tag
172     var tag = null;
173     if ('tag' in window.args)
174         tag = window.args.tag;
175     window.tag = generate_new_window_tag(tag);
177     window.point = window.document.getElementById("point");
179     // Add a getBrowser() function to help certain extensions designed
180     // for Firefox work with conkeror
181     window.getBrowser = window_get_this_browser;
183     window_initialize_early_hook.run(window);
184     delete window.window_initialize_early_hook; // used only once
186     window_initialize_hook.run(window);
187     delete window.window_initialize_hook; // used only once
189     window.setTimeout(function () {
190             window_initialize_late_hook.run(window);
191             delete window.window_initialize_late_hook; // used only once
192             delete window.args; // get rid of args
193         }, 0);
195     window.addEventListener("close",
196                             function (event) {
197                                 event.preventDefault();
198                                 event.stopPropagation();
199                                 this.close();
200                             },
201                             true /* capture */);
204 define_window_local_coroutine_hook("window_before_close_hook",
205                                    RUN_HOOK_UNTIL_FAILURE);
206 define_window_local_hook("window_close_hook", RUN_HOOK);
209  * Window Modes
210  */
212 function define_global_window_mode (name, hook_name) {
213     keywords(arguments);
214     function install (window) {
215         if (name in window)
216             throw new Error(name + " already initialized for window");
217         window[name] = new conkeror[name](window);
218     }
219     function uninstall (window) {
220         if (!window[name])
221             throw new Error(name + " not initialized for window");
222         window[name].uninstall();
223         delete window[name];
224     }
225     define_global_mode(name + "_mode",
226                        function () { // enable
227                            add_hook(hook_name, install);
228                            for_each_window(install);
229                        },
230                        function () { // disable
231                            remove_hook(hook_name, install);
232                            for_each_window(uninstall);
233                        },
234                        forward_keywords(arguments));
236 ignore_function_for_get_caller_source_code_reference("define_global_window_mode");
241  * Window Title
242  */
245  * Default tile formatter.  The page url is ignored.  If there is a
246  * page_title, returns: "Page title - Conkeror".  Otherwise, it
247  * returns just: "Conkeror".
248  */
249 function default_title_formatter (window) {
250     var page_title = window.buffers.current.title;
252     if (page_title && page_title.length > 0)
253         return page_title + " - Conkeror";
254     else
255         return "Conkeror";
258 var title_format_fn = null;
260 function set_window_title (window) {
261     window.document.title = title_format_fn(window);
264 function init_window_title () {
265     title_format_fn = default_title_formatter;
267     add_hook("window_initialize_late_hook", set_window_title);
268     add_hook("current_content_buffer_location_change_hook",
269              function (buffer) {
270                  set_window_title(buffer.window);
271              });
272     add_hook("select_buffer_hook",
273              function (buffer) {
274                  set_window_title(buffer.window);
275              }, true);
276     add_hook("current_buffer_title_change_hook",
277              function (buffer) {
278                  set_window_title(buffer.window);
279              });
282 init_window_title();
285 function call_builtin_command (window, command, clear_mark) {
286     var m = window.minibuffer;
287     if (m.active && m._input_mode_enabled) {
288         m._restore_normal_state();
289         var e = m.input_element;
290         var c = e.controllers.getControllerForCommand(command);
291         try {
292             if (c && c.isCommandEnabled(command))
293                 c.doCommand(command);
294         } catch (e) {
295             // ignore errors
296         }
297         if (clear_mark)
298             m.current_state.mark_active = false;
299     } else {
300         function attempt_command (element) {
301             var c;
302             if (element.controllers
303                 && (c = element.controllers.getControllerForCommand(command)) != null
304                 && c.isCommandEnabled(command))
305             {
306                 try {
307                     c.doCommand(command);
308                 } catch (e) {
309                     // ignore errors
310                 }
311                 if (clear_mark)
312                     window.buffers.current.mark_active = false;
313                 return true;
314             }
315             return false;
316         }
317         var element = window.buffers.current.focused_element;
318         if (element && attempt_command(element, command))
319             return;
320         var win = window.buffers.current.focused_frame;
321         while (true) {
322             if (attempt_command(win, command))
323                 return;
324             if (!win.parent || win == win.parent)
325                 break;
326             win = win.parent;
327         }
328     }
333  * window_set_full_screen sets or toggles the fullScreen and hideChrome
334  * properties of the given window.  When fullscreen is a boolean, it sets
335  * it to that value.  When it is null or not given, it toggles the current
336  * value.
337  */
338 function window_set_full_screen (window, fullscreen) {
339     if (fullscreen === true || fullscreen === false) {
340         window.fullScreen = fullscreen;
341         window.hideChrome = fullscreen;
342     } else {
343         window.fullScreen = ! window.fullScreen;
344         window.hideChrome = window.fullScreen;
345     }
349 provide("window");