The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Tk::StayOnTop - Keep your window in the foreground

SYNOPSIS

        use Tk::StayOnTop;
        $toplevel->stayOnTop;
        $toplevel->dontStayOnTop;

DESCRIPTION

Adds methods to the Tk::Toplevel base class so that a window can stay on top off all other windows

METHODS

$toplevel->stayOnTop();

Keep $toplevel in the foreground.

$toplevel->dontStayOnTop();

Return $toplevel to normal behaviour.

BUGS

Under Win32, funtionality is implemented through Win32::API. Under X-windows, functianality is very crude. Any suggestions for Window Manager support under X would be appreciated.

AUTHOR

This module is Copyright (c) 2002 Gavin Brock gbrock@cpan.org. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

SEE ALSO

Tk

Win32::API