Left: | ||
Right: |
OLD | NEW |
---|---|
1 /* | 1 /* |
2 * This file is part of Adblock Plus <http://adblockplus.org/>, | 2 * This file is part of Adblock Plus <http://adblockplus.org/>, |
3 * Copyright (C) 2006-2013 Eyeo GmbH | 3 * Copyright (C) 2006-2013 Eyeo GmbH |
4 * | 4 * |
5 * Adblock Plus is free software: you can redistribute it and/or modify | 5 * Adblock Plus is free software: you can redistribute it and/or modify |
6 * it under the terms of the GNU General Public License version 3 as | 6 * it under the terms of the GNU General Public License version 3 as |
7 * published by the Free Software Foundation. | 7 * published by the Free Software Foundation. |
8 * | 8 * |
9 * Adblock Plus is distributed in the hope that it will be useful, | 9 * Adblock Plus is distributed in the hope that it will be useful, |
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
74 } | 74 } |
75 }; | 75 }; |
76 | 76 |
77 | 77 |
78 /* Tabs */ | 78 /* Tabs */ |
79 | 79 |
80 Tab = function(tab) | 80 Tab = function(tab) |
81 { | 81 { |
82 this._tab = tab; | 82 this._tab = tab; |
83 | 83 |
84 this.browserAction = new TabBrowserAction(this); | |
85 | |
84 this.onLoading = new LoadingTabEventTarget(tab); | 86 this.onLoading = new LoadingTabEventTarget(tab); |
85 this.onBeforeNavigate = new TabEventTarget(tab, "beforeNavigate", false); | 87 this.onBeforeNavigate = new TabEventTarget(tab, "beforeNavigate", false); |
86 this.onCompleted = new TabEventTarget(tab, "navigate", false); | 88 this.onCompleted = new TabEventTarget(tab, "navigate", false); |
87 this.onActivated = new TabEventTarget(tab, "activate", false); | 89 this.onActivated = new TabEventTarget(tab, "activate", false); |
88 this.onRemoved = new TabEventTarget(tab, "close", false); | 90 this.onRemoved = new TabEventTarget(tab, "close", false); |
89 }; | 91 }; |
90 Tab.prototype = { | 92 Tab.prototype = { |
91 get url() | 93 get url() |
92 { | 94 { |
93 return this._tab.url; | 95 return this._tab.url; |
94 }, | 96 }, |
95 close: function() | 97 close: function() |
96 { | 98 { |
97 this._tab.close(); | 99 this._tab.close(); |
98 }, | 100 }, |
99 activate: function() | 101 activate: function() |
100 { | 102 { |
101 this._tab.activate(); | 103 this._tab.activate(); |
102 }, | 104 }, |
103 sendMessage: function(message, responseCallback) | 105 sendMessage: function(message, responseCallback) |
104 { | 106 { |
105 _sendMessage( | 107 _sendMessage( |
106 message, responseCallback, | 108 message, responseCallback, |
107 this._tab.page, this._tab | 109 this._tab.page, this._tab |
108 ); | 110 ); |
109 }, | |
110 browserAction: { | |
111 setIcon: function(path) | |
112 { | |
113 safari.extension.toolbarItems[0].image = safari.extension.baseURI + path ; | |
114 }, | |
115 setTitle: function(title) | |
116 { | |
117 safari.extension.toolbarItems[0].toolTip = title; | |
118 }, | |
119 setBadge: function(badge) | |
120 { | |
121 if (!badge) | |
122 safari.extension.toolbarItems[0].badge = 0; | |
123 else if ("number" in badge) | |
124 safari.extension.toolbarItems[0].badge = badge.number; | |
125 } | |
126 } | 111 } |
127 }; | 112 }; |
128 | 113 |
129 TabMap = function(deleteTabOnBeforeNavigate) | 114 TabMap = function(deleteTabOnBeforeNavigate) |
130 { | 115 { |
131 this._tabs = []; | 116 this._tabs = []; |
132 this._values = []; | 117 this._values = []; |
133 | 118 |
134 this._deleteOnEvent = this._deleteOnEvent.bind(this); | 119 this._deleteOnEvent = this._deleteOnEvent.bind(this); |
135 this._deleteTabOnBeforeNavigate = deleteTabOnBeforeNavigate; | 120 this._deleteTabOnBeforeNavigate = deleteTabOnBeforeNavigate; |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
186 { | 171 { |
187 // delay so that other event handlers can still lookup this tab | 172 // delay so that other event handlers can still lookup this tab |
188 setTimeout(this._delete.bind(this, event.target), 0); | 173 setTimeout(this._delete.bind(this, event.target), 0); |
189 } | 174 } |
190 }; | 175 }; |
191 TabMap.prototype["delete"] = function(tab) | 176 TabMap.prototype["delete"] = function(tab) |
192 { | 177 { |
193 this._delete(tab._tab); | 178 this._delete(tab._tab); |
194 }; | 179 }; |
195 | 180 |
181 ext.tabs = { | |
182 onLoading: new LoadingTabEventTarget(safari.application), | |
183 onBeforeNavigate: new TabEventTarget(safari.application, "beforeNavigate", t rue), | |
184 onCompleted: new TabEventTarget(safari.application, "navigate", true), | |
185 onActivated: new TabEventTarget(safari.application, "activate", true), | |
186 onRemoved: new TabEventTarget(safari.application, "close", true) | |
187 }; | |
188 | |
189 | |
190 /* Browser actions */ | |
191 | |
192 var toolbarItemProperites = {}; | |
Wladimir Palant
2014/01/16 09:10:05
toolbarItemProperites => toolbarItemProperties?
Sebastian Noack
2014/01/16 12:45:02
Done.
| |
193 | |
194 var getToolbarItemProperty = function(name) | |
195 { | |
196 var property = toolbarItemProperites[name]; | |
197 if (!property) | |
198 { | |
199 property = {global: safari.extension.toolbarItems[0][name], tabs: new TabM ap()}; | |
Wladimir Palant
2014/01/16 09:10:05
Will there always be at least one toolbar item? Wh
Sebastian Noack
2014/01/16 12:45:02
Done.
| |
200 toolbarItemProperites[name] = property; | |
201 } | |
202 return property; | |
203 }; | |
204 | |
205 var getToolbarItemForWindow = function(win) | |
206 { | |
207 for (var i = 0; i < safari.extension.toolbarItems.length; i++) | |
208 { | |
209 var toolbarItem = safari.extension.toolbarItems[i]; | |
210 | |
211 if (toolbarItem.browserWindow == win) | |
212 return toolbarItem; | |
213 } | |
214 | |
215 return null; | |
216 }; | |
217 | |
218 var BrowserAction = function() {}; | |
219 BrowserAction.prototype = { | |
220 setIcon: function(path) | |
221 { | |
222 this._set("image", safari.extension.baseURI + path); | |
223 }, | |
224 setTitle: function(title) | |
225 { | |
226 this._set("label", title); | |
227 this._set("toolTip", title); | |
228 }, | |
229 setBadge: function(badge) | |
230 { | |
231 if (!badge) | |
232 this._set("badge", 0); | |
233 else if ("number" in badge) | |
234 this._set("badge", badge.number); | |
235 } | |
236 }; | |
237 | |
238 var GlobalBrowserAction = function() {}; | |
239 GlobalBrowserAction.prototype = { | |
240 __proto__: BrowserAction.prototype, | |
241 _set: function(name, value) | |
242 { | |
243 var property = getToolbarItemProperty(name); | |
244 property.global = value; | |
245 property.tabs.clear(); | |
246 | |
247 for (var i = 0; i < safari.extension.toolbarItems.length; i++) | |
248 safari.extension.toolbarItems[i][name] = value; | |
249 } | |
250 }; | |
251 | |
252 ext.browserAction = new GlobalBrowserAction(); | |
253 | |
254 var TabBrowserAction = function(tab) | |
255 { | |
256 this._tab = tab; | |
257 }; | |
258 TabBrowserAction.prototype = { | |
259 __proto__: BrowserAction.prototype, | |
260 _set: function(name, value) | |
261 { | |
262 getToolbarItemProperty(name).tabs.set(this._tab, value); | |
263 | |
264 var currentWindow = this._tab._tab.browserWindow; | |
265 var toolbarItem = getToolbarItemForWindow(currentWindow); | |
266 if (toolbarItem && this._tab._tab == currentWindow.activeTab) | |
Wladimir Palant
2014/01/16 09:10:05
Nit: It seems that |this._tab._tab == currentWindo
| |
267 toolbarItem[name] = value; | |
268 } | |
269 }; | |
270 | |
271 ext.tabs.onActivated.addListener(function(tab) | |
272 { | |
273 var toolbarItem = getToolbarItemForWindow(tab._tab.browserWindow); | |
274 | |
275 if (!toolbarItem) | |
276 return; | |
277 | |
278 for (var name in toolbarItemProperites) | |
279 { | |
280 var property = toolbarItemProperites[name]; | |
281 | |
282 if (property.tabs.has(tab)) | |
283 toolbarItem[name] = property.tabs.get(tab); | |
284 else | |
285 toolbarItem[name] = property.global; | |
286 } | |
287 }); | |
288 | |
196 | 289 |
197 /* Windows */ | 290 /* Windows */ |
198 | 291 |
199 Window = function(win) | 292 Window = function(win) |
200 { | 293 { |
201 this._win = win; | 294 this._win = win; |
202 } | 295 } |
203 Window.prototype = { | 296 Window.prototype = { |
204 get visible() | 297 get visible() |
205 { | 298 { |
(...skipping 325 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
531 { | 624 { |
532 return new Window(win); | 625 return new Window(win); |
533 })); | 626 })); |
534 }, | 627 }, |
535 getLastFocused: function(callback) | 628 getLastFocused: function(callback) |
536 { | 629 { |
537 callback(new Window(safari.application.activeBrowserWindow)); | 630 callback(new Window(safari.application.activeBrowserWindow)); |
538 } | 631 } |
539 }; | 632 }; |
540 | 633 |
541 ext.tabs = { | |
542 onLoading: new LoadingTabEventTarget(safari.application), | |
543 onBeforeNavigate: new TabEventTarget(safari.application, "beforeNavigate", t rue), | |
544 onCompleted: new TabEventTarget(safari.application, "navigate", true), | |
545 onActivated: new TabEventTarget(safari.application, "activate", true), | |
546 onRemoved: new TabEventTarget(safari.application, "close", true) | |
547 }; | |
548 | |
549 ext.backgroundPage = { | 634 ext.backgroundPage = { |
550 getWindow: function() | 635 getWindow: function() |
551 { | 636 { |
552 return safari.extension.globalPage.contentWindow; | 637 return safari.extension.globalPage.contentWindow; |
553 } | 638 } |
554 }; | 639 }; |
555 | 640 |
556 ext.onMessage = new BackgroundMessageEventTarget(); | 641 ext.onMessage = new BackgroundMessageEventTarget(); |
557 | 642 |
558 // TODO: Implement context menu | 643 // TODO: Implement context menu |
559 ext.contextMenus = { | 644 ext.contextMenus = { |
560 create: function(title, contexts, onclick) {}, | 645 create: function(title, contexts, onclick) {}, |
561 removeAll: function(callback) {} | 646 removeAll: function(callback) {} |
562 }; | 647 }; |
563 })(); | 648 })(); |
OLD | NEW |