Class Application
- All Implemented Interfaces:
ActionGroup,ActionMap,Proxy
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
Shortcuts Dialog
If there's a resource located at shortcuts-dialog.ui which defines an
ShortcutsDialog with the ID shortcuts_dialog, AdwApplication
will set up an app.shortcuts action that creates and presents this dialog,
as well as a Ctrl? accelerator for it.
Stylesheet
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.csscontains styles that are always present.
style-dark.csscontains styles only used whenStyleManager:darkisTRUE.
style-hc.csscontains styles used when the system high contrast preference is enabled.
style-hc-dark.csscontains styles used when the system high contrast preference is enabled andStyleManager:darkisTRUE.
:::note
style.css can contain styles for dark and high contrast appearance as
well, using media queries:
prefers-color-scheme: darkfor styles used only for dark appearance.prefers-contrast: morefor styles used only when the system high contrast preference is enabled.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic classstatic classApplication.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.WindowRemovedCallbackNested classes/interfaces inherited from class org.gnome.gio.Application
Application.ActivateCallback, Application.CommandLineCallback, Application.HandleLocalOptionsCallback, Application.NameLostCallback, Application.OpenCallback, Application.ShutdownCallback, Application.StartupCallbackNested classes/interfaces inherited from class org.gnome.gobject.GObject
GObject.NotifyCallback, GObject.ObjectClassNested classes/interfaces inherited from interface org.gnome.gio.ActionGroup
ActionGroup.ActionAddedCallback, ActionGroup.ActionEnabledChangedCallback, ActionGroup.ActionGroup$Impl, ActionGroup.ActionGroupInterface, ActionGroup.ActionRemovedCallback, ActionGroup.ActionStateChangedCallbackNested classes/interfaces inherited from interface org.gnome.gio.ActionMap
ActionMap.ActionMap$Impl, ActionMap.ActionMapInterface -
Constructor Summary
ConstructorsConstructorDescriptionCreates a new Application.Application(@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 ApplicationasParent()Returns this instance as if it were its parent type.static Application.Builder<? extends Application.Builder> builder()AApplication.Builderobject constructs aApplicationwith the specified properties.static MemoryLayoutThe memory layout of the native struct.Gets the style manager forself.static @Nullable TypegetType()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, windowRemovedMethods 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, withdrawNotificationMethods 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, 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.ActionGroup
actionAdded, actionEnabledChanged, actionRemoved, actionStateChanged, activateAction, changeActionState, emitActionAdded, emitActionEnabledChanged, emitActionRemoved, emitActionStateChanged, getActionEnabled, getActionParameterType, getActionState, getActionStateHint, getActionStateType, hasAction, listActions, onActionAdded, onActionEnabledChanged, onActionRemoved, onActionStateChanged, queryActionMethods 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_idis 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_idis 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
public Application()Creates a new Application.
-
-
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 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.- Overrides:
asParentin classApplication
-
getStyleManager
Gets the style manager forself.This is a convenience property allowing to access
AdwStyleManagerthrough property bindings or expressions.- Returns:
- the style manager
-
builder
AApplication.Builderobject constructs aApplicationwith the specified properties. Use the variousset...()methods to set properties, and finish construction withApplication.Builder.build().- Returns:
- the builder object
-