タブのインデント用のスペースをクリックしたらそのタブを選択するようにした
(フルスクリーン表示で、画面端でのクリックでもタブを選択できるようにした) git-svn-id: http://www.cozmixng.org/repos/piro/treestyletab/trunk@3451 599a83e7-65a4-db11-8015-0010dcdd6dc2
This commit is contained in:
parent
1f90a9b4a7
commit
7f7b081ff7
@ -1674,12 +1674,27 @@ TreeStyleTabBrowser.prototype = {
|
|||||||
|
|
||||||
onTabClick : function(aEvent)
|
onTabClick : function(aEvent)
|
||||||
{
|
{
|
||||||
if (aEvent.button != 0 ||
|
if (aEvent.button != 0) return;
|
||||||
!this.isEventFiredOnTwisty(aEvent))
|
|
||||||
return;
|
|
||||||
|
|
||||||
var tab = this.getTabFromEvent(aEvent);
|
if (this.isEventFiredOnTwisty(aEvent)) {
|
||||||
this.collapseExpandSubtree(tab, tab.getAttribute(this.kSUBTREE_COLLAPSED) != 'true');
|
var tab = this.getTabFromEvent(aEvent);
|
||||||
|
this.collapseExpandSubtree(tab, tab.getAttribute(this.kSUBTREE_COLLAPSED) != 'true');
|
||||||
|
}
|
||||||
|
else if (!this.getTabFromEvent(aEvent)) {
|
||||||
|
var clickedPoint = aEvent[this.positionProp];
|
||||||
|
Array.slice(this.mTabBrowser.mTabContainer.childNodes).some(function(aTab) {
|
||||||
|
var box = aTab.boxObject;
|
||||||
|
if (box[this.positionProp] > clickedPoint ||
|
||||||
|
box[this.positionProp] + box[this.sizeProp] < clickedPoint) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
this.mTabBrowser.selectedTab = aTab;
|
||||||
|
return true;
|
||||||
|
}, this);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
aEvent.preventDefault();
|
aEvent.preventDefault();
|
||||||
aEvent.stopPropagation();
|
aEvent.stopPropagation();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user