Searched refs:rootView (Results 1 - 6 of 6) sorted by relevance
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/ |
H A D | BasicTextUI.java | 679 ViewFactory f = rootView.getViewFactory(); 693 rootView.setView(v); 737 rootView.paint(g, alloc); 835 rootView.setView(null); 875 if ((rootView.getViewCount() > 0) && (rootView.getView(0) != null)) { 912 rootView.setSize(d.width - i.left - i.right, d.height - i.top - i.bottom); 917 rootView.setSize(Integer.MAX_VALUE, Integer.MAX_VALUE); 919 d.width = (int) Math.min((long) rootView.getPreferredSpan(View.X_AXIS) + 921 d.height = (int) Math.min((long) rootView 1302 transient RootView rootView = new RootView(); field in class:BasicTextUI [all...] |
H A D | BasicTextAreaUI.java | 193 View rootView = getRootView((JTextComponent)c); 194 if (rootView.getViewCount() > 0) { 198 rootView.getView(0), width - insets.left -
|
H A D | BasicTextFieldUI.java | 119 View rootView = getRootView((JTextComponent)c); 120 if (rootView.getViewCount() > 0) { 125 View fieldView = rootView.getView(0);
|
/openjdk7/jdk/src/share/classes/javax/swing/text/html/ |
H A D | AccessibleHTML.java | 2795 View rootView = getRootView(); 2799 if (rootView != null) { 2800 return getView(rootView, e, start); 2819 View rootView = getRootView(); 2822 if (bounds != null && rootView != null) { 2824 return rootView.modelToView(e.getStartOffset(),
|
H A D | HTMLEditorKit.java | 2149 View rootView = getRootView(editor); 2151 if (rootView != null) { 2152 return getView(rootView, elem, start);
|
/openjdk7/jdk/src/share/classes/javax/swing/text/ |
H A D | JTextComponent.java | 2821 View rootView = ui.getRootView(JTextComponent.this); 2822 if (rootView != null) { 2823 rootView.setSize(alloc.width, alloc.height); 2825 Shape bounds = rootView.modelToView(i, 3705 View rootView = ui.getRootView(JTextComponent.this); 3706 if (rootView != null) { 3707 Shape bounds = rootView.modelToView(startIndex,
|
Completed in 779 milliseconds