Movatterモバイル変換


[0]ホーム

URL:


Tcl8.6.17/Tk8.6.17 Documentation>Tk Commands, version 8.6.17> frame

Tcl/Tk Applications |Tcl Commands |Tk Commands |[incr Tcl] Package Commands |SQLite3 Package Commands |TDBC Package Commands |tdbc::mysql Package Commands |tdbc::odbc Package Commands |tdbc::postgres Package Commands |tdbc::sqlite3 Package Commands |Thread Package Commands |Tcl C API |Tk C API |[incr Tcl] Package C API |TDBC Package C API

NAME
frame — Create and manipulate 'frame' simple container widgets
SYNOPSIS
STANDARD OPTIONS
-borderwidth or -bd, borderWidth, BorderWidth
-cursor, cursor, Cursor
-highlightbackground, highlightBackground, HighlightBackground
-highlightcolor, highlightColor, HighlightColor
-highlightthickness, highlightThickness, HighlightThickness
-padx, padX, Pad
-pady, padY, Pad
-relief, relief, Relief
-takefocus, takeFocus, TakeFocus
WIDGET-SPECIFIC OPTIONS
-background, background, Background
-class, class, Class
-colormap, colormap, Colormap
-container, container, Container
-height, height, Height
-visual, visual, Visual
-width, width, Width
DESCRIPTION
WIDGET COMMAND
pathNamecgetoption
pathNameconfigure ?option? ?value option value ...?
BINDINGS
SEE ALSO
KEYWORDS

NAME

frame — Create and manipulate 'frame' simple container widgets

SYNOPSIS

framepathName ?options?

STANDARD OPTIONS

-borderwidth or -bd, borderWidth, BorderWidth
-cursor, cursor, Cursor
-highlightbackground, highlightBackground, HighlightBackground
-highlightcolor, highlightColor, HighlightColor
-highlightthickness, highlightThickness, HighlightThickness
-padx, padX, Pad
-pady, padY, Pad
-relief, relief, Relief
-takefocus, takeFocus, TakeFocus

WIDGET-SPECIFIC OPTIONS

Command-Line Name:-background
Database Name:background
Database Class:Background
This option is the same as the standard-background optionexcept that its value may also be specified as an empty string.In this case, the widget will display no background or border, andno colors will be consumed from its colormap for its backgroundand border.

Command-Line Name:-class
Database Name:class
Database Class:Class
Specifies a class for the window.This class will be used when querying the option database forthe window's other options, and it will also be used later forother purposes such as bindings.The-class option may not be changed with theconfigurewidget command.

Command-Line Name:-colormap
Database Name:colormap
Database Class:Colormap
Specifies a colormap to use for the window.The value may be eithernew, in which case a new colormap iscreated for the window and its children, or the name of anotherwindow (which must be on the same screen and have the same visualaspathName), in which case the new window will use the colormapfrom the specified window.If the-colormap option is not specified, the new windowuses the same colormap as its parent.This option may not be changed with theconfigurewidget command.

Command-Line Name:-container
Database Name:container
Database Class:Container
The value must be a boolean. If true, it means that this window willbe used as a container in which some other application will be embedded(for example, a Tk toplevel can be embedded using the-use option).The window will support the appropriate window manager protocols forthings like geometry requests. The window should not have anychildren of its own in this application.This option may not be changed with theconfigurewidget command.Note that-borderwidth,-padx and-pady are ignored whenconfigured as a container since a container has no border.

Command-Line Name:-height
Database Name:height
Database Class:Height
Specifies the desired height for the window in any of the formsacceptable toTk_GetPixels. If this option is less than or equalto zero then the window will not request any size at all. Note that thissets the total height of the frame, any-borderwidth or similar isnot added. Normally-height should not be used if a propagatinggeometry manager, such asgrid orpack, is used within theframe since the geometry manager will override the height of the frame.

Command-Line Name:-visual
Database Name:visual
Database Class:Visual
Specifies visual information for the new window in any of theforms accepted byTk_GetVisual.If this option is not specified, the new window will use the samevisual as its parent.The-visual option may not be modified with theconfigurewidget command.

Command-Line Name:-width
Database Name:width
Database Class:Width
Specifies the desired width for the window in any of the formsacceptable toTk_GetPixels. If this option is less than or equalto zero then the window will not request any size at all. Note that thissets the total width of the frame, any-borderwidth or similar isnot added. Normally-width should not be used if a propagatinggeometry manager, such asgrid orpack, is used within theframe since the geometry manager will override the width of the frame.

DESCRIPTION

Theframe command creates a new window (given by thepathName argument) and makes it into a frame widget.Additionaloptions, described above, may be specified on the command lineor in the option databaseto configure aspects of the frame such as its background colorand relief. Theframe command returns thepath name of the new window.

A frame is a simple widget. Its primary purpose is to act as aspacer or container for complex window layouts. The only featuresof a frame are its background color and an optional 3-D border to make theframe appear raised or sunken.

WIDGET COMMAND

Theframe command creates a new Tcl command whosename is the same as the path name of the frame's window. Thiscommand may be used to invoke variousoperations on the widget. It has the following general form:

pathName option?arg arg ...?

PathName is the name of the command, which is the same asthe frame widget's path name.Option and theargsdetermine the exact behavior of the command. The followingcommands are possible for frame widgets:

pathNamecgetoption
Returns the current value of the configuration option givenbyoption.Option may have any of the values accepted by theframecommand.

pathNameconfigure ?option? ?value option value ...?
Query or modify the configuration options of the widget.If nooption is specified, returns a list describing all ofthe available options forpathName (seeTk_ConfigureInfo forinformation on the format of this list). Ifoption is specifiedwith novalue, then the command returns a list describing theone named option (this list will be identical to the correspondingsublist of the value returned if nooption is specified). Ifone or moreoption-value pairs are specified, then the commandmodifies the given widget option(s) to have the given value(s); inthis case the command returns an empty string.Option may have any of the values accepted by theframecommand.

BINDINGS

When a new frame is created, it has no default event bindings:frames are not intended to be interactive.

SEE ALSO

labelframe,toplevel,ttk::frame

KEYWORDS

frame,widget
Copyright © 1990-1994 The Regents of the University of California.
Copyright © 1994-1996 Sun Microsystems, Inc.

[8]ページ先頭

©2009-2025 Movatter.jp