aboutsummaryrefslogtreecommitdiff
path: root/libjava/javax/swing/tree
diff options
context:
space:
mode:
authorRoman Kennke <roman@kennke.org>2005-04-22 18:31:30 +0000
committerMichael Koch <mkoch@gcc.gnu.org>2005-04-22 18:31:30 +0000
commitc189e185d44ade63dd087a9c2ba059c19920f8a5 (patch)
treedad7c6c39a8f34edd2605fabf4f0409f420383ff /libjava/javax/swing/tree
parentf030e8540f48f439493aeb129cf24235d456c5a9 (diff)
downloadgcc-c189e185d44ade63dd087a9c2ba059c19920f8a5.zip
gcc-c189e185d44ade63dd087a9c2ba059c19920f8a5.tar.gz
gcc-c189e185d44ade63dd087a9c2ba059c19920f8a5.tar.bz2
2005-04-22 Roman Kennke <roman@kennke.org>
* javax/swing/plaf/basic/BasicLookAndFeel.java (initComponentDefaults): Changed Button.border to be BasicBorders.getButtonBorder as it should be. 2005-04-22 Roman Kennke <roman@kennke.org> * javax/swing/plaf/basic/BasicTabbedPaneUI.java: (getMaximumSize): Return (Short.MAX_VALUE, Short.MAX_VALUE) as it should according to a mauve testcase, instead of the preferred size. 2005-04-22 Roman Kennke <roman@kennke.org> * javax/swing/JMenu.java (add): add(Component) now calls PopupMenu.insert(..) instead of PopupMenu.add(..). add(..) is not implemented for Component, so JComponent.add(..) is called instead, adding the component in the wrong place. 2005-04-22 Roman Kennke <roman@kennke.org> * javax/swing/plaf/basic/BasicButtonListener.java (mousePressed): replaced query to getModifiersEx with getModifiers. This method relied on faulty behaviour in getModifierEx. (mouseReleased): replaced query to getModifiersEx with getModifiers. This method relied on faulty behaviour in getModifierEx. 2005-04-22 Roman Kennke <roman@kennke.org> * javax/swing/plaf/metal/MetalLookAndFeel.java (getDefaults): Call addCustomEntriesToTable on the theme. 2005-04-22 Roman Kennke <roman@kennke.org> * javax/swing/tree/DefaultTreeSelectionModel.java (constructor): Added implementation. (getRowMapper): Added implementation. (setSelectionMode): Added implementation. (getSelectionMode): Added implementation. (getSelectionPath): Added implementation. (getSelectionPaths): Added implementation. (getSelectionCount): Added implementation. (isSelectionEmpty): Added implementation. (getSelectionRows): Added implementation. (getMinSelectionRow): Added implementation. (getMaxSelectionRow): Added implementation. (getLeadSelectionRow): Added implementation. (getLeadSelectionPath): Added implementation. From-SVN: r98580
Diffstat (limited to 'libjava/javax/swing/tree')
-rw-r--r--libjava/javax/swing/tree/DefaultTreeSelectionModel.java56
1 files changed, 42 insertions, 14 deletions
diff --git a/libjava/javax/swing/tree/DefaultTreeSelectionModel.java b/libjava/javax/swing/tree/DefaultTreeSelectionModel.java
index 05b9741..b329875 100644
--- a/libjava/javax/swing/tree/DefaultTreeSelectionModel.java
+++ b/libjava/javax/swing/tree/DefaultTreeSelectionModel.java
@@ -116,7 +116,7 @@ public class DefaultTreeSelectionModel
*/
public DefaultTreeSelectionModel()
{
- // TODO
+ setSelectionMode(DISCONTIGUOUS_TREE_SELECTION);
}
/**
@@ -187,7 +187,7 @@ public class DefaultTreeSelectionModel
*/
public RowMapper getRowMapper()
{
- return null; // TODO
+ return rowMapper;
}
/**
@@ -202,9 +202,9 @@ public class DefaultTreeSelectionModel
* @see {@link #CONTIGUOUS_TREE_SELECTION}
* @see {@link #DISCONTIGUOUS_TREE_SELECTION}
*/
- public void setSelectionMode(int value0)
+ public void setSelectionMode(int mode)
{
- // TODO
+ selectionMode = mode;
}
/**
@@ -219,7 +219,7 @@ public class DefaultTreeSelectionModel
*/
public int getSelectionMode()
{
- return 0; // TODO
+ return selectionMode;
}
/**
@@ -311,7 +311,10 @@ public class DefaultTreeSelectionModel
*/
public TreePath getSelectionPath()
{
- return null; // TODO
+ if ((selection == null) || (selection.length == 0))
+ return null;
+ else
+ return selection[0];
}
/**
@@ -321,7 +324,7 @@ public class DefaultTreeSelectionModel
*/
public TreePath[] getSelectionPaths()
{
- return null; // TODO
+ return selection;
}
/**
@@ -331,7 +334,10 @@ public class DefaultTreeSelectionModel
*/
public int getSelectionCount()
{
- return 0; // TODO
+ if (selection == null)
+ return 0;
+ else
+ return selection.length;
}
/**
@@ -355,7 +361,7 @@ public class DefaultTreeSelectionModel
*/
public boolean isSelectionEmpty()
{
- return false; // TODO
+ return ((selection == null) || (selection.length == 0));
}
/**
@@ -432,7 +438,10 @@ public class DefaultTreeSelectionModel
*/
public int[] getSelectionRows()
{
- return null; // TODO
+ if (rowMapper == null)
+ return null;
+ else
+ return rowMapper.getRowsForPaths(selection);
}
/**
@@ -442,7 +451,15 @@ public class DefaultTreeSelectionModel
*/
public int getMinSelectionRow()
{
- return 0; // TODO
+ if ((rowMapper == null) || (selection == null) || (selection.length == 0))
+ return -1;
+ else {
+ int[] rows = rowMapper.getRowsForPaths(selection);
+ int minRow = Integer.MAX_VALUE;
+ for (int index = 0; index < rows.length; index++)
+ minRow = Math.min(minRow, rows[index]);
+ return minRow;
+ }
}
/**
@@ -452,7 +469,15 @@ public class DefaultTreeSelectionModel
*/
public int getMaxSelectionRow()
{
- return 0; // TODO
+ if ((rowMapper == null) || (selection == null) || (selection.length == 0))
+ return -1;
+ else {
+ int[] rows = rowMapper.getRowsForPaths(selection);
+ int maxRow = -1;
+ for (int index = 0; index < rows.length; index++)
+ maxRow = Math.max(maxRow, rows[index]);
+ return maxRow;
+ }
}
/**
@@ -482,7 +507,10 @@ public class DefaultTreeSelectionModel
*/
public int getLeadSelectionRow()
{
- return 0; // TODO
+ if ((rowMapper == null) || (leadPath == null))
+ return -1;
+ else
+ return rowMapper.getRowsForPaths(new TreePath[]{ leadPath })[0];
}
/**
@@ -491,7 +519,7 @@ public class DefaultTreeSelectionModel
*/
public TreePath getLeadSelectionPath()
{
- return null; // TODO
+ return leadPath;
}
/**