-
Notifications
You must be signed in to change notification settings - Fork 51
/
verticaltabs.jsm
358 lines (315 loc) · 13.8 KB
/
verticaltabs.jsm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
/* -*- Mode: javascript; indent-tabs-mode: nil -*- */
/* ***** BEGIN LICENSE BLOCK *****
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
*
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
* http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
* for the specific language governing rights and limitations under the
* License.
*
* The Original Code is Vertical Tabs.
*
* The Initial Developer of the Original Code is
* Philipp von Weitershausen.
* Portions created by the Initial Developer are Copyright (C) 2011
* the Initial Developer. All Rights Reserved.
*
* Contributor(s):
*
* Alternatively, the contents of this file may be used under the terms of
* either the GNU General Public License Version 2 or later (the "GPL"), or
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
* in which case the provisions of the GPL or the LGPL are applicable instead
* of those above. If you wish to allow use of your version of this file only
* under the terms of either the GPL or the LGPL, and not to allow others to
* use your version of this file under the terms of the MPL, indicate your
* decision by deleting the provisions above and replace them with the notice
* and other provisions required by the GPL or the LGPL. If you do not delete
* the provisions above, a recipient may use your version of this file under
* the terms of any one of the MPL, the GPL or the LGPL.
*
* ***** END LICENSE BLOCK ***** */
Components.utils.import("resource://gre/modules/Services.jsm");
Components.utils.import("resource://verticaltabs/tabdatastore.jsm");
Components.utils.import("resource://verticaltabs/multiselect.jsm");
Components.utils.import("resource://verticaltabs/groups.jsm");
const EXPORTED_SYMBOLS = ["VerticalTabs"];
const NS_XUL = "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul";
const TAB_DROP_TYPE = "application/x-moz-tabbrowser-tab";
/*
* Vertical Tabs
*
* Main entry point of this add-on.
*/
function VerticalTabs(window) {
this.window = window;
this.document = window.document;
this.unloaders = [];
this.init();
}
VerticalTabs.prototype = {
init: function() {
this.window.VerticalTabs = this;
this.unloaders.push(function() {
delete this.window.VerticalTabs;
});
this.installStylesheet("resource://verticaltabs/override-bindings.css");
this.installStylesheet("resource://verticaltabs/skin/bindings.css");
this.installStylesheet("resource://verticaltabs/skin/base.css");
switch (Services.appinfo.OS) {
case "WINNT":
this.installStylesheet("resource://verticaltabs/skin/win7/win7.css");
break;
case "Darwin":
this.installStylesheet("resource://verticaltabs/skin/osx/osx.css");
break;
case "Linux":
this.installStylesheet("resource://verticaltabs/skin/linux/linux.css");
break;
}
this.rearrangeXUL();
this.initContextMenu();
this.observeRightPref();
let tabs = this.document.getElementById("tabbrowser-tabs");
this.tabIDs = new VTTabIDs(tabs);
//this.groups = new VTGroups(tabs);
this.unloaders.push(function() {
this.tabIDs.unload();
//this.groups.unload();
});
},
installStylesheet: function(uri) {
const document = this.document;
let pi = document.createProcessingInstruction(
"xml-stylesheet", "href=\"" + uri + "\" type=\"text/css\"");
document.insertBefore(pi, document.documentElement);
this.unloaders.push(function () {
document.removeChild(pi);
});
},
rearrangeXUL: function() {
const window = this.window;
const document = this.document;
// Move the bottom stuff (findbar, addonbar, etc.) in with the
// tabbrowser. That way it will share the same (horizontal)
// space as the brower. In other words, the bottom stuff no
// longer extends across the whole bottom of the window.
let contentbox = document.getElementById("appcontent");
let bottom = document.getElementById("browser-bottombox");
contentbox.appendChild(bottom);
// Create a box next to the app content. It will hold the tab
// bar and the tab toolbar.
let browserbox = document.getElementById("browser");
let leftbox = document.createElementNS(NS_XUL, "vbox");
leftbox.id = "verticaltabs-box";
browserbox.insertBefore(leftbox, contentbox);
let splitter = document.createElementNS(NS_XUL, "splitter");
splitter.id = "verticaltabs-splitter";
splitter.className = "chromeclass-extrachrome";
browserbox.insertBefore(splitter, contentbox);
// Hook up event handler for splitter so that the width of the
// tab bar is persisted.
splitter.addEventListener("mouseup", this, false);
// Move the tabs next to the app content, make them vertical,
// and restore their width from previous session
if (Services.prefs.getBoolPref("extensions.verticaltabs.right")) {
browserbox.dir = "reverse";
}
let tabs = document.getElementById("tabbrowser-tabs");
leftbox.insertBefore(tabs, leftbox.firstChild);
tabs.orient = "vertical";
tabs.mTabstrip.orient = "vertical";
tabs.tabbox.orient = "horizontal"; // probably not necessary
tabs.setAttribute("width", Services.prefs.getIntPref("extensions.verticaltabs.width"));
// Move the tabs toolbar into the tab strip
let toolbar = document.getElementById("TabsToolbar");
toolbar._toolbox = null; // reset value set by constructor
toolbar.setAttribute("toolboxid", "navigator-toolbox");
leftbox.appendChild(toolbar);
// Force tabs on bottom (for styling) after backing up the user's
// setting.
try {
Services.prefs.getBoolPref("extensions.verticaltabs.tabsOnTop");
} catch (ex if (ex.result == Components.results.NS_ERROR_UNEXPECTED)) {
Services.prefs.setBoolPref("extensions.verticaltabs.tabsOnTop",
window.TabsOnTop.enabled);
}
window.TabsOnTop.enabled = false;
// Hide all menu items for tabs on top.
let menu_tabsOnTop = document.getElementById("menu_tabsOnTop");
menu_tabsOnTop.collapsed = true;
menu_tabsOnTop.nextSibling.collapsed = true; // separator
let toolbar_context_menu = document.getElementById("toolbar-context-menu");
toolbar_context_menu.firstChild.collapsed = true;
toolbar_context_menu.firstChild.nextSibling.collapsed = true; // separator
let appmenu_tabsOnTop = document.getElementById("appmenu_toggleTabsOnTop");
if (appmenu_tabsOnTop) {
appmenu_tabsOnTop.collapsed = true;
}
// Disable the command just to be safe.
let cmd_tabsOnTop = document.getElementById("cmd_ToggleTabsOnTop");
cmd_tabsOnTop.disabled = true;
// Fix up each individual tab for vertical layout, including
// ones that are opened later on.
tabs.addEventListener("TabOpen", this, false);
for (let i=0; i < tabs.childNodes.length; i++) {
this.initTab(tabs.childNodes[i]);
}
this.window.addEventListener("resize", this, false);
this.unloaders.push(function () {
// Move the bottom back to being the next sibling of contentbox.
browserbox.insertBefore(bottom, contentbox.nextSibling);
// Move the tabs toolbar back to where it was
toolbar._toolbox = null; // reset value set by constructor
toolbar.removeAttribute("toolboxid");
let toolbox = document.getElementById("navigator-toolbox");
toolbox.appendChild(toolbar);
// Restore the tab strip.
let new_tab_button = document.getElementById("new-tab-button");
toolbar.insertBefore(tabs, new_tab_button);
tabs.orient = "horizontal";
tabs.mTabstrip.orient = "horizontal";
tabs.tabbox.orient = "vertical"; // probably not necessary
tabs.removeAttribute("width");
tabs.removeEventListener("TabOpen", this, false);
// Restore tabs on top.
window.TabsOnTop.enabled = Services.prefs.getBoolPref(
"extensions.verticaltabs.tabsOnTop");
menu_tabsOnTop.collapsed = false;
menu_tabsOnTop.nextSibling.collapsed = false; // separator
toolbar_context_menu.firstChild.collapsed = false;
toolbar_context_menu.firstChild.nextSibling.collapsed = false; // separator
if (appmenu_tabsOnTop) {
appmenu_tabsOnTop.collapsed = false;
}
cmd_tabsOnTop.disabled = false;
// Restore all individual tabs.
for (let i = 0; i < tabs.childNodes.length; i++) {
let tab = tabs.childNodes[i];
tab.removeAttribute("align");
tab.maxWidth = tab.minWidth = "";
}
// Remove all the crap we added.
splitter.removeEventListener("mouseup", this, false);
browserbox.removeChild(leftbox);
browserbox.removeChild(splitter);
browserbox.dir = "normal";
leftbox = splitter = null;
});
},
initContextMenu: function() {
const document = this.document;
const tabs = document.getElementById("tabbrowser-tabs");
let closeMultiple = null;
if (this.multiSelect) {
closeMultiple = document.createElementNS(NS_XUL, "menuitem");
closeMultiple.id = "context_verticalTabsCloseMultiple";
closeMultiple.setAttribute("label", "Close Selected Tabs"); //TODO l10n
closeMultiple.setAttribute("tbattr", "tabbrowser-multiple");
closeMultiple.setAttribute(
"oncommand", "gBrowser.tabContainer.VTMultiSelect.closeSelected();");
tabs.contextMenu.appendChild(closeMultiple);
}
tabs.contextMenu.addEventListener("popupshowing", this, false);
this.unloaders.push(function () {
if (closeMultiple)
tabs.contextMenu.removeChild(closeMultiple);
tabs.contextMenu.removeEventListener("popupshowing", this, false);
});
},
initTab: function(aTab) {
aTab.setAttribute("align", "stretch");
aTab.maxWidth = 65000;
aTab.minWidth = 0;
},
setPinnedSizes: function() {
let tabs = this.document.getElementById("tabbrowser-tabs");
// awfulness
let numPinned = tabs.tabbrowser._numPinnedTabs;
if (tabs.getAttribute("positionpinnedtabs")) {
let width = tabs.boxObject.width;
for (let i = 0; i < numPinned; ++i) {
tabs.childNodes[i].style.width = tabs.boxObject.width + "px";
}
} else {
for (let i = 0; i < numPinned; ++i) {
tabs.childNodes[i].style.width = "";
}
}
},
onTabbarResized: function() {
let tabs = this.document.getElementById("tabbrowser-tabs");
this.setPinnedSizes();
this.window.setTimeout(function() {
Services.prefs.setIntPref("extensions.verticaltabs.width",
tabs.boxObject.width);
}, 10);
},
observeRightPref: function () {
Services.prefs.addObserver("extensions.verticaltabs.right", this, false);
this.unloaders.push(function () {
Services.prefs.removeObserver("extensions.verticaltabs.right", this, false);
});
},
observe: function (subject, topic, data) {
if (topic != "nsPref:changed" || data != "extensions.verticaltabs.right") {
return;
}
let browserbox = this.document.getElementById("browser");
if (browserbox.dir != "reverse") {
browserbox.dir = "reverse";
} else {
browserbox.dir = "normal";
}
},
unload: function() {
this.unloaders.forEach(function(func) {
func.call(this);
}, this);
},
/*** Event handlers ***/
handleEvent: function(aEvent) {
switch (aEvent.type) {
case "DOMContentLoaded":
this.init();
return;
case "TabOpen":
this.onTabOpen(aEvent);
this.setPinnedSizes();
return;
case "mouseup":
this.onMouseUp(aEvent);
return;
case "popupshowing":
this.onPopupShowing(aEvent);
return;
case "resize":
this.setPinnedSizes();
return;
}
},
onTabOpen: function(aEvent) {
this.initTab(aEvent.target);
},
onMouseUp: function(aEvent) {
if (aEvent.target.getAttribute("id") == "verticaltabs-splitter") {
this.onTabbarResized();
}
},
onPopupShowing: function(aEvent) {
if (!this.multiSelect)
return;
let closeTabs = this.document.getElementById("context_verticalTabsCloseMultiple");
let tabs = this.multiSelect.getSelected();
if (tabs.length > 1) {
closeTabs.disabled = false;
} else {
closeTabs.disabled = true;
}
}
};