зеркало из https://github.com/mozilla/pjs.git
Porting changes from seamonkey. Bug 97434 and 240590. Patches by Neil.
This commit is contained in:
Родитель
5d4005aefe
Коммит
72eea38a24
|
@ -88,12 +88,6 @@
|
||||||
true
|
true
|
||||||
#endif
|
#endif
|
||||||
</field>
|
</field>
|
||||||
<field name="selectionHead">
|
|
||||||
-1
|
|
||||||
</field>
|
|
||||||
<field name="selectionTail">
|
|
||||||
-1
|
|
||||||
</field>
|
|
||||||
<property name="enableColumnDrag"
|
<property name="enableColumnDrag"
|
||||||
onget="return this.hasAttribute('enableColumnDrag');"
|
onget="return this.hasAttribute('enableColumnDrag');"
|
||||||
onset="if (val) this.setAttribute('enableColumnDrag', 'true');
|
onset="if (val) this.setAttribute('enableColumnDrag', 'true');
|
||||||
|
@ -285,8 +279,6 @@
|
||||||
var c = this.currentIndex;
|
var c = this.currentIndex;
|
||||||
if (c == -1 || c == 0)
|
if (c == -1 || c == 0)
|
||||||
return;
|
return;
|
||||||
this.selectionHead = -1;
|
|
||||||
this.selectionTail = -1;
|
|
||||||
this.view.selection.timedSelect(c-1, this._selectDelay);
|
this.view.selection.timedSelect(c-1, this._selectDelay);
|
||||||
this.treeBoxObject.ensureRowIsVisible(c-1);
|
this.treeBoxObject.ensureRowIsVisible(c-1);
|
||||||
]]>
|
]]>
|
||||||
|
@ -297,8 +289,6 @@
|
||||||
try { if (c+1 == this.treeBoxObject.view.rowCount)
|
try { if (c+1 == this.treeBoxObject.view.rowCount)
|
||||||
return;
|
return;
|
||||||
} catch (e) {}
|
} catch (e) {}
|
||||||
this.selectionHead = -1;
|
|
||||||
this.selectionTail = -1;
|
|
||||||
this.view.selection.timedSelect(c+1, this._selectDelay);
|
this.view.selection.timedSelect(c+1, this._selectDelay);
|
||||||
this.treeBoxObject.ensureRowIsVisible(c+1);
|
this.treeBoxObject.ensureRowIsVisible(c+1);
|
||||||
]]>
|
]]>
|
||||||
|
@ -310,21 +300,8 @@
|
||||||
var c = this.currentIndex;
|
var c = this.currentIndex;
|
||||||
if (c == -1 || c == 0)
|
if (c == -1 || c == 0)
|
||||||
return;
|
return;
|
||||||
if (c == this.selectionTail) {
|
// Extend the selection from the existing pivot, if any
|
||||||
if (this.selectionHead < this.selectionTail) {
|
this.view.selection.rangedSelect(-1, c - 1, false);
|
||||||
this.view.selection.toggleSelect(c);
|
|
||||||
this.currentIndex = c - 1;
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
this.view.selection.toggleSelect(c - 1);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
this.view.selection.clearSelection();
|
|
||||||
this.selectionHead = c;
|
|
||||||
this.view.selection.rangedSelect(c, c - 1, true);
|
|
||||||
}
|
|
||||||
this.selectionTail = c - 1;
|
|
||||||
this.treeBoxObject.ensureRowIsVisible(c - 1);
|
this.treeBoxObject.ensureRowIsVisible(c - 1);
|
||||||
]]>
|
]]>
|
||||||
</handler>
|
</handler>
|
||||||
|
@ -336,21 +313,8 @@
|
||||||
try { if (c+1 == this.treeBoxObject.view.rowCount)
|
try { if (c+1 == this.treeBoxObject.view.rowCount)
|
||||||
return;
|
return;
|
||||||
} catch (e) {}
|
} catch (e) {}
|
||||||
if (c == this.selectionTail) {
|
// Extend the selection from the existing pivot, if any
|
||||||
if (this.selectionHead > this.selectionTail) {
|
this.view.selection.rangedSelect(-1, c + 1, false);
|
||||||
this.view.selection.toggleSelect(c);
|
|
||||||
this.currentIndex = c + 1;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
this.view.selection.toggleSelect(c + 1);
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
this.view.selection.clearSelection();
|
|
||||||
this.selectionHead = c;
|
|
||||||
this.view.selection.rangedSelect(c, c + 1, true);
|
|
||||||
}
|
|
||||||
this.selectionTail = c + 1;
|
|
||||||
this.treeBoxObject.ensureRowIsVisible(c + 1);
|
|
||||||
]]>
|
]]>
|
||||||
</handler>
|
</handler>
|
||||||
<handler event="keypress" keycode="vk_up" modifiers="control">
|
<handler event="keypress" keycode="vk_up" modifiers="control">
|
||||||
|
@ -381,8 +345,6 @@
|
||||||
var c = this.currentIndex;
|
var c = this.currentIndex;
|
||||||
if (c == 0)
|
if (c == 0)
|
||||||
return;
|
return;
|
||||||
this.selectionHead = -1;
|
|
||||||
this.selectionTail = -1;
|
|
||||||
var f = this.treeBoxObject.getFirstVisibleRow();
|
var f = this.treeBoxObject.getFirstVisibleRow();
|
||||||
var i = 0;
|
var i = 0;
|
||||||
if (f > 0) {
|
if (f > 0) {
|
||||||
|
@ -406,8 +368,6 @@
|
||||||
var l = this.treeBoxObject.view.rowCount - 1;
|
var l = this.treeBoxObject.view.rowCount - 1;
|
||||||
if (c == l)
|
if (c == l)
|
||||||
return;
|
return;
|
||||||
this.selectionHead = -1;
|
|
||||||
this.selectionTail = -1;
|
|
||||||
var f = this.treeBoxObject.getFirstVisibleRow();
|
var f = this.treeBoxObject.getFirstVisibleRow();
|
||||||
var p = this.treeBoxObject.getPageLength();
|
var p = this.treeBoxObject.getPageLength();
|
||||||
var i = l;
|
var i = l;
|
||||||
|
@ -439,26 +399,8 @@
|
||||||
i = c - f;
|
i = c - f;
|
||||||
this.treeBoxObject.scrollByPages(-1);
|
this.treeBoxObject.scrollByPages(-1);
|
||||||
}
|
}
|
||||||
if (c == this.selectionTail) {
|
// Extend the selection from the existing pivot, if any
|
||||||
if (this.selectionHead < this.selectionTail) {
|
this.view.selection.rangedSelect(-1, i, false);
|
||||||
if (i < this.selectionHead) {
|
|
||||||
this.view.selection.clearRange(c, this.selectionHead + 1);
|
|
||||||
this.view.selection.rangedSelect(this.selectionHead - 1, i, true);
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
this.view.selection.clearRange(c, i + 1);
|
|
||||||
this.currentIndex = i;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else
|
|
||||||
this.view.selection.rangedSelect(c - 1, i, true);
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
this.view.selection.clearSelection();
|
|
||||||
this.selectionHead = c;
|
|
||||||
this.view.selection.rangedSelect(c, i, true);
|
|
||||||
}
|
|
||||||
this.selectionTail = i;
|
|
||||||
]]>
|
]]>
|
||||||
</handler>
|
</handler>
|
||||||
<handler event="keypress" keycode="vk_page_down" modifiers="shift">
|
<handler event="keypress" keycode="vk_page_down" modifiers="shift">
|
||||||
|
@ -480,26 +422,8 @@
|
||||||
i = lastTopRowIndex + c - f + 1;
|
i = lastTopRowIndex + c - f + 1;
|
||||||
this.treeBoxObject.scrollByPages(1);
|
this.treeBoxObject.scrollByPages(1);
|
||||||
}
|
}
|
||||||
if (c == this.selectionTail) {
|
// Extend the selection from the existing pivot, if any
|
||||||
if (this.selectionHead > this.selectionTail) {
|
this.view.selection.rangedSelect(-1, i, false);
|
||||||
if (i > this.selectionHead) {
|
|
||||||
this.view.selection.clearRange(c, this.selectionHead - 1);
|
|
||||||
this.view.selection.rangedSelect(this.selectionHead + 1, i, true);
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
this.view.selection.clearRange(c, i - 1);
|
|
||||||
this.currentIndex = i;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else
|
|
||||||
this.view.selection.rangedSelect(c + 1, i, true);
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
this.view.selection.clearSelection();
|
|
||||||
this.selectionHead = c;
|
|
||||||
this.view.selection.rangedSelect(c, i, true);
|
|
||||||
}
|
|
||||||
this.selectionTail = i;
|
|
||||||
]]>
|
]]>
|
||||||
</handler>
|
</handler>
|
||||||
<handler event="keypress" keycode="vk_page_up" modifiers="control">
|
<handler event="keypress" keycode="vk_page_up" modifiers="control">
|
||||||
|
@ -542,22 +466,14 @@
|
||||||
</handler>
|
</handler>
|
||||||
<handler event="keypress" keycode="vk_home">
|
<handler event="keypress" keycode="vk_home">
|
||||||
<![CDATA[
|
<![CDATA[
|
||||||
if (this.currentIndex == 0)
|
this.view.selection.timedSelect(0, this._selectDelay);
|
||||||
return;
|
|
||||||
this.selectionHead = -1;
|
|
||||||
this.selectionTail = -1;
|
|
||||||
this.view.selection.select(0);
|
|
||||||
this.treeBoxObject.ensureRowIsVisible(0);
|
this.treeBoxObject.ensureRowIsVisible(0);
|
||||||
]]>
|
]]>
|
||||||
</handler>
|
</handler>
|
||||||
<handler event="keypress" keycode="vk_end">
|
<handler event="keypress" keycode="vk_end">
|
||||||
<![CDATA[
|
<![CDATA[
|
||||||
var l = this.treeBoxObject.view.rowCount - 1;
|
var l = this.treeBoxObject.view.rowCount - 1;
|
||||||
if (this.currentIndex == l)
|
this.view.selection.timedSelect(l, this._selectDelay);
|
||||||
return;
|
|
||||||
this.selectionHead = -1;
|
|
||||||
this.selectionTail = -1;
|
|
||||||
this.view.selection.select(l);
|
|
||||||
this.treeBoxObject.ensureRowIsVisible(l);
|
this.treeBoxObject.ensureRowIsVisible(l);
|
||||||
]]>
|
]]>
|
||||||
</handler>
|
</handler>
|
||||||
|
@ -565,15 +481,8 @@
|
||||||
<![CDATA[
|
<![CDATA[
|
||||||
if (this.view.selection.single)
|
if (this.view.selection.single)
|
||||||
return;
|
return;
|
||||||
var c = this.currentIndex;
|
// Extend the selection from the existing pivot, if any
|
||||||
if (c == 0)
|
this.view.selection.rangedSelect(-1, 0, false);
|
||||||
return;
|
|
||||||
if (c != this.selectionTail) {
|
|
||||||
this.view.selection.clearSelection();
|
|
||||||
this.selectionHead = c;
|
|
||||||
}
|
|
||||||
this.view.selection.rangedSelect(c, 0, true);
|
|
||||||
this.selectionTail = 0;
|
|
||||||
this.treeBoxObject.ensureRowIsVisible(0);
|
this.treeBoxObject.ensureRowIsVisible(0);
|
||||||
]]>
|
]]>
|
||||||
</handler>
|
</handler>
|
||||||
|
@ -581,23 +490,14 @@
|
||||||
<![CDATA[
|
<![CDATA[
|
||||||
if (this.view.selection.single)
|
if (this.view.selection.single)
|
||||||
return;
|
return;
|
||||||
var c = this.currentIndex;
|
|
||||||
var l = this.treeBoxObject.view.rowCount - 1;
|
var l = this.treeBoxObject.view.rowCount - 1;
|
||||||
if (c == l)
|
// Extend the selection from the existing pivot, if any
|
||||||
return;
|
this.view.selection.rangedSelect(-1, l, false);
|
||||||
if (c != this.selectionTail) {
|
|
||||||
this.view.selection.clearSelection();
|
|
||||||
this.selectionHead = c;
|
|
||||||
}
|
|
||||||
this.view.selection.rangedSelect(c, l, true);
|
|
||||||
this.selectionTail = l;
|
|
||||||
this.treeBoxObject.ensureRowIsVisible(l);
|
this.treeBoxObject.ensureRowIsVisible(l);
|
||||||
]]>
|
]]>
|
||||||
</handler>
|
</handler>
|
||||||
<handler event="keypress" keycode="vk_home" modifiers="control">
|
<handler event="keypress" keycode="vk_home" modifiers="control">
|
||||||
<![CDATA[
|
<![CDATA[
|
||||||
if (this.currentIndex == 0)
|
|
||||||
return;
|
|
||||||
this.currentIndex = 0;
|
this.currentIndex = 0;
|
||||||
this.treeBoxObject.ensureRowIsVisible(0);
|
this.treeBoxObject.ensureRowIsVisible(0);
|
||||||
]]>
|
]]>
|
||||||
|
@ -605,8 +505,6 @@
|
||||||
<handler event="keypress" keycode="vk_end" modifiers="control">
|
<handler event="keypress" keycode="vk_end" modifiers="control">
|
||||||
<![CDATA[
|
<![CDATA[
|
||||||
var l = this.treeBoxObject.view.rowCount - 1;
|
var l = this.treeBoxObject.view.rowCount - 1;
|
||||||
if (this.currentIndex == l)
|
|
||||||
return;
|
|
||||||
this.currentIndex = l;
|
this.currentIndex = l;
|
||||||
this.treeBoxObject.ensureRowIsVisible(l);
|
this.treeBoxObject.ensureRowIsVisible(l);
|
||||||
]]>
|
]]>
|
||||||
|
@ -654,8 +552,6 @@
|
||||||
var cellText = this.view.getCellText(l, keyCol);
|
var cellText = this.view.getCellText(l, keyCol);
|
||||||
cellText = cellText.substring(0, length).toLowerCase();
|
cellText = cellText.substring(0, length).toLowerCase();
|
||||||
if (cellText == incrementalString) {
|
if (cellText == incrementalString) {
|
||||||
this.selectionHead = -1;
|
|
||||||
this.selectionTail = -1;
|
|
||||||
this.view.selection.timedSelect(l, this._selectDelay);
|
this.view.selection.timedSelect(l, this._selectDelay);
|
||||||
this.treeBoxObject.ensureRowIsVisible(l);
|
this.treeBoxObject.ensureRowIsVisible(l);
|
||||||
break;
|
break;
|
||||||
|
@ -1019,7 +915,7 @@
|
||||||
<binding id="treecol" extends="chrome://global/content/bindings/tree.xml#treecol-base">
|
<binding id="treecol" extends="chrome://global/content/bindings/tree.xml#treecol-base">
|
||||||
<content>
|
<content>
|
||||||
<xul:label class="treecol-text" xbl:inherits="crop,value=label" flex="1" crop="right"/>
|
<xul:label class="treecol-text" xbl:inherits="crop,value=label" flex="1" crop="right"/>
|
||||||
<xul:image class="treecol-sortdirection" xbl:inherits="sortDirection"/>
|
<xul:image class="treecol-sortdirection" xbl:inherits="sortDirection,hidden=hideheader"/>
|
||||||
</content>
|
</content>
|
||||||
<implementation implements="nsIAccessibleProvider">
|
<implementation implements="nsIAccessibleProvider">
|
||||||
<property name="accessible">
|
<property name="accessible">
|
||||||
|
|
Загрузка…
Ссылка в новой задаче