/openjdk7/jdk/src/share/classes/javax/swing/tree/ |
H A D | AbstractLayoutCache.java | 66 protected int rowHeight; field in class:AbstractLayoutCache 139 * @param rowHeight the height of each cell, in pixels 144 public void setRowHeight(int rowHeight) { argument 145 this.rowHeight = rowHeight; 154 return rowHeight; 501 return (rowHeight > 0);
|
H A D | FixedHeightLayoutCache.java | 121 * Sets the height of each cell. If rowHeight is less than or equal to 124 * @param rowHeight the height of each cell, in pixels 126 public void setRowHeight(int rowHeight) { argument 127 if(rowHeight <= 0) 129 if(getRowHeight() != rowHeight) { 130 super.setRowHeight(rowHeight); 155 // Nothing to do here, rowHeight still same, which is all
|
H A D | VariableHeightLayoutCache.java | 149 * @param rowHeight the height of each cell, in pixels 154 public void setRowHeight(int rowHeight) { argument 155 if(rowHeight != getRowHeight()) { 156 super.setRowHeight(rowHeight);
|
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/ |
H A D | SourceCodePanel.java | 64 private int rowHeight; field in class:SourceCodePanel.RowHeader 86 int start = clip.y / rowHeight; 87 int end = start + (clip.height + (rowHeight - 1)) / rowHeight; 95 g.drawString(str, width - strWidth - LINE_NO_SPACE, ascent + rowHeight * i); 99 breakpoint.paintIcon(this, g, LINE_NO_SPACE, rowHeight * i); 105 topFrameCurLine.paintIcon(this, g, LINE_NO_SPACE, rowHeight * i); 127 rowHeight = getFontMetrics(f).getHeight();
|
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/treetable/ |
H A D | JTreeTable.java | 180 * Overridden to pass the new rowHeight to the tree. 182 public void setRowHeight(int rowHeight) { argument 183 super.setRowHeight(rowHeight); 184 if (tree != null && tree.getRowHeight() != rowHeight) { 263 public void setRowHeight(int rowHeight) { argument 264 if (rowHeight > 0) { 265 super.setRowHeight(rowHeight); 267 JTreeTable.this.getRowHeight() != rowHeight) {
|
/openjdk7/jdk/src/share/classes/sun/awt/ |
H A D | VariableGridLayout.java | 200 int rowHeight = (int)(getRowFraction(r) * h); 203 parent.getComponent(i).reshape(x, y, colWidth, rowHeight); 205 y += rowHeight + vgap;
|
/openjdk7/jdk/src/share/classes/javax/swing/ |
H A D | JTextArea.java | 554 if (rowHeight == 0) { 556 rowHeight = metrics.getHeight(); 558 return rowHeight; 642 rowHeight = 0; 666 ",rowHeight=" + rowHeight + 811 private int rowHeight; field in class:JTextArea
|
H A D | TablePrintable.java | 472 int rowHeight = table.getRowHeight(row); 474 clip.height += rowHeight; 480 rowHeight = table.getRowHeight(row); 481 } while (clip.height + rowHeight <= ph);
|
H A D | JTree.java | 179 protected int rowHeight; field in class:JTree 466 /** Bound property name for <code>rowHeight</code>. */ 467 public final static String ROW_HEIGHT_PROPERTY = "rowHeight"; 659 rowHeight = 16; 967 * @param rowHeight the height of each cell, in pixels 972 public void setRowHeight(int rowHeight) argument 974 int oldValue = this.rowHeight; 976 this.rowHeight = rowHeight; 978 firePropertyChange(ROW_HEIGHT_PROPERTY, oldValue, this.rowHeight); [all...] |
H A D | JTable.java | 293 protected int rowHeight; field in class:JTable 850 if (propertyName == "rowHeight") { 915 * Sets the height, in pixels, of all cells to <code>rowHeight</code>, 920 * @param rowHeight new row height 921 * @exception IllegalArgumentException if <code>rowHeight</code> is 928 public void setRowHeight(int rowHeight) { argument 929 if (rowHeight <= 0) { 932 int old = this.rowHeight; 933 this.rowHeight = rowHeight; 975 setRowHeight(int row, int rowHeight) argument 3864 setViewRowHeight(int viewIndex, int rowHeight) argument [all...] |
/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/ |
H A D | SynthTableUI.java | 168 Object rowHeight = style.get(context, "Table.rowHeight"); 169 if (rowHeight != null) { 170 LookAndFeel.installProperty(table, "rowHeight", rowHeight);
|
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/ |
H A D | BasicListUI.java | 476 int rowHeight = list.getFixedCellHeight(); 495 // If rowHeight != -1 the rowHeight is either the max of all cell 501 if (rowHeight == -1) { 502 rowHeight = renderer.getPreferredSize().height; 504 return renderer.getBaseline(Integer.MAX_VALUE, rowHeight) +
|
H A D | BasicTreeUI.java | 364 protected void setRowHeight(int rowHeight) { argument 368 treeState.setRowHeight(rowHeight); 719 LookAndFeel.installProperty(tree, "rowHeight", 720 UIManager.get("Tree.rowHeight")); 1107 int rowHeight = tree.getRowHeight(); 1109 if (rowHeight > 0) { 1110 baseline = renderer.getBaseline(Integer.MAX_VALUE, rowHeight);
|