Gdk.AppLaunchContext¶
- Subclasses:
None
Methods¶
- Inherited:
- Structs:
|
|
|
|
|
|
|
|
|
Virtual Methods¶
- Inherited:
Properties¶
Name |
Type |
Flags |
Short Description |
---|---|---|---|
r/w/co |
Signals¶
- Inherited:
Fields¶
- Inherited:
Class Details¶
- class Gdk.AppLaunchContext(**kwargs)¶
- Bases:
- Abstract:
No
GdkAppLaunchContext
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
Gdk.AppLaunchContext
*context;context =
Gdk.Display.get_app_launch_context
(display);Gdk.AppLaunchContext.set_timestamp
(Gdk.Event.get_time
(event));if (!:obj:Gio.AppInfo.launch_default_for_uri (“http://www.gtk.org”, context, &error)) g_warning (“Launching failed: %s\n”, error->message);
GObject.Object.unref
(context); ```- get_display()[source]¶
- Returns:
the display of self
- Return type:
Gets the
GdkDisplay
that self is for.
- set_desktop(desktop)[source]¶
- Parameters:
desktop (
int
) – the number of a workspace, or -1
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. 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.
- set_icon(icon)[source]¶
-
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].
- set_icon_name(icon_name)[source]¶
-
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.
- set_timestamp(timestamp)[source]¶
- Parameters:
timestamp (
int
) – a timestamp
Sets the timestamp of self.
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’.
Property Details¶
- Gdk.AppLaunchContext.props.display¶
- Name:
display
- Type:
- Default Value:
- Flags:
The display that the
GdkAppLaunchContext
is on.