2010-10-11 21:32:04 +02:00
|
|
|
#!perl
|
|
|
|
# vim:ts=4:sw=4:expandtab
|
|
|
|
#
|
|
|
|
# Checks if size hints are interpreted correctly.
|
|
|
|
#
|
2011-03-09 20:25:17 +01:00
|
|
|
use i3test;
|
2010-10-11 21:32:04 +02:00
|
|
|
|
2011-03-09 20:25:17 +01:00
|
|
|
my $tmp = fresh_workspace;
|
2010-10-11 21:32:04 +02:00
|
|
|
|
|
|
|
ok(@{get_ws_content($tmp)} == 0, 'no containers yet');
|
|
|
|
|
2011-11-22 00:47:32 +01:00
|
|
|
my $win = open_window({ dont_map => 1 });
|
2010-10-11 21:32:04 +02:00
|
|
|
# XXX: we should check screen size. in screens with an AR of 2.0,
|
|
|
|
# this is not a good idea.
|
|
|
|
my $aspect = X11::XCB::Sizehints::Aspect->new;
|
|
|
|
$aspect->min_num(600);
|
|
|
|
$aspect->min_den(300);
|
|
|
|
$aspect->max_num(600);
|
|
|
|
$aspect->max_den(300);
|
|
|
|
$win->_create;
|
|
|
|
$win->map;
|
2011-11-21 23:44:20 +01:00
|
|
|
wait_for_map $win;
|
2010-10-11 21:32:04 +02:00
|
|
|
$win->hints->aspect($aspect);
|
|
|
|
$x->flush;
|
|
|
|
|
2011-09-23 21:37:45 +02:00
|
|
|
sync_with_i3($x);
|
2010-10-11 21:32:04 +02:00
|
|
|
|
|
|
|
my $rect = $win->rect;
|
|
|
|
my $ar = $rect->width / $rect->height;
|
|
|
|
diag("Aspect ratio = $ar");
|
|
|
|
ok(($ar > 1.90) && ($ar < 2.10), 'Aspect ratio about 2.0');
|
|
|
|
|
2011-03-09 20:25:17 +01:00
|
|
|
done_testing;
|