]> git.evergreen-ils.org Git - Evergreen.git/blob - Evergreen/staff_client/chrome/content/evergreen/util/win.js
no unmodifiable cancel button
[Evergreen.git] / Evergreen / staff_client / chrome / content / evergreen / util / win.js
1 sdump('D_WIN','Loading win.js\n');
2
3 function s_alert(s) {
4         // alert() replacement, intended to stop barcode scanners from "scanning through" the dialog
5
6         // get a reference to the prompt service component.
7         var promptService = Components.classes["@mozilla.org/embedcomp/prompt-service;1"]
8                 .getService(Components.interfaces.nsIPromptService);
9
10         // set the buttons that will appear on the dialog. It should be
11         // a set of constants multiplied by button position constants. In this case,
12         // three buttons appear, Save, Cancel and a custom button.
13         //var flags=promptService.BUTTON_TITLE_OK * promptService.BUTTON_POS_0 +
14         //      promptService.BUTTON_TITLE_CANCEL * promptService.BUTTON_POS_1 +
15         //      promptService.BUTTON_TITLE_IS_STRING * promptService.BUTTON_POS_2;
16         var flags = promptService.BUTTON_TITLE_IS_STRING * promptService.BUTTON_POS_0;
17
18         // display the dialog box. The flags set above are passed
19         // as the fourth argument. The next three arguments are custom labels used for
20         // the buttons, which are used if BUTTON_TITLE_IS_STRING is assigned to a
21         // particular button. The last two arguments are for an optional check box.
22         var check = {};
23         sdump('D_WIN','s_alert: ' + s);
24         var rv = promptService.confirmEx(window,"ALERT",
25                 s,
26                 flags, 
27                 "Enter", null, null, 
28                 "Check this box to confirm this message", 
29                 check
30         );
31         if (!check.value) {
32                 snd_bad();
33                 return s_alert(s);
34         }
35         return rv;
36 }
37
38 function yns_alert(s,title,b1,b2,b3,c) {
39         // alert() replacement, intended to stop barcode scanners from "scanning through" the dialog
40
41         // get a reference to the prompt service component.
42         var promptService = Components.classes["@mozilla.org/embedcomp/prompt-service;1"]
43                 .getService(Components.interfaces.nsIPromptService);
44
45         // set the buttons that will appear on the dialog. It should be
46         // a set of constants multiplied by button position constants. In this case,
47         // three buttons appear, Save, Cancel and a custom button.
48         //var flags=promptService.BUTTON_TITLE_OK * promptService.BUTTON_POS_0 +
49         //      promptService.BUTTON_TITLE_CANCEL * promptService.BUTTON_POS_1 +
50         //      promptService.BUTTON_TITLE_IS_STRING * promptService.BUTTON_POS_2;
51         var flags = promptService.BUTTON_TITLE_IS_STRING * promptService.BUTTON_POS_0 +
52                 promptService.BUTTON_TITLE_CANCEL * promptService.BUTTON_POS_1; 
53
54         // display the dialog box. The flags set above are passed
55         // as the fourth argument. The next three arguments are custom labels used for
56         // the buttons, which are used if BUTTON_TITLE_IS_STRING is assigned to a
57         // particular button. The last two arguments are for an optional check box.
58         var check = {};
59         sdump('D_WIN','yns_alert: ' + s);
60         var rv = promptService.confirmEx(window,title, s, flags, b1, b2, b3, c, check);
61         if (c && !check.value) {
62                 snd_bad();
63                 return yns_alert(s,title,b1,b2,b3,c);
64         }
65         return rv;
66 }
67
68 function new_window(chrome,params) {
69         var name = self.name + '_' + ++mw.G['window_name_increment'];
70         var options = 'chrome,resizable=yes,scrollbars=yes,width=800,height=600,fullscreen=yes';
71         try {
72                 if (params) {
73                         if (params['window_name']) { name = params.window_name; }
74                         if (params['window_options']) { options = params.window_options; }
75                 }
76         } catch(E) {
77         }
78         //var w = window.open(
79         var w = SafeWindowOpen(
80                 chrome,
81                 name,
82                 options
83         );
84         if (w) {
85                 if (w != self) { 
86                         w.parentWindow = self;
87                         w.mw = mw;
88                         //register_window(w); 
89                 }
90                 w.am_i_a_top_level_tab = false;
91                 if (params) {
92                         w.params = params;
93                 }
94         }
95         return w;
96 }
97
98
99 // From: Bryan White on netscape.public.mozilla.xpfe, Oct 13, 2004
100 // Message-ID: <ckjh7a$18q1@ripley.netscape.com>
101 // Modified to return window handler, and do errors differently
102 function SafeWindowOpen(url,title,features)
103 {
104         var w;
105
106    netscape.security.PrivilegeManager
107      .enablePrivilege("UniversalXPConnect");    
108    const CI = Components.interfaces;
109    const PB =
110      Components.classes["@mozilla.org/preferences-service;1"]
111      .getService(CI.nsIPrefBranch);
112
113    var blocked = false;
114    try
115    {
116      // pref 'dom.disable_open_during_load' is the main popup
117      // blocker preference
118      blocked = PB.getBoolPref("dom.disable_open_during_load");
119      if(blocked)
120        PB.setBoolPref("dom.disable_open_during_load",false);
121      w = window.open(url,title,features);
122    }
123    catch(e)
124    {
125      //alert("SafeWindowOpen error:\n\n" + e);
126      handle_error(e);
127    }
128    if(blocked)
129      PB.setBoolPref("dom.disable_open_during_load",true);
130
131         return w;
132
133
134 function register_AppShell(w) {
135         sdump('D_WIN',arg_dump(arguments,{0:true}));
136         mw.G.appshell_list.push(w);
137 }
138
139 function unregister_AppShell(w) {
140         sdump('D_WIN',arg_dump(arguments,{0:true}));
141         mw.G.appshell_list = filter_list( mw.G.appshell_list, function(e){return(e!=w);} );
142 }
143
144 function register_window(w) {
145         sdump('D_WIN',arg_dump(arguments,{0:true}));
146         mw.G.win_list.push(w);
147         mw.G.last_win = w;
148         sdump('D_TRACE_EXIT',arg_dump(arguments));
149 }
150
151 function unregister_window(w) {
152         sdump('D_WIN',arg_dump(arguments,{0:true}));
153         mw.G.win_list = filter_list( mw.G.win_list, function(e){return(e!=w);} );
154         mw.G.last_win = mw.G.win_list[ mw.G.win_list.length - 1 ];
155         sdump('D_TRACE_EXIT',arg_dump(arguments));
156 }
157
158 function close_all_windows() {
159         sdump('D_WIN',arg_dump(arguments));
160         var w;
161         for (var i in mw.G.appshell_list) {
162                 sdump('D_WIN','\tconsidering ' + i + '...');
163                 if (mw.G.appshell_list[i] != mw) {
164                         sdump('D_WIN','closing');
165                         var w = mw.G.appshell_list[i];
166                         try { w.close(); } catch (E) {}
167                 }
168                 sdump('D_WIN','\n');
169         }
170         sdump('D_TRACE_EXIT',arg_dump(arguments));
171         mw.close();
172 }
173
174 function register_document(d) {
175         sdump('D_WIN',arg_dump(arguments,{0:true}));
176         mw.G.doc_list[d.toString()] = d;
177         mw.G.last_doc = d;
178 }
179
180 function unregister_document(d) {
181         sdump('D_WIN',arg_dump(arguments,{0:true}));
182         try { delete mw.G.doc_list[d.toString()]; } catch(E) { mw.G.doc_list[d.toString()] = false; }   
183 }
184
185