Searched defs:tabInsets (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicTabbedPaneUI.java72 protected Insets tabInsets; field in class:BasicTabbedPaneUI
369 tabInsets = UIManager.getInsets("TabbedPane.tabInsets");
386 if (tabInsets == null) tabInsets = new Insets(0,4,1,4);
398 tabInsets = null;
688 Insets tabInsets = getTabInsets(tabPane.getTabPlacement(), tab);
689 int cellHeight = maxTabHeight - tabInsets.top - tabInsets.bottom;
691 (cellHeight - pref.height) / 2 + tabInsets
[all...]
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaTabbedPaneCopyFromBasicUI.java65 protected Insets tabInsets; field in class:AquaTabbedPaneCopyFromBasicUI
364 tabInsets = UIManager.getInsets("TabbedPane.tabInsets");
385 tabInsets = null;
657 final Insets tabInsets = getTabInsets(tabPane.getTabPlacement(), tab);
658 final int cellHeight = maxTabHeight - tabInsets.top - tabInsets.bottom;
659 return c.getBaseline(pref.width, pref.height) + (cellHeight - pref.height) / 2 + tabInsets.top;
1608 final Insets tabInsets = getTabInsets(tabPlacement, tabIndex);
1609 height += tabInsets
[all...]

Completed in 389 milliseconds