Package ch.bailu.gtk.gdk
Klasse AppLaunchContext
java.lang.Object
ch.bailu.gtk.type.Type
ch.bailu.gtk.type.Pointer
ch.bailu.gtk.gobject.Object
ch.bailu.gtk.type.PropertyHolder
ch.bailu.gtk.gio.AppLaunchContext
ch.bailu.gtk.gdk.AppLaunchContext
- Alle implementierten Schnittstellen:
PointerInterface
Handles launching an application in a graphical context.
It is an implementation of `GAppLaunchContext` that provides startup
notification and allows to launch applications on a specific workspace.
## Launching an application
```c
GdkAppLaunchContext *context;
context = gdk_display_get_app_launch_context (display);
gdk_app_launch_context_set_timestamp (gdk_event_get_time (event));
if (!g_app_info_launch_default_for_uri ("http://www.gtk.org", context, &error))
g_warning ("Launching failed: %s\n", error->message);
g_object_unref (context);
```
It is an implementation of `GAppLaunchContext` that provides startup
notification and allows to launch applications on a specific workspace.
## Launching an application
```c
GdkAppLaunchContext *context;
context = gdk_display_get_app_launch_context (display);
gdk_app_launch_context_set_timestamp (gdk_event_get_time (event));
if (!g_app_info_launch_default_for_uri ("http://www.gtk.org", context, &error))
g_warning ("Launching failed: %s\n", error->message);
g_object_unref (context);
```
-
Verschachtelte Klassen - Übersicht
Von Klasse geerbte verschachtelte Klassen/Schnittstellen ch.bailu.gtk.gio.AppLaunchContext
AppLaunchContext.OnLaunched, AppLaunchContext.OnLaunchFailed, AppLaunchContext.OnLaunchStartedVon Klasse geerbte verschachtelte Klassen/Schnittstellen ch.bailu.gtk.gobject.Object
Object.OnBindingTransformFunc, Object.OnDestroyNotify, Object.OnDuplicateFunc, Object.OnNotify, Object.OnToggleNotify, Object.OnWeakNotify -
Feldübersicht
Von Klasse geerbte Felder ch.bailu.gtk.gio.AppLaunchContext
SIGNAL_ON_LAUNCH_FAILED, SIGNAL_ON_LAUNCH_STARTED, SIGNAL_ON_LAUNCHEDVon Klasse geerbte Felder ch.bailu.gtk.gobject.Object
SIGNAL_ON_NOTIFY -
Konstruktorübersicht
Konstruktoren -
Methodenübersicht
Modifizierer und TypMethodeBeschreibungstatic ClassHandlerGets the `GdkDisplay` that @context is for.static intstatic longstatic TypeSystem.TypeSizestatic longstatic TypeSystem.TypeSizevoidsetDesktop(int desktop) Sets the workspace on which applications will be launched.voidSets the icon for applications that are launched with this
context.voidsetIconName(Str icon_name) Sets the icon for applications that are launched with this context.voidsetIconName(String icon_name) Sets the icon for applications that are launched with this context.voidsetTimestamp(int timestamp) Sets the timestamp of @context.Von Klasse geerbte Methoden ch.bailu.gtk.gio.AppLaunchContext
getDisplay, getEnvironment, getStartupNotifyId, launchFailed, launchFailed, onLaunched, onLaunchFailed, onLaunchStarted, setenv, setenv, unsetenv, unsetenvVon Klasse geerbte Methoden ch.bailu.gtk.type.PropertyHolder
getBooleanProperty, getIntProperty, getObjectProperty, getStringProperty, getStrProperty, setBooleanProperty, setIntProperty, setObjectProperty, setStringProperty, setStrPropertyVon Klasse geerbte Methoden ch.bailu.gtk.gobject.Object
addToggleRef, bindProperty, bindProperty, bindPropertyFull, bindPropertyFull, bindPropertyWithClosures, bindPropertyWithClosures, compatControl, connect, connect, disconnect, disconnect, dupData, dupData, dupQdata, forceFloating, freezeNotify, get, get, getData, getData, getProperty, getProperty, getQdata, interfaceFindProperty, interfaceInstallProperty, isFloating, notify, notify, notifyByPspec, onNotify, ref, refSink, removeToggleRef, replaceData, replaceData, replaceQdata, runDispose, set, set, setData, setData, setDataFull, setDataFull, setProperty, setProperty, setQdata, setQdataFull, stealData, stealData, stealQdata, takeRef, thawNotify, unref, watchClosure, weakRef, weakUnrefVon Klasse geerbte Methoden ch.bailu.gtk.type.Pointer
asCPointer, cast, connectSignal, disconnectSignals, disconnectSignals, equals, hashCode, throwIfNull, throwNullPointerException, toString, unregisterCallbacks, unregisterCallbacksVon Klasse geerbte Methoden ch.bailu.gtk.type.Type
asCPointer, asCPointer, asCPointerNotNull, asJnaPointer, asJnaPointer, asPointer, asPointer, cast, cast, throwIfNullVon Klasse geerbte Methoden java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitVon Schnittstelle geerbte Methoden ch.bailu.gtk.type.PointerInterface
asCPointerNotNull, asJnaPointer, asPointer, isNotNull, isNull
-
Konstruktordetails
-
AppLaunchContext
-
-
Methodendetails
-
getClassHandler
-
getDisplay
Gets the `GdkDisplay` that @context is for.- Gibt zurück:
- the display of @context
-
setDesktop
public void setDesktop(int desktop) Sets the workspace on which applications will be launched.
This only works when running under a window manager that
supports multiple workspaces, as described in the
[Extended Window Manager Hints](http://www.freedesktop.org/Standards/wm-spec).
Specifically this sets the `_NET_WM_DESKTOP` property described
in that spec.
This only works when using the X11 backend.
When the workspace is not specified or @desktop is set to -1,
it is up to the window manager to pick one, typically it will
be the current workspace.- Parameter:
desktop- the number of a workspace, or -1
-
setIcon
Sets the icon for applications that are launched with this
context.
Window Managers can use this information when displaying startup
notification.
See also [method@Gdk.AppLaunchContext.set_icon_name].- Parameter:
icon- a `GIcon`
-
setIconName
Sets the icon for applications that are launched with this context.
The @icon_name will be interpreted in the same way as the Icon field
in desktop files. See also [method@Gdk.AppLaunchContext.set_icon].
If both @icon and @icon_name are set, the @icon_name takes priority.
If neither @icon or @icon_name is set, the icon is taken from either
the file that is passed to launched application or from the `GAppInfo`
for the launched application itself.- Parameter:
icon_name- an icon name
-
setIconName
Sets the icon for applications that are launched with this context.
The @icon_name will be interpreted in the same way as the Icon field
in desktop files. See also [method@Gdk.AppLaunchContext.set_icon].
If both @icon and @icon_name are set, the @icon_name takes priority.
If neither @icon or @icon_name is set, the icon is taken from either
the file that is passed to launched application or from the `GAppInfo`
for the launched application itself.- Parameter:
icon_name- an icon name
-
setTimestamp
public void setTimestamp(int timestamp) Sets the timestamp of @context.
The timestamp should ideally be taken from the event that
triggered the launch.
Window managers can use this information to avoid moving the
focus to the newly launched application when the user is busy
typing in another window. This is also known as 'focus stealing
prevention'.- Parameter:
timestamp- a timestamp
-
getTypeID
public static long getTypeID() -
getParentTypeID
public static long getParentTypeID() -
getTypeSize
-
getParentTypeSize
-
getInstanceSize
public static int getInstanceSize()
-