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

  1.  
  2. <HTML>
  3. <HEAD>
  4. <TITLE>Tk::Scrolled - Create a widget with attached scrollbar</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::Scrolled - Create a widget with attached scrollbar</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="#options">OPTIONS</A></LI>
  26.     <LI><A HREF="#advertised subwidgets">ADVERTISED SUBWIDGETS</A></LI>
  27.     <LI><A HREF="#bugs">BUGS</A></LI>
  28.     <LI><A HREF="#see also">SEE ALSO</A></LI>
  29.     <LI><A HREF="#keywords">KEYWORDS</A></LI>
  30. </UL>
  31. <!-- INDEX END -->
  32.  
  33. <HR>
  34. <P>
  35. <H1><A NAME="name">NAME</A></H1>
  36. <P>Tk::Scrolled - Create a widget with attached <CODE>scrollbar(s)</CODE></P>
  37. <P>
  38. <HR>
  39. <H1><A NAME="supportedplatforms">SUPPORTED PLATFORMS</A></H1>
  40. <UL>
  41. <LI>Linux</LI>
  42. <LI>Solaris</LI>
  43. <LI>Windows</LI>
  44. </UL>
  45. <HR>
  46. <H1><A NAME="synopsis">SYNOPSIS</A></H1>
  47. <P>    <EM>$whatever</EM> = <EM>$parent</EM>-><STRONG>Scrolled</STRONG>(<EM>Whatever</EM> ?,<STRONG>-scrollbars</STRONG>=><EM>where</EM>? ?,...?);</P>
  48. <P>
  49. <HR>
  50. <H1><A NAME="description">DESCRIPTION</A></H1>
  51. <P>To stop a flood of <STRONG>ScrlWhatever</STRONG> widgets Perl/Tk introcuded the special
  52. constructor <STRONG>Scrolled</STRONG>.  <STRONG>Scrolled</STRONG> creates a widget of the given Class
  53. <EM>Whatever</EM> with attached <A HREF="../../../site/lib/Tk/Scrollbar.html">scrollbar(s)</A>.</P>
  54. <P>
  55. <HR>
  56. <H1><A NAME="options">OPTIONS</A></H1>
  57. <P>All options beside <STRONG>-scrollbars</STRONG> explained below are passed to
  58. the <EM>Whatever</EM> widget constructor.</P>
  59. <DL>
  60. <DT><STRONG><A NAME="item_%2Dscrollbars">-scrollbars</A></STRONG><BR>
  61. <DD>
  62. Expects as argument the position where the scrollbars should be
  63. created:  <STRONG>w</STRONG>, <STRONG>e</STRONG> or <STRONG>n</STRONG>, <STRONG>s</STRONG> or a combination of
  64. them.  If the one or both positions are prefixed with <STRONG>o</STRONG> the
  65. scrollbar will only show up if there is a 'real' need to scroll.
  66. <P></P></DL>
  67. <P>
  68. <HR>
  69. <H1><A NAME="advertised subwidgets">ADVERTISED SUBWIDGETS</A></H1>
  70. <P>See <A HREF="../../../site/lib/Tk/mega.html#subwidget">Subwidget in the Tk::mega manpage</A> how to use advertised widgets.</P>
  71. <DL>
  72. <DT><STRONG><A NAME="item_scrolled">scrolled</A></STRONG><BR>
  73. <DD>
  74. the scrolled widget
  75. <P></P>
  76. <DT><STRONG><A NAME="item_widget"><EM>widget</EM></A></STRONG><BR>
  77. <DD>
  78. same as <STRONG>scrolled</STRONG> above.  <EM>widget</EM> is the kind of widget passed
  79. to scrolled as first argument in all lowercase.
  80. <P></P>
  81. <DT><STRONG><A NAME="item_xscrollbar">xscrollbar</A></STRONG><BR>
  82. <DD>
  83. the <STRONG>Scrollbar</STRONG> widget used for horizontal scrolling (if it exists)
  84. <P></P>
  85. <DT><STRONG><A NAME="item_yscrollbar">yscrollbar</A></STRONG><BR>
  86. <DD>
  87. the <STRONG>Scrollbar</STRONG> widget used for vertical scrolling (if it exists)
  88. <P></P></DL>
  89. <P>
  90. <HR>
  91. <H1><A NAME="bugs">BUGS</A></H1>
  92. <P>If a widget does not support <EM>-{x,y}scrollcommand</EM> options,
  93. <STRONG>Scrolled</STRONG> does not complain if the specified widget class does
  94. not support them.  E.g.,</P>
  95. <P>    <EM>$parent</EM>-><STRONG>Scrolled</STRONG>(<STRONG>'Button'</STRONG>, ...)</P>
  96. <P>One does not get an error message or warning when one tries to
  97. configure scrollbars after the widget construction:</P>
  98. <P>    <EM>$ascrolled</EM>-><STRONG>configure</STRONG>(<STRONG>-scrollbars</STRONG> => <STRONG>'e'</STRONG>);</P>
  99. <P>
  100. <HR>
  101. <H1><A NAME="see also">SEE ALSO</A></H1>
  102. <P><A HREF="../../../site/lib/Tk/Scrollbar.html">Tk::Scrollbar</A></P>
  103. <P>
  104. <HR>
  105. <H1><A NAME="keywords">KEYWORDS</A></H1>
  106. <P>scrolled, scrollbar</P>
  107. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  108. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  109. <STRONG><P CLASS=block> Tk::Scrolled - Create a widget with attached scrollbar</P></STRONG>
  110. </TD></TR>
  111. </TABLE>
  112.  
  113. </BODY>
  114.  
  115. </HTML>
  116.