You can get the DC of the screen like this (ripped from
http://jeb.ca/perl/win32-gui-docs/index.pl/win32-gui-dc):

$Screen = new Win32::GUI::DC("DISPLAY");

Then you can write what you like all over it. However this isn't great. You
can also make a window with the style WS_CHILD, which has no titlebar or
border, and call $win->Maximize() on startup to make it fill the whole
screen (except for the taskbar if that's not on auto-hide), then you can
paint in that window's DC (obtain it with $win->GetDC()).

I hope one of these helps.

Steve


----- Original Message ----- 
From: "Peter Janson" <[EMAIL PROTECTED]>
To: <perl-win32-gui-users@lists.sourceforge.net>
Sent: Wednesday, November 26, 2003 9:14 PM
Subject: [perl-win32-gui-users] DC fullscreen


> Hi!
>
> Is there a way to whrite graphics in "fullscreen" mode?
> One could always place the window at -xx, -xx and make the window a trifle
> bigger than the actual screen resolution, but that solution feels "dirty".
>
> Is there a better way?
>
> /Peter Janson
>
>
>
> -------------------------------------------------------
> This SF.net email is sponsored by: SF.net Giveback Program.
> Does SourceForge.net help you be more productive?  Does it
> help you create better code?  SHARE THE LOVE, and help us help
> YOU!  Click Here: http://sourceforge.net/donate/
> _______________________________________________
> Perl-Win32-GUI-Users mailing list
> Perl-Win32-GUI-Users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/perl-win32-gui-users
>


Reply via email to