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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141
|
# Copyright (c) 1995-1998 Nick Ing-Simmons. All rights reserved.
# This program is free software; you can redistribute it and/or
# modify it under the same terms as Perl itself.
package Tk::Wm;
use AutoLoader;
require Tk::Widget;
*AUTOLOAD = \&Tk::Widget::AUTOLOAD;
use strict qw(vars);
# There are issues with this stuff now we have Tix's wm release/capture
# as toplevel-ness is now dynamic.
use vars qw($VERSION);
$VERSION = '3.011'; # $Id: //depot/Tk8/Tk/Wm.pm#11$
use Tk::Submethods ( 'wm' => [qw(grid tracing)] );
Direct Tk::Submethods ('wm' => [qw(aspect client colormapwindows command
deiconify focusmodel frame geometry group
iconbitmap iconify iconmask iconname
iconwindow maxsize minsize overrideredirect positionfrom
protocol resizable saveunder sizefrom state title transient
withdraw wrapper)]);
sub SetBindtags
{
my ($obj) = @_;
$obj->bindtags([ref($obj),$obj,'all']);
}
sub Populate
{
my ($cw,$args) = @_;
$cw->ConfigSpecs('-overanchor' => ['PASSIVE',undef,undef,undef],
'-popanchor' => ['PASSIVE',undef,undef,undef],
'-popover' => ['PASSIVE',undef,undef,undef]
);
}
sub MoveResizeWindow
{
my ($w,$x,$y,$width,$height) = @_;
$w->withdraw;
$w->geometry($width.'x'.$height);
$w->MoveToplevelWindow($x,$y);
$w->deiconify;
}
1;
__END__
sub Post
{
my ($w,$X,$Y) = @_;
$X = int($X);
$Y = int($Y);
$w->positionfrom('user');
# $w->geometry("+$X+$Y");
$w->MoveToplevelWindow($X,$Y);
$w->deiconify;
$w->raise;
}
sub AnchorAdjust
{
my ($anchor,$X,$Y,$w,$h) = @_;
$anchor = 'c' unless (defined $anchor);
$Y += ($anchor =~ /s/) ? $h : ($anchor =~ /n/) ? 0 : $h/2;
$X += ($anchor =~ /e/) ? $w : ($anchor =~ /w/) ? 0 : $w/2;
return ($X,$Y);
}
sub Popup
{
my $w = shift;
$w->configure(@_) if @_;
$w->idletasks;
my ($mw,$mh) = ($w->reqwidth,$w->reqheight);
my ($rx,$ry,$rw,$rh) = (0,0,0,0);
my $base = $w->cget('-popover');
my $outside = 0;
if (defined $base)
{
if ($base eq 'cursor')
{
($rx,$ry) = $w->pointerxy;
}
else
{
$rx = $base->rootx;
$ry = $base->rooty;
$rw = $base->Width;
$rh = $base->Height;
}
}
else
{
my $sc = ($w->parent) ? $w->parent->toplevel : $w;
$rx = -$sc->vrootx;
$ry = -$sc->vrooty;
$rw = $w->screenwidth;
$rh = $w->screenheight;
}
my ($X,$Y) = AnchorAdjust($w->cget('-overanchor'),$rx,$ry,$rw,$rh);
($X,$Y) = AnchorAdjust($w->cget('-popanchor'),$X,$Y,-$mw,-$mh);
$w->Post($X,$Y);
}
sub FullScreen
{
my $w = shift;
my $over = (@_) ? shift : 0;
my $width = $w->screenwidth;
my $height = $w->screenheight;
$w->GeometryRequest($width,$height);
$w->overrideredirect($over & 1);
$w->Post(0,0);
$w->update;
if ($over & 2)
{
my $x = $w->rootx;
my $y = $w->rooty;
$width -= 2*$x;
$height -= $x + $y;
$w->GeometryRequest($width,$height);
$w->update;
}
}
sub iconposition
{
my $w = shift;
return $w->wm('iconposition',$1,$2) if (@_ == 1 && $_[0] =~ /^(\d+),(\d+)$/);
$w->wm('iconposition',@_);
}
|