Class ThemedIcon
GThemedIcon is an implementation of Icon that supports icon
themes.
GThemedIcon contains a list of all of the icons present in an icon
theme, so that icons can be looked up quickly. GThemedIcon does
not provide actual pixmaps for icons, just the icon names.
Ideally something like org.gnome.gtk.IconTheme.chooseIcon should be used to
resolve the list of names so that fallback icons work nicely with
themes that inherit other themes.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic classThemedIcon.Builder<B extends ThemedIcon.Builder<B>>Inner class implementing a builder pattern to construct a GObject with properties.static classNested classes/interfaces inherited from class GObject
GObject.NotifyCallback, GObject.ObjectClassNested classes/interfaces inherited from interface Icon
Icon.Icon$Impl, Icon.IconIface -
Constructor Summary
ConstructorsConstructorDescriptionCreate a new ThemedIcon.ThemedIcon(MemorySegment address) Create a ThemedIcon instance for the provided memory address.ThemedIcon(String iconname) Creates a new themed icon foriconname. -
Method Summary
Modifier and TypeMethodDescriptionvoidappendName(String iconname) Append a name to the list of icons from withinicon.protected ThemedIconasParent()Return this instance as if it were its parent type.static ThemedIcon.Builder<? extends ThemedIcon.Builder> builder()AThemedIcon.Builderobject constructs aThemedIconwith the specified properties.static ThemedIconCreates a new themed icon foriconnames.static MemoryLayoutThe memory layout of the native struct.String[]getNames()Gets the names of icons from withinicon.static @Nullable TypegetType()Get the GType of the ThemedIcon class.voidprependName(String iconname) Prepend a name to the list of icons from withinicon.static ThemedIconwithDefaultFallbacks(String iconname) Creates a new themed icon foriconname,and all the names that can be created by shorteningiconnameat '-' characters.Methods inherited from class 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, 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, withPropertiesMethods inherited from class TypeInstance
callParent, callParent, cast, getPrivate, readGClass, writeGClassMethods inherited from class ProxyInstance
equals, handle, hashCodeMethods inherited from class Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface Icon
equal, hash, serialize, serializeToString
-
Constructor Details
-
ThemedIcon
Create a ThemedIcon instance for the provided memory address.- Parameters:
address- the memory address of the native object
-
ThemedIcon
Creates a new themed icon foriconname.- Parameters:
iconname- a string containing an icon name.
-
ThemedIcon
public ThemedIcon()Create a new ThemedIcon.
-
-
Method Details
-
getType
-
getMemoryLayout
The memory layout of the native struct.- Returns:
- the memory layout
-
asParent
Return this instance as if it were its parent type. Comparable to the Javasuperkeyword, but ensures the parent typeclass is also used in native code. -
fromNames
Creates a new themed icon foriconnames.- Parameters:
iconnames- an array of strings containing icon names.- Returns:
- a new
GThemedIcon
-
withDefaultFallbacks
Creates a new themed icon for
iconname,and all the names that can be created by shorteningiconnameat '-' characters.In the following example,
icon1andicon2are equivalent:const char *names[] = { "gnome-dev-cdrom-audio", "gnome-dev-cdrom", "gnome-dev", "gnome" }; icon1 = g_themed_icon_new_from_names (names, 4); icon2 = g_themed_icon_new_with_default_fallbacks ("gnome-dev-cdrom-audio");- Parameters:
iconname- a string containing an icon name- Returns:
- a new
GThemedIcon.
-
appendName
Append a name to the list of icons from within
icon.Note that doing so invalidates the hash computed by prior calls to g_icon_hash().
- Parameters:
iconname- name of icon to append to list of icons from withinicon.
-
getNames
-
prependName
Prepend a name to the list of icons from within
icon.Note that doing so invalidates the hash computed by prior calls to g_icon_hash().
- Parameters:
iconname- name of icon to prepend to list of icons from withinicon.- Since:
- 2.18
-
builder
AThemedIcon.Builderobject constructs aThemedIconwith the specified properties. Use the variousset...()methods to set properties, and finish construction withThemedIcon.Builder.build().- Returns:
- the builder object
-