mirror of https://github.com/subgraph/fw-daemon
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
1.0 KiB
28 lines
1.0 KiB
// +build linux
|
|
// +build !no_x11
|
|
|
|
package gdk
|
|
|
|
// #cgo pkg-config: gdk-x11-3.0
|
|
// #include <gdk/gdk.h>
|
|
// #include <gdk/gdkx.h>
|
|
import "C"
|
|
|
|
// MoveToCurrentDesktop is a wrapper around gdk_x11_window_move_to_current_desktop().
|
|
// It only works on GDK versions compiled with X11 support - its return value can't be used if WorkspaceControlSupported returns false
|
|
func (v *Window) MoveToCurrentDesktop() {
|
|
C.gdk_x11_window_move_to_current_desktop(v.native())
|
|
}
|
|
|
|
// GetDesktop is a wrapper around gdk_x11_window_get_desktop().
|
|
// It only works on GDK versions compiled with X11 support - its return value can't be used if WorkspaceControlSupported returns false
|
|
func (v *Window) GetDesktop() uint32 {
|
|
return uint32(C.gdk_x11_window_get_desktop(v.native()))
|
|
}
|
|
|
|
// MoveToDesktop is a wrapper around gdk_x11_window_move_to_desktop().
|
|
// It only works on GDK versions compiled with X11 support - its return value can't be used if WorkspaceControlSupported returns false
|
|
func (v *Window) MoveToDesktop(d uint32) {
|
|
C.gdk_x11_window_move_to_desktop(v.native(), C.guint32(d))
|
|
}
|