Class Application
- All Implemented Interfaces:
Proxy
,ActionGroup
,ActionMap
AdwApplication
handles library initialization by calling Adw.init()
in the
default Gio.Application::startup
signal handler, in turn chaining up
as required by Application
. Therefore, any subclass of
AdwApplication
should always chain up its startup
handler before using
any Adwaita or GTK API.
Automatic Resources
AdwApplication
will automatically load stylesheets located in the
application's resource base path (see
Application.setResourceBasePath(java.lang.String)
, if they're present.
They can be used to add custom styles to the application, as follows:
style.css
contains styles that are always present.
style-dark.css
contains styles only used whenStyleManager:dark
isTRUE
.
style-hc.css
contains styles used when the system high contrast preference is enabled.
style-hc-dark.css
contains styles used when the system high contrast preference is enabled andStyleManager:dark
isTRUE
.
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic class
static class
Application.Builder<B extends Application.Builder<B>>
Inner class implementing a builder pattern to construct a GObject with properties.Nested classes/interfaces inherited from class org.gnome.gtk.Application
Application.QueryEndCallback, Application.WindowAddedCallback, Application.WindowRemovedCallback
Nested classes/interfaces inherited from class org.gnome.gio.Application
Application.ActivateCallback, Application.CommandLineCallback, Application.HandleLocalOptionsCallback, Application.NameLostCallback, Application.OpenCallback, Application.ShutdownCallback, Application.StartupCallback
Nested classes/interfaces inherited from class org.gnome.gobject.GObject
GObject.NotifyCallback, GObject.ObjectClass
Nested classes/interfaces inherited from interface org.gnome.gio.ActionGroup
ActionGroup.ActionAddedCallback, ActionGroup.ActionEnabledChangedCallback, ActionGroup.ActionGroupImpl, ActionGroup.ActionGroupInterface, ActionGroup.ActionRemovedCallback, ActionGroup.ActionStateChangedCallback
Nested classes/interfaces inherited from interface org.gnome.gio.ActionMap
ActionMap.ActionMapImpl, ActionMap.ActionMapInterface
-
Constructor Summary
ConstructorDescriptionApplication
(@Nullable String applicationId, Set<ApplicationFlags> flags) Creates a newAdwApplication
.Application
(@Nullable String applicationId, ApplicationFlags... flags) Creates a newAdwApplication
.Application
(MemorySegment address) Create a Application proxy instance for the provided memory address. -
Method Summary
Modifier and TypeMethodDescriptionprotected Application
asParent()
Returns this instance as if it were its parent type.static Application.Builder
<? extends Application.Builder> builder()
AApplication.Builder
object constructs aApplication
with the specified properties.static MemoryLayout
The memory layout of the native struct.Gets the style manager for this Application.static Type
getType()
Get the GType of the Application classMethods inherited from class org.gnome.gtk.Application
addWindow, emitQueryEnd, emitWindowAdded, emitWindowRemoved, getAccelsForAction, getActionsForAccel, getActiveWindow, getMenubar, getMenuById, getWindowById, getWindows, inhibit, inhibit, listActionDescriptions, onQueryEnd, onWindowAdded, onWindowRemoved, removeWindow, setAccelsForAction, setMenubar, uninhibit, windowAdded, windowRemoved
Methods inherited from class org.gnome.gio.Application
activate, addMainOption, addMainOption, addMainOptionEntries, addOptionGroup, addPlatformData, afterEmit, beforeEmit, bindBusyProperty, commandLine, dbusRegister, dbusUnregister, emitActivate, emitCommandLine, emitHandleLocalOptions, emitNameLost, emitOpen, emitShutdown, emitStartup, getApplicationId, getDbusConnection, getDbusObjectPath, getDefault, getFlags, getInactivityTimeout, getIsBusy, getIsRegistered, getIsRemote, getResourceBasePath, getVersion, handleLocalOptions, hold, idIsValid, localCommandLine, markBusy, nameLost, onActivate, onCommandLine, onHandleLocalOptions, onNameLost, onOpen, onShutdown, onStartup, open, quit, quitMainloop, register, release, run, runMainloop, sendNotification, setActionGroup, setApplicationId, setDefault, setFlags, setFlags, setInactivityTimeout, setOptionContextDescription, setOptionContextParameterString, setOptionContextSummary, setResourceBasePath, setVersion, shutdown, startup, unbindBusyProperty, unmarkBusy, withdrawNotification
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
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.gnome.gio.ActionGroup
actionAdded, actionEnabledChanged, actionRemoved, actionStateChanged, activateAction, changeActionState, emitActionAdded, emitActionEnabledChanged, emitActionRemoved, emitActionStateChanged, getActionEnabled, getActionParameterType, getActionState, getActionStateHint, getActionStateType, hasAction, listActions, onActionAdded, onActionEnabledChanged, onActionRemoved, onActionStateChanged, queryAction
Methods inherited from interface org.gnome.gio.ActionMap
addAction, addActionEntries, lookupAction, removeAction, removeActionEntries
-
Constructor Details
-
Application
Create a Application proxy instance for the provided memory address.- Parameters:
address
- the memory address of the native object
-
Application
Creates a newAdwApplication
.If
application_id
is notNULL
, then it must be valid. SeeApplication.idIsValid(java.lang.String)
.If no application ID is given then some features (most notably application uniqueness) will be disabled.
- Parameters:
applicationId
- The application IDflags
- The application flags
-
Application
Creates a newAdwApplication
.If
application_id
is notNULL
, then it must be valid. SeeApplication.idIsValid(java.lang.String)
.If no application ID is given then some features (most notably application uniqueness) will be disabled.
- Parameters:
applicationId
- The application IDflags
- The application flags
-
-
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.- Overrides:
asParent
in classApplication
-
getStyleManager
Gets the style manager for this Application.This is a convenience property allowing to access
AdwStyleManager
through property bindings or expressions.- Returns:
- the style manager
-
builder
AApplication.Builder
object constructs aApplication
with the specified properties. Use the variousset...()
methods to set properties, and finish construction withApplication.Builder.build()
.
-