forked from proxypoke/i3ipc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tree.go
50 lines (45 loc) · 1.3 KB
/
tree.go
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
// Author: slowpoke <mail plus git at slowpoke dot io>
// Repository: https://github.com/proxypoke/i3ipc
//
// This program is free software under the terms of the
// Do What The Fuck You Want To Public License.
// It comes without any warranty, to the extent permitted by
// applicable law. For a copy of the license, see COPYING or
// head to http://sam.zoy.org/wtfpl/COPYING.
package i3ipc
import (
"encoding/json"
)
// Struct representing a Node in the i3 tree. For documentation of the fields,
// refer to http://i3wm.org/docs/ipc.html#_tree_reply.
type I3Node struct {
Id int32
Name string
Border string
Current_Border_Width int32
Layout string
Percent float64
Rect Rect
Window_Rect Rect
Geometry Rect
Window int32
Urgent bool
Focused bool
Nodes []I3Node
}
// GetTree fetches the layout tree.
func (self *IPCSocket) GetTree() (root I3Node, err error) {
json_reply, err := self.Raw(I3GetTree, "")
if err != nil {
return
}
err = json.Unmarshal(json_reply, &root)
if err == nil {
return
}
// For an explanation of this error silencing, see GetOutputs().
if _, ok := err.(*json.UnmarshalTypeError); ok {
err = nil
}
return
}