f545bd8e7d
git-svn-id: http://www.cozmixng.org/repos/piro/treestyletab/trunk@1522 599a83e7-65a4-db11-8015-0010dcdd6dc2
121 lines
4.4 KiB
JavaScript
121 lines
4.4 KiB
JavaScript
TreeStyleTabService.overrideExtensions = function() {
|
|
if ('MultipleTabService' in window) {
|
|
eval('MultipleTabService.showHideMenuItems = '+
|
|
MultipleTabService.showHideMenuItems.toSource().replace(
|
|
/var separators = /,
|
|
<><![CDATA[
|
|
if (aPopup.id == 'multipletab-selection-menu') {
|
|
TreeStyleTabService.showHideRemoveSubTreeMenuItem(document.getElementById(TreeStyleTabService.kMENUITEM_REMOVESUBTREE_SELECTION), MultipleTabService.getSelectedTabs());
|
|
}
|
|
var separators = ]]></>
|
|
)
|
|
);
|
|
}
|
|
|
|
if ('autoHIDE' in window) {
|
|
eval('autoHIDE.ShowMenu = '+
|
|
autoHIDE.ShowMenu.toSource().replace(
|
|
'{',
|
|
'{ var treeStyleTabPos = TreeStyleTabService.getTreePref("tabbar.position");'
|
|
).replace(
|
|
'e.screenY <= autoHIDE.Win.boxObject.screenY + autoHIDE.space',
|
|
<><![CDATA[(e.screenY <= autoHIDE.Win.boxObject.screenY + autoHIDE.space ||
|
|
(
|
|
treeStyleTabPos == 'left' ?
|
|
(e.screenX <= autoHIDE.Win.boxObject.screenX + autoHIDE.space) :
|
|
treeStyleTabPos == 'right' ?
|
|
(e.screenX >= autoHIDE.Win.boxObject.screenX + autoHIDE.Win.boxObject.width - autoHIDE.space) :
|
|
treeStyleTabPos == 'bottom' ?
|
|
(e.screenY >= autoHIDE.Win.boxObject.screenY + autoHIDE.Win.boxObject.height - autoHIDE.space) :
|
|
false
|
|
))]]></>
|
|
).replace(
|
|
'e.screenY > getBrowser().mCurrentBrowser.boxObject.screenY + 25',
|
|
<><![CDATA[(e.screenY > getBrowser().mCurrentBrowser.boxObject.screenY + 25 &&
|
|
(
|
|
treeStyleTabPos == 'left' ?
|
|
(e.screenX > getBrowser().mCurrentBrowser.boxObject.screenX + 25) :
|
|
treeStyleTabPos == 'right' ?
|
|
(e.screenX < getBrowser().mCurrentBrowser.boxObject.screenX + getBrowser().mCurrentBrowser.boxObject.width - 25) :
|
|
treeStyleTabPos == 'bottom' ?
|
|
(e.screenY < getBrowser().mCurrentBrowser.boxObject.screenY + getBrowser().mCurrentBrowser.boxObject.height - 25) :
|
|
true
|
|
))]]></>
|
|
)
|
|
);
|
|
eval('autoHIDE.HideToolbar = '+
|
|
autoHIDE.HideToolbar.toSource().replace(
|
|
'if (this.Show) {',
|
|
<><![CDATA[
|
|
window.setTimeout('TreeStyleTabService.checkTabsIndentOverflow(gBrowser);', 0);
|
|
var treeStyleTabPos = TreeStyleTabService.getTreePref("tabbar.position");
|
|
if (this.Show) {
|
|
var appcontent = document.getElementById('appcontent');
|
|
if (appcontent.__treestyletab__resized) {
|
|
appcontent.__treestyletab__resized = false;
|
|
appcontent.style.marginLeft = 0;
|
|
appcontent.style.marginRight = 0;
|
|
}
|
|
]]></>
|
|
)
|
|
);
|
|
eval('autoHIDE.EndFull = '+
|
|
autoHIDE.EndFull.toSource().replace(
|
|
'{',
|
|
<><![CDATA[
|
|
{
|
|
var appcontent = document.getElementById('appcontent');
|
|
if (appcontent.__treestyletab__resized) {
|
|
appcontent.__treestyletab__resized = false;
|
|
appcontent.style.marginLeft = 0;
|
|
appcontent.style.marginRight = 0;
|
|
}
|
|
window.setTimeout('TreeStyleTabService.checkTabsIndentOverflow(gBrowser);', 0);
|
|
]]></>
|
|
)
|
|
);
|
|
eval('autoHIDE.SetMenu = '+
|
|
autoHIDE.SetMenu.toSource().replace(
|
|
'{',
|
|
<><![CDATA[
|
|
{
|
|
if (arguments.length && arguments[0]) {
|
|
var treeStyleTabSplitter = document.getAnonymousElementByAttribute(gBrowser, 'class', TreeStyleTabService.kSPLITTER);
|
|
this.__treestyletab__tabBarWidth = gBrowser.mStrip.boxObject.width +
|
|
(treeStyleTabSplitter ? treeStyleTabSplitter.boxObject.width : 0 );
|
|
}
|
|
]]></>
|
|
)
|
|
);
|
|
eval('autoHIDE.MoveC = '+
|
|
autoHIDE.MoveC.toSource().replace(
|
|
'{',
|
|
<><![CDATA[
|
|
{
|
|
var treeStyleTabPos = TreeStyleTabService.getTreePref("tabbar.position");
|
|
if (!arguments.length) {
|
|
var appcontent = document.getElementById('appcontent');
|
|
if (treeStyleTabPos == 'left' &&
|
|
!appcontent.__treestyletab__resized) {
|
|
appcontent.style.marginRight = '-'+autoHIDE.__treestyletab__tabBarWidth+'px';
|
|
appcontent.__treestyletab__resized = true;
|
|
}
|
|
/* doesn't work this hack for rightside tab bar
|
|
else if (treeStyleTabPos == 'right' &&
|
|
!appcontent.__treestyletab__resized) {
|
|
appcontent.style.marginLeft = '-'+autoHIDE.__treestyletab__tabBarWidth+'px';
|
|
appcontent.__treestyletab__resized = true;
|
|
}
|
|
*/
|
|
window.setTimeout('autoHIDE.MoveC(true);', 100);
|
|
return;
|
|
}
|
|
]]></>
|
|
).replace(
|
|
'.move(0, - this.delta)',
|
|
'.move((treeStyleTabPos == "left" ? -this.__treestyletab__tabBarWidth : 0 ), -this.delta)'
|
|
)
|
|
);
|
|
}
|
|
};
|