Update of /cvsroot/perl-win32-gui/Win32-GUI
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20857
Modified Files:
GUI.pm
Log Message:
Doc updates and add Win32::GUI::ReleaseNotes
Index: GUI.pm
===================================================================
RCS file: /cvsroot/perl-win32-gui/Win32-GUI/GUI.pm,v
retrieving revision 1.51
retrieving revision 1.52
diff -C2 -d -r1.51 -r1.52
*** GUI.pm 23 Jun 2006 23:08:07 -0000 1.51
--- GUI.pm 16 Jul 2006 11:08:09 -0000 1.52
***************
*** 320,324 ****
# If you are writing a class that you expect others to use, then this
# method should B<NOT> be used to store class instance data. See
! # L<ClassData()|ClassData> instead.
sub UserData {
my $win = shift;
--- 320,324 ----
# If you are writing a class that you expect others to use, then this
# method should B<NOT> be used to store class instance data. See
! # L<ClassData()|Win32::GUI::Reference::Methods/ClassData> instead.
sub UserData {
my $win = shift;
***************
*** 382,386 ****
# (@)METHOD:Animate(%OPTIONS)
# Apply special effects when showing or hiding a window. Used instead of
! # L<Show()|Show> or L<Hide()|Hide>.
#
# OPTIONS can take the following values:
--- 382,387 ----
# (@)METHOD:Animate(%OPTIONS)
# Apply special effects when showing or hiding a window. Used instead of
! # L<Show()|Win32::GUI::Reference::Methods/Show> or
! # L<Hide()|Win32::GUI::Reference::Methods/Hide>.
#
# OPTIONS can take the following values:
***************
*** 1355,1359 ****
# masks the user input (like password prompts).
# -passwordchar => CHAR (default '*')
! # The specified CHAR that is shown instead of the text with C<< -password => 1 >>.
# -lowercase => 0/1 (default 0)
# Convert all caracter into lowercase
--- 1356,1360 ----
# masks the user input (like password prompts).
# -passwordchar => CHAR (default '*')
! # The specified CHAR that is shown instead of the text with -password => 1
# -lowercase => 0/1 (default 0)
# Convert all caracter into lowercase
***************
*** 1373,1377 ****
# text can't be changed.
# -wantreturn => 0/1 (default 0)
! # when C<< dialogui => 1 >> is in effect, stops the <ENTER> key
# behaving as a click on the default button, and allows the
# key to be entered in a multi-line Textfield
--- 1374,1378 ----
# text can't be changed.
# -wantreturn => 0/1 (default 0)
! # when dialogui => 1 is in effect, stops the <ENTER> key
# behaving as a click on the default button, and allows the
# key to be entered in a multi-line Textfield
***************
*** 2844,2850 ****
# Only supported by shell32.dll v5.0 and above
#
! # Return focus to the taskbar notification area. For example if the taskbar
! # icon displays a shortcut menu and the use cancels the menu with ESC, then
! # use this method to return focus to the taskbar notification area.
#
# Returns 1 on success, 0 on failure and undef if not supported.
--- 2845,2852 ----
# Only supported by shell32.dll v5.0 and above
#
! # Return focus to the taskbar notification area. For example if the
! # taskbar icon displays a shortcut menu and the user cancels the menu
! # with ESC, then use this method to return focus to the taskbar
! # notification area.
#
# Returns 1 on success, 0 on failure and undef if not supported.
|