Package org.gnome.gio
Class ThemedIcon
java.lang.Object
io.github.jwharm.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
Modifier and TypeClassDescriptionstatic class
ThemedIcon.Builder<B extends ThemedIcon.Builder<B>>
Inner class implementing a builder pattern to construct a GObject with properties.static class
Nested classes/interfaces inherited from class org.gnome.gobject.GObject
GObject.NotifyCallback, GObject.ObjectClass
Nested classes/interfaces inherited from interface org.gnome.gio.Icon
Icon.IconIface, Icon.IconImpl
-
Constructor Summary
ConstructorDescriptionThemedIcon
(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 TypeMethodDescriptionvoid
appendName
(String iconname) Append a name to the list of icons from within this ThemedIcon.protected ThemedIcon
asParent()
Returns this instance as if it were its parent type.static ThemedIcon.Builder
<? extends ThemedIcon.Builder> builder()
AThemedIcon.Builder
object constructs aThemedIcon
with the specified properties.static ThemedIcon
Creates a new themed icon foriconnames
.String[]
getNames()
Gets the names of icons from within this ThemedIcon.static Type
getType()
Get the GType of the ThemedIcon classvoid
prependName
(String iconname) Prepend a name to the list of icons from within this ThemedIcon.static ThemedIcon
withDefaultFallbacks
(String iconname) Creates a new themed icon foriconname
, and all the names that can be created by shorteningiconname
at '-' 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, 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
-
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.
-
-
Method Details
-
getType
-
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. -
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 shorteningiconname
at '-' characters.In the following example,
icon1
andicon2
are 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 this ThemedIcon.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 within this ThemedIcon.
-
getNames
Gets the names of icons from within this ThemedIcon.- Returns:
- a list of icon names.
-
prependName
Prepend a name to the list of icons from within this ThemedIcon.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 within this ThemedIcon.
-
builder
AThemedIcon.Builder
object constructs aThemedIcon
with the specified properties. Use the variousset...()
methods to set properties, and finish construction withThemedIcon.Builder.build()
.
-