doc_content
stringlengths
1
386k
doc_id
stringlengths
5
188
cancel(event=None) Cancel the drag-and-drop process.
python.library.tkinter.dnd#tkinter.dnd.DndHandler.cancel
finish(event, commit=0) Execute end of drag-and-drop functions.
python.library.tkinter.dnd#tkinter.dnd.DndHandler.finish
on_motion(event) Inspect area below mouse for target objects while drag is performed.
python.library.tkinter.dnd#tkinter.dnd.DndHandler.on_motion
on_release(event) Signal end of drag when the release pattern is triggered.
python.library.tkinter.dnd#tkinter.dnd.DndHandler.on_release
tkinter.dnd.dnd_start(source, event) Factory function for drag-and-drop process.
python.library.tkinter.dnd#tkinter.dnd.dnd_start
tkinter.READABLE tkinter.WRITABLE tkinter.EXCEPTION Constants used in the mask arguments.
python.library.tkinter#tkinter.EXCEPTION
tkinter.filedialog.askdirectory(**options)
python.library.dialog#tkinter.filedialog.askdirectory
tkinter.filedialog.askopenfile(mode="r", **options) tkinter.filedialog.askopenfiles(mode="r", **options) The above two functions create an Open dialog and return the opened file object(s) in read-only mode.
python.library.dialog#tkinter.filedialog.askopenfile
tkinter.filedialog.askopenfilename(**options) tkinter.filedialog.askopenfilenames(**options) The above two functions create an Open dialog and return the selected filename(s) that correspond to existing file(s).
python.library.dialog#tkinter.filedialog.askopenfilename
tkinter.filedialog.askopenfilename(**options) tkinter.filedialog.askopenfilenames(**options) The above two functions create an Open dialog and return the selected filename(s) that correspond to existing file(s).
python.library.dialog#tkinter.filedialog.askopenfilenames
tkinter.filedialog.askopenfile(mode="r", **options) tkinter.filedialog.askopenfiles(mode="r", **options) The above two functions create an Open dialog and return the opened file object(s) in read-only mode.
python.library.dialog#tkinter.filedialog.askopenfiles
tkinter.filedialog.asksaveasfile(mode="w", **options) Create a SaveAs dialog and return a file object opened in write-only mode.
python.library.dialog#tkinter.filedialog.asksaveasfile
tkinter.filedialog.asksaveasfilename(**options) Create a SaveAs dialog and return the selected filename.
python.library.dialog#tkinter.filedialog.asksaveasfilename
class tkinter.filedialog.Directory(master=None, **options) Create a dialog prompting the user to select a directory.
python.library.dialog#tkinter.filedialog.Directory
class tkinter.filedialog.FileDialog(master, title=None) Create a basic file selection dialog. cancel_command(event=None) Trigger the termination of the dialog window. dirs_double_event(event) Event handler for double-click event on directory. dirs_select_event(event) Event handler for click event on d...
python.library.dialog#tkinter.filedialog.FileDialog
cancel_command(event=None) Trigger the termination of the dialog window.
python.library.dialog#tkinter.filedialog.FileDialog.cancel_command
dirs_double_event(event) Event handler for double-click event on directory.
python.library.dialog#tkinter.filedialog.FileDialog.dirs_double_event
dirs_select_event(event) Event handler for click event on directory.
python.library.dialog#tkinter.filedialog.FileDialog.dirs_select_event
files_double_event(event) Event handler for double-click event on file.
python.library.dialog#tkinter.filedialog.FileDialog.files_double_event
files_select_event(event) Event handler for single-click event on file.
python.library.dialog#tkinter.filedialog.FileDialog.files_select_event
filter_command(event=None) Filter the files by directory.
python.library.dialog#tkinter.filedialog.FileDialog.filter_command
get_filter() Retrieve the file filter currently in use.
python.library.dialog#tkinter.filedialog.FileDialog.get_filter
get_selection() Retrieve the currently selected item.
python.library.dialog#tkinter.filedialog.FileDialog.get_selection
go(dir_or_file=os.curdir, pattern="*", default="", key=None) Render dialog and start event loop.
python.library.dialog#tkinter.filedialog.FileDialog.go
ok_event(event) Exit dialog returning current selection.
python.library.dialog#tkinter.filedialog.FileDialog.ok_event
quit(how=None) Exit dialog returning filename, if any.
python.library.dialog#tkinter.filedialog.FileDialog.quit
set_filter(dir, pat) Set the file filter.
python.library.dialog#tkinter.filedialog.FileDialog.set_filter
set_selection(file) Update the current file selection to file.
python.library.dialog#tkinter.filedialog.FileDialog.set_selection
class tkinter.filedialog.LoadFileDialog(master, title=None) A subclass of FileDialog that creates a dialog window for selecting an existing file. ok_command() Test that a file is provided and that the selection indicates an already existing file.
python.library.dialog#tkinter.filedialog.LoadFileDialog
ok_command() Test that a file is provided and that the selection indicates an already existing file.
python.library.dialog#tkinter.filedialog.LoadFileDialog.ok_command
class tkinter.filedialog.Open(master=None, **options) class tkinter.filedialog.SaveAs(master=None, **options) The above two classes provide native dialog windows for saving and loading files.
python.library.dialog#tkinter.filedialog.Open
class tkinter.filedialog.Open(master=None, **options) class tkinter.filedialog.SaveAs(master=None, **options) The above two classes provide native dialog windows for saving and loading files.
python.library.dialog#tkinter.filedialog.SaveAs
class tkinter.filedialog.SaveFileDialog(master, title=None) A subclass of FileDialog that creates a dialog window for selecting a destination file. ok_command() Test whether or not the selection points to a valid file that is not a directory. Confirmation is required if an already existing file is selected.
python.library.dialog#tkinter.filedialog.SaveFileDialog
ok_command() Test whether or not the selection points to a valid file that is not a directory. Confirmation is required if an already existing file is selected.
python.library.dialog#tkinter.filedialog.SaveFileDialog.ok_command
tkinter.font — Tkinter font wrapper Source code: Lib/tkinter/font.py The tkinter.font module provides the Font class for creating and using named fonts. The different font weights and slants are: tkinter.font.NORMAL tkinter.font.BOLD tkinter.font.ITALIC tkinter.font.ROMAN class tkinter.font.Font(root=None, ...
python.library.tkinter.font
tkinter.font.NORMAL tkinter.font.BOLD tkinter.font.ITALIC tkinter.font.ROMAN
python.library.tkinter.font#tkinter.font.BOLD
tkinter.font.families(root=None, displayof=None) Return the different font families.
python.library.tkinter.font#tkinter.font.families
class tkinter.font.Font(root=None, font=None, name=None, exists=False, **options) The Font class represents a named font. Font instances are given unique names and can be specified by their family, size, and style configuration. Named fonts are Tk’s method of creating and identifying fonts as a single object, rather ...
python.library.tkinter.font#tkinter.font.Font
actual(option=None, displayof=None) Return the attributes of the font.
python.library.tkinter.font#tkinter.font.Font.actual
cget(option) Retrieve an attribute of the font.
python.library.tkinter.font#tkinter.font.Font.cget
config(**options) Modify attributes of the font.
python.library.tkinter.font#tkinter.font.Font.config
copy() Return new instance of the current font.
python.library.tkinter.font#tkinter.font.Font.copy
measure(text, displayof=None) Return amount of space the text would occupy on the specified display when formatted in the current font. If no display is specified then the main application window is assumed.
python.library.tkinter.font#tkinter.font.Font.measure
metrics(*options, **kw) Return font-specific data. Options include: ascent - distance between baseline and highest point that a character of the font can occupy descent - distance between baseline and lowest point that a character of the font can occupy linespace - minimum vertical separation necessary betwee...
python.library.tkinter.font#tkinter.font.Font.metrics
tkinter.font.NORMAL tkinter.font.BOLD tkinter.font.ITALIC tkinter.font.ROMAN
python.library.tkinter.font#tkinter.font.ITALIC
tkinter.font.names(root=None) Return the names of defined fonts.
python.library.tkinter.font#tkinter.font.names
tkinter.font.nametofont(name) Return a Font representation of a tk named font.
python.library.tkinter.font#tkinter.font.nametofont
tkinter.font.NORMAL tkinter.font.BOLD tkinter.font.ITALIC tkinter.font.ROMAN
python.library.tkinter.font#tkinter.font.NORMAL
tkinter.font.NORMAL tkinter.font.BOLD tkinter.font.ITALIC tkinter.font.ROMAN
python.library.tkinter.font#tkinter.font.ROMAN
tkinter.messagebox — Tkinter message prompts Source code: Lib/tkinter/messagebox.py The tkinter.messagebox module provides a template base class as well as a variety of convenience methods for commonly used configurations. The message boxes are modal and will return a subset of (True, False, OK, None, Yes, No) based on...
python.library.tkinter.messagebox
tkinter.messagebox.askquestion(title=None, message=None, **options) tkinter.messagebox.askokcancel(title=None, message=None, **options) tkinter.messagebox.askretrycancel(title=None, message=None, **options) tkinter.messagebox.askyesno(title=None, message=None, **options) tkinter.messagebox.askyesnocancel(title=...
python.library.tkinter.messagebox#tkinter.messagebox.askokcancel
tkinter.messagebox.askquestion(title=None, message=None, **options) tkinter.messagebox.askokcancel(title=None, message=None, **options) tkinter.messagebox.askretrycancel(title=None, message=None, **options) tkinter.messagebox.askyesno(title=None, message=None, **options) tkinter.messagebox.askyesnocancel(title=...
python.library.tkinter.messagebox#tkinter.messagebox.askquestion
tkinter.messagebox.askquestion(title=None, message=None, **options) tkinter.messagebox.askokcancel(title=None, message=None, **options) tkinter.messagebox.askretrycancel(title=None, message=None, **options) tkinter.messagebox.askyesno(title=None, message=None, **options) tkinter.messagebox.askyesnocancel(title=...
python.library.tkinter.messagebox#tkinter.messagebox.askretrycancel
tkinter.messagebox.askquestion(title=None, message=None, **options) tkinter.messagebox.askokcancel(title=None, message=None, **options) tkinter.messagebox.askretrycancel(title=None, message=None, **options) tkinter.messagebox.askyesno(title=None, message=None, **options) tkinter.messagebox.askyesnocancel(title=...
python.library.tkinter.messagebox#tkinter.messagebox.askyesno
tkinter.messagebox.askquestion(title=None, message=None, **options) tkinter.messagebox.askokcancel(title=None, message=None, **options) tkinter.messagebox.askretrycancel(title=None, message=None, **options) tkinter.messagebox.askyesno(title=None, message=None, **options) tkinter.messagebox.askyesnocancel(title=...
python.library.tkinter.messagebox#tkinter.messagebox.askyesnocancel
class tkinter.messagebox.Message(master=None, **options) Create a default information message box.
python.library.tkinter.messagebox#tkinter.messagebox.Message
tkinter.messagebox.showwarning(title=None, message=None, **options) tkinter.messagebox.showerror(title=None, message=None, **options)
python.library.tkinter.messagebox#tkinter.messagebox.showerror
tkinter.messagebox.showinfo(title=None, message=None, **options)
python.library.tkinter.messagebox#tkinter.messagebox.showinfo
tkinter.messagebox.showwarning(title=None, message=None, **options) tkinter.messagebox.showerror(title=None, message=None, **options)
python.library.tkinter.messagebox#tkinter.messagebox.showwarning
tkinter.READABLE tkinter.WRITABLE tkinter.EXCEPTION Constants used in the mask arguments.
python.library.tkinter#tkinter.READABLE
tkinter.scrolledtext — Scrolled Text Widget Source code: Lib/tkinter/scrolledtext.py The tkinter.scrolledtext module provides a class of the same name which implements a basic text widget which has a vertical scroll bar configured to do the “right thing.” Using the ScrolledText class is a lot easier than setting up a t...
python.library.tkinter.scrolledtext
class tkinter.scrolledtext.ScrolledText(master=None, **kw) frame The frame which surrounds the text and scroll bar widgets. vbar The scroll bar widget.
python.library.tkinter.scrolledtext#tkinter.scrolledtext.ScrolledText
frame The frame which surrounds the text and scroll bar widgets.
python.library.tkinter.scrolledtext#tkinter.scrolledtext.ScrolledText.frame
vbar The scroll bar widget.
python.library.tkinter.scrolledtext#tkinter.scrolledtext.ScrolledText.vbar
tkinter.simpledialog.askfloat(title, prompt, **kw) tkinter.simpledialog.askinteger(title, prompt, **kw) tkinter.simpledialog.askstring(title, prompt, **kw) The above three functions provide dialogs that prompt the user to enter a value of the desired type.
python.library.dialog#tkinter.simpledialog.askfloat
tkinter.simpledialog.askfloat(title, prompt, **kw) tkinter.simpledialog.askinteger(title, prompt, **kw) tkinter.simpledialog.askstring(title, prompt, **kw) The above three functions provide dialogs that prompt the user to enter a value of the desired type.
python.library.dialog#tkinter.simpledialog.askinteger
tkinter.simpledialog.askfloat(title, prompt, **kw) tkinter.simpledialog.askinteger(title, prompt, **kw) tkinter.simpledialog.askstring(title, prompt, **kw) The above three functions provide dialogs that prompt the user to enter a value of the desired type.
python.library.dialog#tkinter.simpledialog.askstring
class tkinter.simpledialog.Dialog(parent, title=None) The base class for custom dialogs. body(master) Override to construct the dialog’s interface and return the widget that should have initial focus. buttonbox() Default behaviour adds OK and Cancel buttons. Override for custom button layouts.
python.library.dialog#tkinter.simpledialog.Dialog
body(master) Override to construct the dialog’s interface and return the widget that should have initial focus.
python.library.dialog#tkinter.simpledialog.Dialog.body
buttonbox() Default behaviour adds OK and Cancel buttons. Override for custom button layouts.
python.library.dialog#tkinter.simpledialog.Dialog.buttonbox
tkinter.Tcl(screenName=None, baseName=None, className='Tk', useTk=0) The Tcl() function is a factory function which creates an object much like that created by the Tk class, except that it does not initialize the Tk subsystem. This is most often useful when driving the Tcl interpreter in an environment where one does...
python.library.tkinter#tkinter.Tcl
tkinter.tix — Extension widgets for Tk Source code: Lib/tkinter/tix.py Deprecated since version 3.6: This Tk extension is unmaintained and should not be used in new code. Use tkinter.ttk instead. The tkinter.tix (Tk Interface Extension) module provides an additional rich set of widgets. Although the standard Tk libra...
python.library.tkinter.tix
class tkinter.tix.Balloon A Balloon that pops up over a widget to provide help. When the user moves the cursor inside a widget to which a Balloon widget has been bound, a small pop-up window with a descriptive message will be shown on the screen.
python.library.tkinter.tix#tkinter.tix.Balloon
class tkinter.tix.ButtonBox The ButtonBox widget creates a box of buttons, such as is commonly used for Ok Cancel.
python.library.tkinter.tix#tkinter.tix.ButtonBox
class tkinter.tix.CheckList The CheckList widget displays a list of items to be selected by the user. CheckList acts similarly to the Tk checkbutton or radiobutton widgets, except it is capable of handling many more items than checkbuttons or radiobuttons.
python.library.tkinter.tix#tkinter.tix.CheckList
class tkinter.tix.ComboBox The ComboBox widget is similar to the combo box control in MS Windows. The user can select a choice by either typing in the entry subwidget or selecting from the listbox subwidget.
python.library.tkinter.tix#tkinter.tix.ComboBox
class tkinter.tix.Control The Control widget is also known as the SpinBox widget. The user can adjust the value by pressing the two arrow buttons or by entering the value directly into the entry. The new value will be checked against the user-defined upper and lower limits.
python.library.tkinter.tix#tkinter.tix.Control
class tkinter.tix.DirList The DirList widget displays a list view of a directory, its previous directories and its sub-directories. The user can choose one of the directories displayed in the list or change to another directory.
python.library.tkinter.tix#tkinter.tix.DirList
class tkinter.tix.DirSelectBox The DirSelectBox is similar to the standard Motif(TM) directory-selection box. It is generally used for the user to choose a directory. DirSelectBox stores the directories mostly recently selected into a ComboBox widget so that they can be quickly selected again.
python.library.tkinter.tix#tkinter.tix.DirSelectBox
class tkinter.tix.DirSelectDialog The DirSelectDialog widget presents the directories in the file system in a dialog window. The user can use this dialog window to navigate through the file system to select the desired directory.
python.library.tkinter.tix#tkinter.tix.DirSelectDialog
class tkinter.tix.DirTree The DirTree widget displays a tree view of a directory, its previous directories and its sub-directories. The user can choose one of the directories displayed in the list or change to another directory.
python.library.tkinter.tix#tkinter.tix.DirTree
class tkinter.tix.ExFileSelectBox The ExFileSelectBox widget is usually embedded in a tixExFileSelectDialog widget. It provides a convenient method for the user to select files. The style of the ExFileSelectBox widget is very similar to the standard file dialog on MS Windows 3.1.
python.library.tkinter.tix#tkinter.tix.ExFileSelectBox
class tkinter.tix.FileEntry The FileEntry widget can be used to input a filename. The user can type in the filename manually. Alternatively, the user can press the button widget that sits next to the entry, which will bring up a file selection dialog.
python.library.tkinter.tix#tkinter.tix.FileEntry
class tkinter.tix.FileSelectBox The FileSelectBox is similar to the standard Motif(TM) file-selection box. It is generally used for the user to choose a file. FileSelectBox stores the files mostly recently selected into a ComboBox widget so that they can be quickly selected again.
python.library.tkinter.tix#tkinter.tix.FileSelectBox
class tkinter.tix.Form The Form geometry manager based on attachment rules for all Tk widgets.
python.library.tkinter.tix#tkinter.tix.Form
class tkinter.tix.HList The HList widget can be used to display any data that have a hierarchical structure, for example, file system directory trees. The list entries are indented and connected by branch lines according to their places in the hierarchy.
python.library.tkinter.tix#tkinter.tix.HList
class tkinter.tix.InputOnly The InputOnly widgets are to accept inputs from the user, which can be done with the bind command (Unix only).
python.library.tkinter.tix#tkinter.tix.InputOnly
class tkinter.tix.LabelEntry The LabelEntry widget packages an entry widget and a label into one mega widget. It can be used to simplify the creation of “entry-form” type of interface.
python.library.tkinter.tix#tkinter.tix.LabelEntry
class tkinter.tix.LabelFrame The LabelFrame widget packages a frame widget and a label into one mega widget. To create widgets inside a LabelFrame widget, one creates the new widgets relative to the frame subwidget and manage them inside the frame subwidget.
python.library.tkinter.tix#tkinter.tix.LabelFrame
class tkinter.tix.ListNoteBook The ListNoteBook widget is very similar to the TixNoteBook widget: it can be used to display many windows in a limited space using a notebook metaphor. The notebook is divided into a stack of pages (windows). At one time only one of these pages can be shown. The user can navigate throug...
python.library.tkinter.tix#tkinter.tix.ListNoteBook
class tkinter.tix.Meter The Meter widget can be used to show the progress of a background job which may take a long time to execute.
python.library.tkinter.tix#tkinter.tix.Meter
class tkinter.tix.NoteBook The NoteBook widget can be used to display many windows in a limited space using a notebook metaphor. The notebook is divided into a stack of pages. At one time only one of these pages can be shown. The user can navigate through these pages by choosing the visual “tabs” at the top of the No...
python.library.tkinter.tix#tkinter.tix.NoteBook
class tkinter.tix.OptionMenu The OptionMenu creates a menu button of options.
python.library.tkinter.tix#tkinter.tix.OptionMenu
class tkinter.tix.PanedWindow The PanedWindow widget allows the user to interactively manipulate the sizes of several panes. The panes can be arranged either vertically or horizontally. The user changes the sizes of the panes by dragging the resize handle between two panes.
python.library.tkinter.tix#tkinter.tix.PanedWindow
class tkinter.tix.PopupMenu The PopupMenu widget can be used as a replacement of the tk_popup command. The advantage of the Tix PopupMenu widget is it requires less application code to manipulate.
python.library.tkinter.tix#tkinter.tix.PopupMenu
class tkinter.tix.Select The Select widget is a container of button subwidgets. It can be used to provide radio-box or check-box style of selection options for the user.
python.library.tkinter.tix#tkinter.tix.Select
class tkinter.tix.StdButtonBox The StdButtonBox widget is a group of standard buttons for Motif-like dialog boxes.
python.library.tkinter.tix#tkinter.tix.StdButtonBox
class tkinter.tix.tixCommand The tix commands provide access to miscellaneous elements of Tix’s internal state and the Tix application context. Most of the information manipulated by these methods pertains to the application as a whole, or to a screen or display, rather than to a particular window. To view the curren...
python.library.tkinter.tix#tkinter.tix.tixCommand
tixCommand.tix_addbitmapdir(directory) Tix maintains a list of directories under which the tix_getimage() and tix_getbitmap() methods will search for image files. The standard bitmap directory is $TIX_LIBRARY/bitmaps. The tix_addbitmapdir() method adds directory into this list. By using this method, the image files o...
python.library.tkinter.tix#tkinter.tix.tixCommand.tix_addbitmapdir
tixCommand.tix_cget(option) Returns the current value of the configuration option given by option. Option may be any of the configuration options.
python.library.tkinter.tix#tkinter.tix.tixCommand.tix_cget