2009-08-05 21:54:24 +02:00
|
|
|
#!perl
|
|
|
|
# vim:ts=4:sw=4:expandtab
|
|
|
|
# Checks if the focus is correctly restored, when creating a floating client
|
|
|
|
# over an unfocused tiling client and destroying the floating one again.
|
|
|
|
|
2010-04-17 22:49:26 +02:00
|
|
|
use i3test tests => 4;
|
2009-08-05 21:54:24 +02:00
|
|
|
use X11::XCB qw(:all);
|
|
|
|
use Time::HiRes qw(sleep);
|
|
|
|
|
|
|
|
BEGIN {
|
|
|
|
use_ok('X11::XCB::Window') or BAIL_OUT('Could not load X11::XCB::Window');
|
|
|
|
}
|
|
|
|
|
2009-10-26 20:04:37 +01:00
|
|
|
my $x = X11::XCB::Connection->new;
|
2009-08-05 21:54:24 +02:00
|
|
|
|
2010-03-27 15:20:38 +01:00
|
|
|
my $i3 = i3;
|
2009-08-05 21:54:24 +02:00
|
|
|
|
|
|
|
# Switch to the nineth workspace
|
2010-03-27 15:20:38 +01:00
|
|
|
$i3->command('9')->recv;
|
2009-08-05 21:54:24 +02:00
|
|
|
|
2009-10-26 20:04:37 +01:00
|
|
|
my $tiled_left = i3test::open_standard_window($x);
|
|
|
|
my $tiled_right = i3test::open_standard_window($x);
|
2009-08-05 21:54:24 +02:00
|
|
|
|
|
|
|
sleep(0.25);
|
|
|
|
|
2010-03-27 15:20:38 +01:00
|
|
|
$i3->command('ml')->recv;
|
2009-08-05 21:54:24 +02:00
|
|
|
|
|
|
|
# Get input focus before creating the floating window
|
2009-10-26 20:04:37 +01:00
|
|
|
my $focus = $x->input_focus;
|
2009-08-05 21:54:24 +02:00
|
|
|
|
|
|
|
# Create a floating window which is smaller than the minimum enforced size of i3
|
2009-10-26 20:04:37 +01:00
|
|
|
my $window = $x->root->create_child(
|
2009-08-05 21:54:24 +02:00
|
|
|
class => WINDOW_CLASS_INPUT_OUTPUT,
|
2009-08-21 12:32:54 +02:00
|
|
|
rect => [ 1, 1, 30, 30],
|
2009-08-21 16:06:12 +02:00
|
|
|
background_color => '#C0C0C0',
|
2009-10-26 20:04:37 +01:00
|
|
|
type => $x->atom(name => '_NET_WM_WINDOW_TYPE_UTILITY'),
|
2009-08-05 21:54:24 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
isa_ok($window, 'X11::XCB::Window');
|
|
|
|
|
|
|
|
$window->map;
|
|
|
|
|
|
|
|
sleep(0.25);
|
2009-10-26 20:04:37 +01:00
|
|
|
is($x->input_focus, $window->id, 'floating window focused');
|
2009-08-05 21:54:24 +02:00
|
|
|
|
|
|
|
$window->unmap;
|
|
|
|
|
|
|
|
sleep(0.25);
|
|
|
|
|
2009-10-26 20:04:37 +01:00
|
|
|
is($x->input_focus, $focus, 'Focus correctly restored');
|
2009-08-05 21:54:24 +02:00
|
|
|
|
|
|
|
diag( "Testing i3, Perl $], $^X" );
|