edtools.widgets

Classes:

Hoverbox(widget[,Β text])

create a tooltip for a given widget

Spinbox([master])

Ttk Spinbox is an Entry with increment and decrement arrows It is commonly used for number entry or to select from a list of string values.

class edtools.widgets.Hoverbox(widget, text='widget info')

Bases: object

create a tooltip for a given widget

Methods:

__init__(widget[,Β text])

enter([event])

hidetip()

leave([event])

schedule()

showtip([event])

unschedule()

__init__(widget, text='widget info')
enter(event=None)
hidetip()
leave(event=None)
schedule()
showtip(event=None)
unschedule()
class edtools.widgets.Spinbox(master=None, **kw)

Bases: Entry

Ttk Spinbox is an Entry with increment and decrement arrows It is commonly used for number entry or to select from a list of string values.

Methods:

__init__([master])

Construct a Ttk Spinbox widget with the parent master.

set(value)

Sets the value of the Spinbox to value.

__init__(master=None, **kw)

Construct a Ttk Spinbox widget with the parent master.

STANDARD OPTIONS: class, cursor, style, takefocus, validate, validatecommand, xscrollcommand, invalidcommand

WIDGET-SPECIFIC OPTIONS: to, from_, increment, values, wrap, format, command

set(value)

Sets the value of the Spinbox to value.