blob: e136008ab1fd7a0d5d4535891566249b6b17210a (
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
27
28
29
30
31
|
namespace AstalSway {
public class Container : Node {
public bool sticky { get; private set; }
public bool floating { get; private set; }
public bool focused { get; private set; }
public string border { get; private set; }
public int border_width { get; private set; }
public int fullscreen_mode { get; private set; }
public float percent { get; private set; }
public Container() {
node_type = NodeType.CONTAINER;
}
internal override void sync(Json.Object obj) {
border = obj.get_string_member("border");
border_width = (int)obj.get_int_member("current_border_width");
sticky = obj.get_boolean_member("sticky");
floating = obj.get_string_member("type") == "floating_con";
fullscreen_mode = (int)obj.get_int_member("fullscreen_mode");
percent = (float)obj.get_double_member("percent");
focused = obj.get_boolean_member("focused");
base.sync(obj);
}
public override void focus() {
Sway.get_default().run_command(@"[con_id=$id] focus");
}
}
}
|