summaryrefslogtreecommitdiff
path: root/vendor/github.com/gotk3/gotk3/gdk/window_x11.go
blob: 5161c8ce161d597eefcc89d7161c8b2e1ea3dd49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// +build linux
// +build !no_x11

package gdk

// #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))
}