Imported modules
|
|
import Tkinter
import math
|
Functions
|
|
canvas_column
checkbutton_column
color_column
destroy_child_widgets
entry_column
label_column
scrollbar_adjuster
trace_tk_variable
|
|
canvas_column
|
canvas_column (
frame,
heading,
column,
rows,
width,
height,
)
Make a column of canvases in a grid.
|
|
checkbutton_column
|
checkbutton_column (
frame,
heading,
column,
rows,
initial=None,
)
Make a column of check buttons in a grid.
|
|
color_column
|
color_column (
frame,
heading,
column,
rows,
initial=None,
callbacks=None,
)
Make a column of color wells in a grid.
|
|
destroy_child_widgets
|
destroy_child_widgets ( w )
|
|
entry_column
|
entry_column (
frame,
heading,
column,
rows,
initial=None,
)
Make a column of entry fields in a grid.
|
|
label_column
|
label_column (
frame,
heading,
column,
rows,
initial=None,
)
Make a column of labels in a grid
|
|
scrollbar_adjuster
|
scrollbar_adjuster ( sbar )
Return function to set scrollbar range.
Functioon will remove scrollbar from grid if full document is visible.
|
|
trace_tk_variable
|
trace_tk_variable ( var, callback )
Call a callback with no arguments when Tk variable value changes.
If a Tk variable changes within a write callback for that variable
another invocation of the callback is not made by the Tk trace mechanism.
This code remedies that, calling the callback repeatedly until the variable
does not change.
|
Classes
|
|
|
|