Package org.gnome.gio
Class ThemedIcon
java.lang.Object
org.javagi.base.ProxyInstance
org.gnome.gobject.TypeInstance
org.gnome.gobject.GObject
org.gnome.gio.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 org.gnome.gobject.GObject
GObject.NotifyCallback, GObject.ObjectClassNested classes/interfaces inherited from interface org.gnome.gio.Icon
Icon.Icon$Impl, Icon.IconIface -
Constructor Summary
ConstructorsConstructorDescriptionCreates a new ThemedIcon.ThemedIcon(MemorySegment address) Create a ThemedIcon proxy 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()Returns 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.String[]getNames()Gets the names of icons from withinicon.static @Nullable TypegetType()Get the GType of the ThemedIcon classvoidprependName(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 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, getMemoryLayout, 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 org.gnome.gobject.TypeInstance
callParent, callParent, cast, getPrivate, readGClass, writeGClassMethods inherited from class org.javagi.base.ProxyInstance
equals, handle, hashCodeMethods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.gnome.gio.Icon
equal, hash, serialize, serializeToString
-
Constructor Details
-
ThemedIcon
Create a ThemedIcon proxy 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()Creates a new ThemedIcon.
-
-
Method Details
-
getType
-
asParent
Returns this instance as if it were its parent type. This is mostly synonymous to the Javasuperkeyword, 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. -
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 foriconname,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 withinicon.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 withinicon.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
-