]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/xul/staff_client/chrome/content/evergreen/main/window.js
dec70b6bff1fb4114ad6ed36d72fd4dc74977a20
[Evergreen.git] / Open-ILS / xul / staff_client / chrome / content / evergreen / main / window.js
1 dump('entering main/window.js\n');
2
3 if (typeof main == 'undefined') main = {};
4 main.window = function (mw,G) {
5         this.main_window = mw;
6         return this;
7 };
8
9 main.window.prototype = {
10         
11         // pointer to the auth window
12         'main_window' : null,   
13
14         // list of open window references, used for debugging in shell
15         'win_list' : [],        
16
17         // list of Top Level menu interface window references
18         'appshell_list' : [],   
19
20         // list of documents for debugging.  BROKEN
21         'doc_list' : [],        
22
23         // Windows need unique names.  This number helps.
24         'window_name_increment' : 0, 
25
26         // This number gets put into the title bar for Top Level menu interface windows
27         'appshell_name_increment' : 0
28
29 }
30
31 dump('exiting main/window.js\n');