| Server IP : 170.10.161.225 / Your IP : 216.73.216.78 Web Server : Apache System : Linux vps103298.mylogin.co 4.18.0-513.11.1.el8_9.x86_64 #1 SMP Wed Jan 17 02:00:40 EST 2024 x86_64 User : calvet ( 273824) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : ON Directory : /lib64/perl5/vendor_perl/auto/Tk/Widget/ |
Upload File : |
# NOTE: Derived from blib/lib/Tk/Widget.pm.
# Changes made here will be lost when autosplit is run again.
# See AutoSplit.pm.
package Tk::Widget;
#line 1718 "blib/lib/Tk/Widget.pm (autosplit into blib/lib/auto/Tk/Widget/RestoreFocusGrab.al)"
# ::tk::RestoreFocusGrab --
# restore old focus and grab (for dialogs)
# Arguments:
# grab window that had taken grab
# focus window that had taken focus
# destroy destroy|withdraw - how to handle the old grabbed window
# Results:
# Returns nothing
#
sub RestoreFocusGrab
{
my ($grab, $focus, $destroy) = @_;
$destroy = 'destroy' if !$destroy;
my $index = "$grab,$focus";
my ($oldFocus, $oldGrab, $oldStatus);
if (exists $Tk::FocusGrab{$index})
{
($oldFocus, $oldGrab, $oldStatus) = $Tk::FocusGrab{$index};
delete $Tk::FocusGrab{$index};
}
else
{
$oldGrab = "";
}
Tk::catch { $oldFocus->focus };
if (Tk::Exists($grab))
{
$grab->grabRelease;
if ($destroy eq "withdraw")
{
$grab->withdraw;
}
else
{
$grab->destroy;
}
}
if (Tk::Exists($oldGrab) && $oldGrab->ismapped)
{
if ($oldStatus eq "global")
{
$oldGrab->grabGlobal;
}
else
{
$oldGrab->grab;
}
}
}
# end of Tk::Widget::RestoreFocusGrab
1;