Searched defs:getFont (Results 1 - 25 of 54) sorted by relevance

123

/openjdk7/jdk/src/share/classes/java/awt/
H A DMenuContainer.java34 Font getFont(); method in interface:MenuContainer
H A DFontMetrics.java118 * @see #getFont()
144 public Font getFont() { method in class:FontMetrics
632 "[font=" + getFont() +
H A DGraphics.java234 public abstract Font getFont(); method in class:Graphics
241 * @see java.awt.Graphics#getFont
252 * @see java.awt.Graphics#getFont
257 return getFontMetrics(getFont());
264 * @see java.awt.Graphics#getFont
1173 return getClass().getName() + "[font=" + getFont() + ",color=" + getColor() + "]";
/openjdk7/jdk/src/share/demo/jfc/SampleTree/
H A DSampleData.java78 public Font getFont() { method in class:SampleData
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DStyledDocument.java175 public Font getFont(AttributeSet attr); method in interface:StyledDocument
H A DLabelView.java145 font = doc.getFont(attr);
207 public Font getFont() { method in class:LabelView
H A DTextLayoutStrategy.java378 Font f = getFont(childIndex);
381 Font next = getFont(childIndex);
394 Font getFont(int childIndex) { method in class:TextLayoutStrategy.AttributedSegment
397 return ((GlyphView)child).getFont();
522 return getFont(childIndex);
/openjdk7/jdk/src/share/classes/sun/font/
H A DFontResolver.java49 * a font obtained from getFont().
158 * font family to getFont(), and has no other inherent meaning.
160 * @return a value for consumption by getFont()
161 * @see #getFont
225 public Font getFont(int index, Map attributes) { method in class:FontResolver
H A DFontRunIterator.java62 public PhysicalFont getFont() { method in class:FontRunIterator
H A DTextSource.java65 public abstract Font getFont(); method in class:TextSource
H A DFontFamily.java172 public Font2D getFont(int style) { method in class:FontFamily
214 /* Only to be called if getFont(style) returns null
H A DStandardTextSource.java178 public Font getFont() { method in class:StandardTextSource
/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/
H A DSynthStyle.java837 public Font getFont(SynthContext context) { method in class:SynthStyle
840 return c.getFont();
842 Font cFont = c.getFont();
930 Font font = c.getFont();
961 // NOTE: because getForeground, getBackground and getFont will look
/openjdk7/jdk/src/share/classes/sun/awt/image/
H A DSunVolatileImage.java197 private Font getFont() { method in class:SunVolatileImage
199 return comp.getFont();
212 getFont());
/openjdk7/jdk/src/share/classes/javax/accessibility/
H A DAccessibleComponent.java109 public Font getFont(); method in interface:AccessibleComponent
115 * @see #getFont
124 * @see #getFont
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Graph/src/com/sun/hotspot/igv/graph/
H A DDiagram.java56 public Font getFont() { method in class:Diagram
/openjdk7/jdk/src/share/classes/javax/swing/border/
H A DTitledBorder.java678 protected Font getFont(Component c) { method in class:TitledBorder
683 font = UIManager.getFont("TitledBorder.font");
688 font = c.getFont();
712 this.label.setFont(getFont(c));
/openjdk7/jdk/src/share/classes/javax/swing/plaf/metal/
H A DDefaultMetalTheme.java281 return getFont(CONTROL_TEXT_FONT);
290 return getFont(SYSTEM_TEXT_FONT);
299 return getFont(USER_TEXT_FONT);
311 return getFont(MENU_TEXT_FONT);
320 return getFont(WINDOW_TITLE_FONT);
329 return getFont(SUB_TEXT_FONT);
332 private FontUIResource getFont(int key) { method in class:DefaultMetalTheme
333 return fontDelegate.getFont(key);
369 public FontUIResource getFont(int type) { method in class:DefaultMetalTheme.FontDelegate
386 * <code>Font.getFont(ke
412 public FontUIResource getFont(int type) { method in class:DefaultMetalTheme.WindowsFontDelegate
[all...]
/openjdk7/jdk/src/share/classes/java/awt/font/
H A DGlyphVector.java122 public abstract Font getFont(); method in class:GlyphVector
/openjdk7/jdk/src/share/native/sun/font/layout/
H A DLETableReference.h150 const LEFontInstance* getFont() const { return fFont; } function in class:LETableReference
/openjdk7/jdk/src/share/classes/sun/swing/plaf/synth/
H A DDefaultSynthStyle.java217 public Font getFont(SynthContext state) { method in class:DefaultSynthStyle
218 return getFont(state.getComponent(), state.getRegion(),
222 public Font getFont(JComponent c, Region id, int state) { method in class:DefaultSynthStyle
224 return c.getFont();
226 Font cFont = c.getFont();
249 if (si != null && (font = si.getFont()) != null) {
254 if (si != null && (font = si.getFont()) != null) {
781 public Font getFont() { method in class:DefaultSynthStyle.StateInfo
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXWarningWindow.java216 getFont());
240 Font getFont () { method in class:XWarningWindow
241 return ownerWindow.getFont();
/openjdk7/jdk/src/share/classes/javax/swing/
H A DUIDefaults.java387 public Font getFont(Object key) { method in class:UIDefaults
404 public Font getFont(Object key, Locale l) { method in class:UIDefaults
/openjdk7/jdk/src/share/classes/javax/swing/tree/
H A DDefaultTreeCellEditor.java181 * @see #getFont
193 public Font getFont() { method in class:DefaultTreeCellEditor
226 Font font = getFont();
230 font = renderer.getFont();
232 font = tree.getFont();
630 public Font getFont() { method in class:DefaultTreeCellEditor.DefaultTextField
631 Font font = super.getFont();
638 if(parent != null && parent.getFont() != null)
639 font = parent.getFont();
656 DefaultTreeCellEditor.this.getFont()
[all...]
H A DDefaultTreeCellRenderer.java390 public Font getFont() { method in class:DefaultTreeCellRenderer
391 Font font = super.getFont();
396 font = tree.getFont();

Completed in 203 milliseconds

123