toplevel.n
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:7k
源码类别:

通讯编程

开发平台:

Visual C++

  1. '"
  2. '" Copyright (c) 1990-1994 The Regents of the University of California.
  3. '" Copyright (c) 1994-1996 Sun Microsystems, Inc.
  4. '"
  5. '" See the file "license.terms" for information on usage and redistribution
  6. '" of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  7. '" 
  8. '" RCS: @(#) $Id: toplevel.n,v 1.4.4.2 2005/01/05 21:57:17 dkf Exp $
  9. '" 
  10. .so man.macros
  11. .TH toplevel n 8.4 Tk "Tk Built-In Commands"
  12. .BS
  13. '" Note:  do not modify the .SH NAME line immediately below!
  14. .SH NAME
  15. toplevel - Create and manipulate toplevel widgets
  16. .SH SYNOPSIS
  17. fBtoplevelfR fIpathName fR?fIoptionsfR?
  18. .SO
  19. -borderwidth -highlightcolor -pady
  20. -cursor -highlightthickness -relief
  21. -highlightbackground -padx -takefocus
  22. .SE
  23. .SH "WIDGET-SPECIFIC OPTIONS"
  24. .OP -background background Background
  25. This option is the same as the standard fBbackgroundfR option
  26. except that its value may also be specified as an empty string.
  27. In this case, the widget will display no background or border, and
  28. no colors will be consumed from its colormap for its background
  29. and border.
  30. .OP -class class Class
  31. Specifies a class for the window.
  32. This class will be used when querying the option database for
  33. the window's other options, and it will also be used later for
  34. other purposes such as bindings.
  35. The fBclassfR option may not be changed with the fBconfigurefR
  36. widget command.
  37. .OP -colormap colormap Colormap
  38. Specifies a colormap to use for the window.
  39. The value may be either fBnewfR, in which case a new colormap is
  40. created for the window and its children, or the name of another
  41. window (which must be on the same screen and have the same visual
  42. as fIpathNamefR), in which case the new window will use the colormap
  43. from the specified window.
  44. If the fBcolormapfR option is not specified, the new window
  45. uses the default colormap of its screen.
  46. This option may not be changed with the fBconfigurefR
  47. widget command.
  48. .OP -container container Container
  49. The value must be a boolean.  If true, it means that this window will
  50. be used as a container in which some other application will be embedded
  51. (for example, a Tk toplevel can be embedded using the fB-usefR option).
  52. The window will support the appropriate window manager protocols for
  53. things like geometry requests.  The window should not have any
  54. children of its own in this application.
  55. This option may not be changed with the fBconfigurefR
  56. widget command.
  57. .OP -height height Height
  58. Specifies the desired height for the window in any of the forms
  59. acceptable to fBTk_GetPixelsfR.
  60. If this option is less than or equal to zero then the window will
  61. not request any size at all.
  62. .OP -menu menu Menu
  63. Specifies a menu widget to be used as a menubar. On the Macintosh, the
  64. menubar will be displayed across the top of the main monitor. On
  65. Microsoft Windows and all UNIX platforms, the menu will appear across
  66. the toplevel window as part of the window dressing maintained by the
  67. window manager.
  68. .OP -screen "" ""
  69. Specifies the screen on which to place the new window.
  70. Any valid screen name may be used, even one associated with a
  71. different display.
  72. Defaults to the same screen as its parent.
  73. This option is special in that it may not be specified via the option
  74. database, and it may not be modified with the fBconfigurefR
  75. widget command.
  76. .OP -use use Use
  77. This option is used for embedding. If the value isn't an empty string,
  78. it must be the window identifier of a container window, specified as
  79. a hexadecimal string like the ones returned by the fBwinfo idfR
  80. command. The toplevel widget will be created as a child of the given
  81. container instead of the root window for the screen.  If the container
  82. window is in a Tk application, it must be a frame or toplevel widget for
  83. which the fB-containerfR option was specified.
  84. This option may not be changed with the fBconfigurefR
  85. widget command.
  86. .OP -visual visual Visual
  87. Specifies visual information for the new window in any of the
  88. forms accepted by fBTk_GetVisualfR.
  89. If this option is not specified, the new window will use the default
  90. visual for its screen.
  91. The fBvisualfR option may not be modified with the fBconfigurefR
  92. widget command.
  93. .OP -width width Width
  94. Specifies the desired width for the window in any of the forms
  95. acceptable to fBTk_GetPixelsfR.
  96. If this option is less than or equal to zero then the window will
  97. not request any size at all.
  98. .BE
  99. .SH DESCRIPTION
  100. .PP
  101. The fBtoplevelfR command creates a new toplevel widget (given
  102. by the fIpathNamefR argument).  Additional
  103. options, described above, may be specified on the command line
  104. or in the option database
  105. to configure aspects of the toplevel such as its background color
  106. and relief.  The fBtoplevelfR command returns the
  107. path name of the new window.
  108. .PP
  109. A toplevel is similar to a frame except that it is created as a
  110. top-level window:  its X parent is the root window of a screen
  111. rather than the logical parent from its path name.  The primary
  112. purpose of a toplevel is to serve as a container for dialog boxes
  113. and other collections of widgets.  The only visible features
  114. of a toplevel are its background color and an optional 3-D border
  115. to make the toplevel appear raised or sunken.
  116. .SH "WIDGET COMMAND"
  117. .PP
  118. The fBtoplevelfR command creates a new Tcl command whose
  119. name is the same as the path name of the toplevel's window.  This
  120. command may be used to invoke various
  121. operations on the widget.  It has the following general form:
  122. .CS
  123. fIpathName option fR?fIarg arg ...fR?
  124. .CE
  125. fIPathNamefR is the name of the command, which is the same as
  126. the toplevel widget's path name.  fIOptionfR and the fIargfRs
  127. determine the exact behavior of the command.  The following
  128. commands are possible for toplevel widgets:
  129. .TP
  130. fIpathName fBcgetfR fIoptionfR
  131. Returns the current value of the configuration option given
  132. by fIoptionfR.
  133. fIOptionfR may have any of the values accepted by the fBtoplevelfR
  134. command.
  135. .TP
  136. fIpathName fBconfigurefR ?fIoptionfR? ?fIvalue option value ...fR?
  137. Query or modify the configuration options of the widget.
  138. If no fIoptionfR is specified, returns a list describing all of
  139. the available options for fIpathNamefR (see fBTk_ConfigureInfofR for
  140. information on the format of this list).  If fIoptionfR is specified
  141. with no fIvaluefR, then the command returns a list describing the
  142. one named option (this list will be identical to the corresponding
  143. sublist of the value returned if no fIoptionfR is specified).  If
  144. one or more fIoption-valuefR pairs are specified, then the command
  145. modifies the given widget option(s) to have the given value(s);  in
  146. this case the command returns an empty string.
  147. fIOptionfR may have any of the values accepted by the fBtoplevelfR
  148. command.
  149. .SH BINDINGS
  150. .PP
  151. When a new toplevel is created, it has no default event bindings:
  152. toplevels are not intended to be interactive.
  153. .SH "SEE ALSO"
  154. frame(n)
  155. .SH KEYWORDS
  156. toplevel, widget
  157. '" Local Variables:
  158. '" mode: nroff
  159. '" End: