home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 May / Chip_2000-05_cd1.bin / zkuste / Perl / ActivePerl-5.6.0.613.msi / 䆊䌷䈹䈙䏵-䞅䞆䞀㡆䞃䄦䠥 / _0a01f51c2579db42b869795230c54efd < prev    next >
Text File  |  2000-03-23  |  4KB  |  111 lines

  1.  
  2. <HTML>
  3. <HEAD>
  4. <TITLE>Tk::Dialog - Create modal dialog and wait for a response.</TITLE>
  5. <LINK REL="stylesheet" HREF="../../../Active.css" TYPE="text/css">
  6. <LINK REV="made" HREF="mailto:">
  7. </HEAD>
  8.  
  9. <BODY>
  10. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  11. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  12. <STRONG><P CLASS=block> Tk::Dialog - Create modal dialog and wait for a response.</P></STRONG>
  13. </TD></TR>
  14. </TABLE>
  15.  
  16. <A NAME="__index__"></A>
  17. <!-- INDEX BEGIN -->
  18.  
  19. <UL>
  20.  
  21.     <LI><A HREF="#name">NAME</A></LI><LI><A HREF="#supportedplatforms">SUPPORTED PLATFORMS</A></LI>
  22.  
  23.     <LI><A HREF="#synopsis">SYNOPSIS</A></LI>
  24.     <LI><A HREF="#description">DESCRIPTION</A></LI>
  25.     <LI><A HREF="#methods">METHODS</A></LI>
  26.     <LI><A HREF="#example">EXAMPLE</A></LI>
  27.     <LI><A HREF="#keywords">KEYWORDS</A></LI>
  28. </UL>
  29. <!-- INDEX END -->
  30.  
  31. <HR>
  32. <P>
  33. <H1><A NAME="name">NAME</A></H1>
  34. <P>Tk::Dialog - Create modal dialog and wait for a response.</P>
  35. <P>
  36. <HR>
  37. <H1><A NAME="supportedplatforms">SUPPORTED PLATFORMS</A></H1>
  38. <UL>
  39. <LI>Linux</LI>
  40. <LI>Solaris</LI>
  41. <LI>Windows</LI>
  42. </UL>
  43. <HR>
  44. <H1><A NAME="synopsis">SYNOPSIS</A></H1>
  45. <P>    <EM>$dialog</EM> = <EM>$parent</EM>-><STRONG>Dialog</STRONG>(<EM>-option</EM> => <EM>value</EM>, ... );</P>
  46. <P>
  47. <HR>
  48. <H1><A NAME="description">DESCRIPTION</A></H1>
  49. <P>This procedure is part of the Tk script library - its arguments describe a
  50. dialog box.
  51. After creating a dialog box, <STRONG>Dialog</STRONG> waits for the user to
  52. select one of the buttons either by clicking on the button with the
  53. mouse or by typing return to invoke the default button (if any).
  54. Then it returns the text string of the selected button.</P>
  55. <P>While waiting for the user to respond, <STRONG>Dialog</STRONG> sets a local
  56. grab.  This prevents the user from interacting with the application
  57. in any way except to invoke the dialog box.  See <STRONG>Show()</STRONG> method.</P>
  58. <P>The following option/value pairs are supported:</P>
  59. <DL>
  60. <DT><STRONG><A NAME="item_%2Dtitle"><STRONG>-title</STRONG></A></STRONG><BR>
  61. <DD>
  62. Text to appear in the window manager's title bar for the dialog.
  63. <P></P>
  64. <DT><STRONG><A NAME="item_%2Dtext"><STRONG>-text</STRONG></A></STRONG><BR>
  65. <DD>
  66. Message to appear in the top portion of the dialog box.
  67. <P></P>
  68. <DT><STRONG><A NAME="item_%2Dbitmap"><STRONG>-bitmap</STRONG></A></STRONG><BR>
  69. <DD>
  70. If non-empty, specifies a bitmap to display in the top portion of
  71. the dialog, to the left of the text.
  72. If this is an empty string then no bitmap is displayed in the dialog.
  73. <P></P>
  74. <DT><STRONG><A NAME="item_%2Ddefault_button"><STRONG>-default_button</STRONG></A></STRONG><BR>
  75. <DD>
  76. Text label string of the button that displays the default ring.
  77. <P></P>
  78. <DT><STRONG><A NAME="item_%2Dbuttons"><STRONG>-buttons</STRONG></A></STRONG><BR>
  79. <DD>
  80. A reference to a list of button label strings.
  81. Each <EM>string</EM> specifies text to display in a button,
  82. in order from left to right.
  83. <P></P></DL>
  84. <P>
  85. <HR>
  86. <H1><A NAME="methods">METHODS</A></H1>
  87. <DL>
  88. <DT><STRONG><A NAME="item_Show"><CODE>$answer = $dialog->Show(?-global?);</CODE></A></STRONG><BR>
  89. <DD>
  90. This method displays the dialog, waits for the user's response, and stores
  91. the text string of the selected button in <CODE>$answer</CODE>.  If <EM>-global</EM> is
  92. specified a global (rather than local) grab is performed.
  93. <P></P></DL>
  94. <P>
  95. <HR>
  96. <H1><A NAME="example">EXAMPLE</A></H1>
  97. <P><EM>$dialog</EM> = <EM>$mw</EM>-><STRONG>Dialog</STRONG>(-text => 'Save File?', -bitmap => 'question', -title => 'Save File Dialog', -default_button => 'Yes', -buttons => [qw/Yes No Cancel/);</P>
  98. <P>
  99. <HR>
  100. <H1><A NAME="keywords">KEYWORDS</A></H1>
  101. <P>bitmap, dialog, modal, messageBox</P>
  102. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  103. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  104. <STRONG><P CLASS=block> Tk::Dialog - Create modal dialog and wait for a response.</P></STRONG>
  105. </TD></TR>
  106. </TABLE>
  107.  
  108. </BODY>
  109.  
  110. </HTML>
  111.