summaryrefslogtreecommitdiff
path: root/vendor/github.com/gotk3/gotk3/gdk/window_no_x11.go
blob: 72c56657d2dd4016b568b5edb77defab3186a53e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// +build !linux no_x11

package gdk

func (v *Window) MoveToCurrentDesktop() {
}

// 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 0
}

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