Lines Matching defs:row

165     protected void paintHorizontalPartOfLeg(final Graphics g, final Rectangle clipBounds, final Insets insets, final Rectangle bounds, final TreePath path, final int row, final boolean isExpanded, final boolean hasBeenExpanded, final boolean isLeaf) {
167 super.paintHorizontalPartOfLeg(g, clipBounds, insets, bounds, path, row, isExpanded, hasBeenExpanded, isLeaf);
182 * Paints the expand (toggle) part of a row. The reciever should NOT modify <code>clipBounds</code>, or
185 protected void paintExpandControl(final Graphics g, final Rectangle clipBounds, final Insets insets, final Rectangle bounds, final TreePath path, final int row, final boolean isExpanded, final boolean hasBeenExpanded, final boolean isLeaf) {
199 super.paintExpandControl(g, clipBounds, insets, bounds, path, row, isExpanded, hasBeenExpanded, isLeaf);
206 super.paintExpandControl(g, clipBounds, insets, bounds, path, row, isExpanded, hasBeenExpanded, isLeaf);
225 final int height = icon.getIconHeight(); // use the icon height so we don't get drift we modify the bounds (by changing row height)
280 * Returning true signifies a mouse event on the node should toggle the selection of only the row under mouse.
529 // in the special case where there is only one row selected,
549 void expandNode(final int row, final boolean recursive) {
550 final TreePath path = getPathForRow(tree, row);
556 expandAllNodes(path, row + 1);
568 void collapseNode(final int row, final boolean recursive) {
569 final TreePath path = getPathForRow(tree, row);
573 collapseAllNodes(path, row + 1);