Lines Matching refs:iconRect

269     protected void paintContents(final Graphics g, final int tabPlacement, final int tabIndex, final Rectangle tabRect, final Rectangle iconRect, final Rectangle textRect, final boolean isSelected) {
300 layoutLabel(tabPlacement, metrics, tabIndex < 0 ? 0 : tabIndex, title, icon, fContentRect, iconRect, textRect, false); // Never give it "isSelected" - ApprMgr handles this
303 transposeRect(iconRect);
317 rotateGraphics(g2d, tabRect, textRect, iconRect, tabPlacement);
326 paintIcon(g, tabPlacement, tabIndex, icon, iconRect, isSelected);
361 protected void rotateGraphics(final Graphics2D g2d, final Rectangle tabRect, final Rectangle textRect, final Rectangle iconRect, final int tabPlacement) {
364 int yIconDiff = 0; // iconRect.y - tabRect.y;
365 int xIconDiff = 0; // (tabRect.x+tabRect.width) - (iconRect.x + iconRect.width);
378 xIconDiff = iconRect.x - tabRect.x;
379 yIconDiff = tabRect.height + tabRect.y - (iconRect.y + iconRect.height);
384 yIconDiff = iconRect.y - tabRect.y;
385 xIconDiff = (tabRect.x + tabRect.width) - (iconRect.x + iconRect.width);
400 iconRect.x = tabRect.x + yIconDiff;
401 iconRect.y = tabRect.y + xIconDiff;
403 tempVal = iconRect.height;
404 iconRect.height = iconRect.width;
405 iconRect.width = tempVal;
412 protected void paintTabNormalFromRect(final Graphics g, final int tabPlacement, final Rectangle tabRect, final int nonRectIndex, final Rectangle iconRect, final Rectangle textRect, final boolean active, final boolean frameActive, final boolean isLeftToRight) {
420 paintContents(g, tabPlacement, nonRectIndex, tabRect, iconRect, textRect, isSelected);