2009-08-05 21:37:11 +02:00
|
|
|
package i3test;
|
|
|
|
# vim:ts=4:sw=4:expandtab
|
|
|
|
|
2010-04-16 15:03:27 +02:00
|
|
|
use File::Temp qw(tmpnam);
|
2009-08-05 21:37:11 +02:00
|
|
|
use X11::XCB::Rect;
|
|
|
|
use X11::XCB::Window;
|
|
|
|
use X11::XCB qw(:all);
|
2010-04-16 15:03:27 +02:00
|
|
|
use AnyEvent::I3;
|
2010-06-02 17:50:06 +02:00
|
|
|
use List::Util qw(first);
|
2010-07-03 16:28:58 +02:00
|
|
|
use v5.10;
|
2010-04-16 15:03:27 +02:00
|
|
|
|
2010-07-03 16:28:58 +02:00
|
|
|
use Exporter ();
|
2010-07-17 15:17:16 +02:00
|
|
|
our @EXPORT = qw(get_workspace_names get_unused_workspace get_ws_content get_ws get_focused open_empty_con);
|
2009-08-05 21:37:11 +02:00
|
|
|
|
2009-08-06 00:03:31 +02:00
|
|
|
BEGIN {
|
|
|
|
my $window_count = 0;
|
|
|
|
sub counter_window {
|
|
|
|
return $window_count++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-07-03 16:28:58 +02:00
|
|
|
sub import {
|
|
|
|
my $class = shift;
|
|
|
|
my $pkg = caller;
|
|
|
|
eval "package $pkg;
|
|
|
|
use Test::More qw(@_);
|
|
|
|
use Test::Exception;
|
|
|
|
use Data::Dumper;
|
|
|
|
use AnyEvent::I3;
|
|
|
|
use Test::Deep qw(eq_deeply cmp_deeply cmp_set cmp_bag cmp_methods useclass noclass set bag subbagof superbagof subsetof supersetof superhashof subhashof bool str arraylength Isa ignore methods regexprefonly regexpmatches num regexponly scalref reftype hashkeysonly blessed array re hash regexpref hash_each shallow array_each code arrayelementsonly arraylengthonly scalarrefonly listmethods any hashkeys isa);
|
|
|
|
use v5.10;
|
|
|
|
use strict;
|
|
|
|
use warnings;
|
|
|
|
";
|
|
|
|
@_ = ($class);
|
|
|
|
goto \&Exporter::import;
|
|
|
|
}
|
|
|
|
|
2009-08-05 21:37:11 +02:00
|
|
|
sub open_standard_window {
|
2009-10-26 20:04:37 +01:00
|
|
|
my ($x) = @_;
|
2009-08-05 21:37:11 +02:00
|
|
|
|
2009-10-26 20:04:37 +01:00
|
|
|
my $window = $x->root->create_child(
|
2009-08-05 21:37:11 +02:00
|
|
|
class => WINDOW_CLASS_INPUT_OUTPUT,
|
2009-10-26 20:04:37 +01:00
|
|
|
rect => [ 0, 0, 30, 30 ],
|
2009-08-21 16:06:12 +02:00
|
|
|
background_color => '#C0C0C0',
|
2009-08-05 21:37:11 +02:00
|
|
|
);
|
|
|
|
|
2009-08-06 00:03:31 +02:00
|
|
|
$window->name('Window ' . counter_window());
|
2009-08-05 21:37:11 +02:00
|
|
|
$window->map;
|
|
|
|
|
|
|
|
sleep(0.25);
|
|
|
|
|
|
|
|
return $window;
|
|
|
|
}
|
|
|
|
|
2010-07-17 15:17:16 +02:00
|
|
|
sub open_empty_con {
|
|
|
|
my ($i3) = @_;
|
|
|
|
|
|
|
|
my $reply = $i3->command('open')->recv;
|
|
|
|
return $reply->{id};
|
|
|
|
}
|
|
|
|
|
2010-04-16 15:03:27 +02:00
|
|
|
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 @workspaces = map { @{$_->{nodes}} } @{$tree->{nodes}};
|
|
|
|
[ map { $_->{name} } @workspaces ]
|
|
|
|
}
|
|
|
|
|
|
|
|
sub get_unused_workspace {
|
|
|
|
my @names = get_workspace_names();
|
|
|
|
my $tmp;
|
|
|
|
do { $tmp = tmpnam() } while ($tmp ~~ @names);
|
|
|
|
$tmp
|
|
|
|
}
|
|
|
|
|
2010-06-02 17:50:06 +02:00
|
|
|
sub get_ws {
|
|
|
|
my ($name) = @_;
|
|
|
|
my $i3 = i3("/tmp/nestedcons");
|
|
|
|
my $tree = $i3->get_workspaces->recv;
|
|
|
|
my @ws = map { @{$_->{nodes}} } @{$tree->{nodes}};
|
|
|
|
|
|
|
|
# as there can only be one workspace with this name, we can safely
|
|
|
|
# return the first entry
|
|
|
|
return first { $_->{name} eq $name } @ws;
|
|
|
|
}
|
|
|
|
|
2010-04-16 15:03:27 +02:00
|
|
|
#
|
|
|
|
# returns the content (== tree, starting from the node of a workspace)
|
2010-05-10 00:06:24 +02:00
|
|
|
# of a workspace. If called in array context, also includes the focus
|
|
|
|
# stack of the workspace
|
2010-04-16 15:03:27 +02:00
|
|
|
#
|
|
|
|
sub get_ws_content {
|
|
|
|
my ($name) = @_;
|
2010-06-02 17:50:06 +02:00
|
|
|
my $con = get_ws($name);
|
|
|
|
return wantarray ? ($con->{nodes}, $con->{focus}) : $con->{nodes};
|
2010-04-16 15:03:27 +02:00
|
|
|
}
|
|
|
|
|
2010-06-01 20:52:22 +02:00
|
|
|
sub get_focused {
|
|
|
|
my ($ws) = @_;
|
|
|
|
my $i3 = i3("/tmp/nestedcons");
|
|
|
|
my $tree = $i3->get_workspaces->recv;
|
|
|
|
|
|
|
|
my @ws = map { @{$_->{nodes}} } @{$tree->{nodes}};
|
|
|
|
my @cons = grep { $_->{name} eq $ws } @ws;
|
|
|
|
my $con = $cons[0];
|
|
|
|
|
|
|
|
my @focused = @{$con->{focus}};
|
|
|
|
my $lf;
|
|
|
|
while (@focused > 0) {
|
|
|
|
$lf = $focused[0];
|
|
|
|
last unless defined($con->{focus});
|
|
|
|
@focused = @{$con->{focus}};
|
2010-11-21 16:34:45 +01:00
|
|
|
@cons = grep { $_->{id} == $lf } (@{$con->{nodes}}, @{$con->{'floating_nodes'}});
|
2010-06-01 20:52:22 +02:00
|
|
|
$con = $cons[0];
|
|
|
|
}
|
|
|
|
|
|
|
|
return $lf;
|
|
|
|
}
|
|
|
|
|
2009-08-05 21:37:11 +02:00
|
|
|
1
|