[TBD]
Common methods apply to most windows, controls and resources.
new(%OPTIONS)
Creates a new MDI Client object.
Class specific %OPTIONS are:
See also the common options.
AddMDIClient(%OPTIONS)
See new Win32::GUI::MDIClient().
AddMenu()
AddNotifyIcon(%OPTIONS)
See new Win32::GUI::NotifyIcon().
AddRebar(%OPTIONS)
AddSplitter(%OPTIONS)
See new Win32::GUI::Splitter().
AddStatusBar(%OPTIONS)
See new Win32::GUI::StatusBar().
AddTimer(NAME, ELAPSE)
AddToolbar(%OPTIONS)
See new Win32::GUI::Toolbar().
Center([Parent])
Center the window vertically and horizontally in the Parent (Default: the Desktop window). Parent can be either a Win32::GUI::Window or a hwind. Return 1 on success, else 0.
GetDC()
Returns the DC object associated with the window.
Common events apply to most windows and controls.
Activate()
Sent when the window is activated.
Deactivate()
Sent when the window is deactivated.
InitMenu(MENU)
Sent when a menu is about to become active. It occurs when the user clicks an item on the menu bar or presses a menu key. This allows the application to modify the menu before it is displayed.
Maximize()
Sent when the window is maximized.
Minimize()
Sent when the window is minimized.
Paint(DC)
Sent when the window needs to be repainted.
Note that you get the DC of the window object in parameter,
and then Validate()
the DC to inform Windows
that you painted the DC area (otherwise it will
continue to call the Paint event continuously).
Example:
sub Graphic_Paint { my $DC = shift; $DC->MoveTo(0, 0); $DC->LineTo(100, 100); $DC->Validate(); }
Resize()
Sent when the window is resized.
Scroll(SCROLLBAR, OPERATION, POSITION)
Sent when one of the window scrollbars is moved. SCROLLBAR identifies which bar was moved, 0 for horizontal and 1 for vertical.
OPERATION can be compared against one of the following constants: SB_LINEUP, SB_LINELEFT, SB_LINEDOWN, SB_LINERIGHT, SB_PAGEUP SB_PAGELEFT, SB_PAGEDOWN, SB_PAGERIGHT, SB_THUMBPOSITION, SB_THUMBTRACK, SB_TOP, SB_LEFT, SB_BOTTOM, SB_RIGHT, SB_ENDSCROLL
Related messages: WM_HSCROLL, WM_VSCROLL
Terminate()
Sent when the window is closed. The event should return -1 to terminate the interaction and return control to the perl script; see Dialog().
Documentation for Win32::GUI v1.06 created 13 Feb 2008
This document is autogenerated by the build process. Edits made here will be lost. Edit docs/per_package.tpl instead.
Homepage: http://perl-win32-gui.sourceforge.net/.
For further support join the users mailing list(perl-win32-gui-users@lists.sourceforge.net
) from the website
at http://lists.sourceforge.net/lists/listinfo/perl-win32-gui-users. There is a searchable list archive at http://sourceforge.net/mail/.
Copyright (c) 1997..2008 Aldo Calpini. All rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.