Searched defs:cellRect (Results 1 - 3 of 3) 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 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...]
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...]

Completed in 42 milliseconds