perl: use get_tree instead of get_workspaces

next
Michael Stapelberg 2010-11-21 21:42:28 +01:00
parent 0f083f6f78
commit 4549effe15
8 changed files with 10 additions and 10 deletions

View File

@ -11,7 +11,7 @@ use v5.10;
my $i3 = i3("/tmp/nestedcons");
my $tree = $i3->get_workspaces->recv;
my $tree = $i3->get_tree->recv;
my $tmp = File::Temp->new(UNLINK => 0, SUFFIX => '.asy');

View File

@ -116,7 +116,7 @@ my $layout_container = Gtk2::HBox->new(0, 0);
$layout_sw->add_with_viewport($layout_container);
sub copy_tree {
my $tree = $i3->get_workspaces->recv;
my $tree = $i3->get_tree->recv;
# convert the tree back to json so we only rebuild/redraw when the tree is changed
my $json = encode_json($tree);

View File

@ -16,7 +16,7 @@ sub fullscreen_windows {
}
# get the output of this workspace
my $tree = $i3->get_workspaces->recv;
my $tree = $i3->get_tree->recv;
my @outputs = @{$tree->{nodes}};
my $output = first { defined(first { $_->{name} eq $tmp } @{$_->{nodes}}) } @outputs;

View File

@ -10,7 +10,7 @@ my $i3 = i3("/tmp/nestedcons");
# Request tree
####################
my $tree = $i3->get_workspaces->recv;
my $tree = $i3->get_tree->recv;
my $expected = {
fullscreen_mode => 0,

View File

@ -18,7 +18,7 @@ $i3->command('kill')->recv;
$i3->command('kill')->recv;
my $tree = $i3->get_workspaces->recv;
my $tree = $i3->get_tree->recv;
my @nodes = @{$tree->{nodes}};
ok(@nodes > 0, 'i3 still lives');

View File

@ -32,7 +32,7 @@ is(get_focused($tmp), $floating, 'floating window focused');
sleep 1;
$i3->command('mode toggle')->recv;
my $tree = $i3->get_workspaces->recv;
my $tree = $i3->get_tree->recv;
my @nodes = @{$tree->{nodes}};
ok(@nodes > 0, 'i3 still lives');

View File

@ -9,7 +9,7 @@ my $i3 = i3("/tmp/nestedcons");
$i3->command("blargh!")->recv;
my $tree = $i3->get_workspaces->recv;
my $tree = $i3->get_tree->recv;
my @nodes = @{$tree->{nodes}};
ok(@nodes > 0, 'i3 still lives');

View File

@ -63,7 +63,7 @@ sub open_empty_con {
sub get_workspace_names {
my $i3 = i3("/tmp/nestedcons");
# TODO: use correct command as soon as AnyEvent::i3 is updated
my $tree = $i3->get_workspaces->recv;
my $tree = $i3->get_tree->recv;
my @workspaces = map { @{$_->{nodes}} } @{$tree->{nodes}};
[ map { $_->{name} } @workspaces ]
}
@ -78,7 +78,7 @@ sub get_unused_workspace {
sub get_ws {
my ($name) = @_;
my $i3 = i3("/tmp/nestedcons");
my $tree = $i3->get_workspaces->recv;
my $tree = $i3->get_tree->recv;
my @ws = map { @{$_->{nodes}} } @{$tree->{nodes}};
# as there can only be one workspace with this name, we can safely
@ -100,7 +100,7 @@ sub get_ws_content {
sub get_focused {
my ($ws) = @_;
my $i3 = i3("/tmp/nestedcons");
my $tree = $i3->get_workspaces->recv;
my $tree = $i3->get_tree->recv;
my @ws = map { @{$_->{nodes}} } @{$tree->{nodes}};
my @cons = grep { $_->{name} eq $ws } @ws;