Searched refs:cellRect (Results 1 - 7 of 7) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/
H A DSynthTableUI.java570 Rectangle cellRect;
575 cellRect = table.getCellRect(row, cMin, false);
579 cellRect.width = columnWidth - columnMargin;
581 paintCell(context, g, cellRect, row, column);
583 cellRect.x += columnWidth;
588 cellRect = table.getCellRect(row, cMin, false);
592 cellRect.width = columnWidth - columnMargin;
593 paintCell(context, g, cellRect, row, cMin);
598 cellRect.width = columnWidth - columnMargin;
599 cellRect
674 paintCell(SynthContext context, Graphics g, Rectangle cellRect, int row, int column) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicTableUI.java553 Rectangle cellRect = table.getCellRect(leadRow, leadColumn, false);
554 if (cellRect != null) {
555 table.scrollRectToVisible(cellRect);
582 Rectangle cellRect = table.getCellRect(leadRow, leadColumn, false);
583 if (cellRect != null) {
584 table.scrollRectToVisible(cellRect);
2005 Rectangle cellRect;
2010 cellRect = table.getCellRect(row, cMin, false);
2014 cellRect.width = columnWidth - columnMargin;
2016 paintCell(g, cellRect, ro
2105 paintCell(Graphics g, Rectangle cellRect, int row, int column) argument
[all...]
H A DBasicTableHeaderUI.java644 Rectangle cellRect = header.getHeaderRect(ltr ? cMin : cMax);
650 cellRect.width = columnWidth;
652 paintCell(g, cellRect, column);
654 cellRect.x += columnWidth;
660 cellRect.width = columnWidth;
662 paintCell(g, cellRect, column);
664 cellRect.x += columnWidth;
708 private void paintCell(Graphics g, Rectangle cellRect, int columnIndex) { argument
710 rendererPane.paintComponent(g, component, header, cellRect.x, cellRect
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/treetable/
H A DJTreeTable.java171 Rectangle cellRect = getCellRect(realEditingRow(),
174 component.setBounds(cellRect);
/openjdk7/jdk/src/share/classes/javax/swing/table/
H A DJTableHeader.java415 Rectangle cellRect = getHeaderRect(column);
417 p.translate(-cellRect.x, -cellRect.y);
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJTable.java2464 Rectangle cellRect = getCellRect(rowIndex, columnIndex, false);
2465 if (cellRect != null) {
2466 scrollRectToVisible(cellRect);
3396 Rectangle cellRect = getCellRect(hitRowIndex, hitColumnIndex, false);
3397 p.translate(-cellRect.x, -cellRect.y);
4903 Rectangle cellRect = getCellRect(row, col, true);
4905 if (cellRect.y == visibleRect.y) {
5021 Rectangle cellRect;
5032 // cellRect wil
[all...]
/openjdk7/jdk/src/share/classes/sun/swing/
H A DFilePane.java189 Rectangle cellRect = detailsTable.getCellRect(index,
191 detailsTable.scrollRectToVisible(cellRect);

Completed in 3547 milliseconds