Package org.gnome.pango
Class FontFace
java.lang.Object
io.github.jwharm.javagi.base.ProxyInstance
org.gnome.gobject.TypeInstance
org.gnome.gobject.GObject
org.gnome.pango.FontFace
- All Implemented Interfaces:
Proxy
- Direct Known Subclasses:
FontFace.FontFaceImpl
A
PangoFontFace
is used to represent a group of fonts with
the same family, slant, weight, and width, but varying sizes.-
Nested Class Summary
Modifier and TypeClassDescriptionstatic class
FontFace.Builder<B extends FontFace.Builder<B>>
Inner class implementing a builder pattern to construct a GObject with properties.static class
static class
The FontFaceImpl type represents a native instance of the abstract FontFace class.Nested classes/interfaces inherited from class org.gnome.gobject.GObject
GObject.NotifyCallback, GObject.ObjectClass
-
Constructor Summary
ConstructorDescriptionFontFace
(MemorySegment address) Create a FontFace proxy instance for the provided memory address. -
Method Summary
Modifier and TypeMethodDescriptionprotected FontFace
asParent()
Returns this instance as if it were its parent type.static FontFace.Builder
<? extends FontFace.Builder> builder()
AFontFace.Builder
object constructs aFontFace
with the specified properties.describe()
Returns a font description that matches the face.Gets a name representing the style of this face.Gets thePangoFontFamily
that this FontFace belongs to.static MemoryLayout
The memory layout of the native struct.static Type
getType()
Get the GType of the FontFace classboolean
Returns whether aPangoFontFace
is synthesized.void
List the available sizes for a font.Methods inherited from class org.gnome.gobject.GObject
addToggleRef, addWeakPointer, bindProperty, bindProperty, bindProperty, bindPropertyFull, bindPropertyFull, bindPropertyWithClosures, bindPropertyWithClosures, compatControl, connect, connect, connect, constructed, disconnect, dispatchPropertiesChanged, dispose, dupData, dupQdata, emit, emitNotify, finalize_, forceFloating, freezeNotify, get, getData, getProperty, getProperty, getProperty, getQdata, getv, interfaceFindProperty, interfaceInstallProperty, interfaceListProperties, isFloating, newInstance, newInstance, newInstance, newInstance, newv, notify_, notify_, notifyByPspec, onNotify, ref, refSink, removeToggleRef, removeWeakPointer, replaceData, replaceQdata, runDispose, set, setData, setDataFull, setProperty, setProperty, setProperty, setQdata, setQdataFull, setv, stealData, stealQdata, takeRef, thawNotify, unref, watchClosure, weakRef, weakUnref, withProperties
Methods inherited from class org.gnome.gobject.TypeInstance
callParent, callParent, getPrivate, readGClass, writeGClass
Methods inherited from class io.github.jwharm.javagi.base.ProxyInstance
equals, handle, hashCode
-
Constructor Details
-
FontFace
Create a FontFace proxy instance for the provided memory address.- Parameters:
address
- the memory address of the native object
-
-
Method Details
-
getType
-
getMemoryLayout
The memory layout of the native struct.- Returns:
- the memory layout
-
asParent
Returns this instance as if it were its parent type. This is mostly synonymous to the Javasuper
keyword, but will set the native typeclass function pointers to the parent type. When overriding a native virtual method in Java, "chaining up" withsuper.methodName()
doesn't work, because it invokes the overridden function pointer again. To chain up, callasParent().methodName()
. This will call the native function pointer of this virtual method in the typeclass of the parent type. -
describe
Returns a font description that matches the face.The resulting font description will have the family, style, variant, weight and stretch of the face, but its size field will be unset.
- Returns:
- a newly-created
PangoFontDescription
structure holding the description of the face. UseFontDescription.free()
to free the result.
-
getFaceName
Gets a name representing the style of this face.Note that a font family may contain multiple faces with the same name (e.g. a variable and a non-variable face for the same style).
- Returns:
- the face name for the face. This string is owned by the face object and must not be modified or freed.
-
getFamily
Gets thePangoFontFamily
that this FontFace belongs to.- Returns:
- the
PangoFontFamily
-
isSynthesized
public boolean isSynthesized()Returns whether aPangoFontFace
is synthesized.This will be the case if the underlying font rendering engine creates this face from another face, by shearing, emboldening, lightening or modifying it in some other way.
- Returns:
- whether this FontFace is synthesized
-
listSizes
List the available sizes for a font.This is only applicable to bitmap fonts. For scalable fonts, stores
null
at the location pointed to bysizes
and 0 at the location pointed to bynSizes
. The sizes returned are in Pango units and are sorted in ascending order.- Parameters:
sizes
- location to store a pointer to an array of int. This array should be freed with g_free().
-
builder
AFontFace.Builder
object constructs aFontFace
with the specified properties. Use the variousset...()
methods to set properties, and finish construction withFontFace.Builder.build()
.
-