Home
last modified time | relevance | path

Searched refs:Tk (Results 1 – 25 of 174) sorted by relevance

1234567

/third_party/python/Doc/library/
Dtkinter.rst1 :mod:`tkinter` --- Python interface to Tcl/Tk
5 :synopsis: Interface to Tcl/Tk for graphical user interfaces
13 The :mod:`tkinter` package ("Tk interface") is the standard Python interface to
14 the Tcl/Tk GUI toolkit. Both Tk and :mod:`tkinter` are available on most Unix
18 demonstrating a simple Tk interface, letting you know that :mod:`tkinter` is
19 properly installed on your system, and also showing what version of Tcl/Tk is
20 installed, so you can read the Tcl/Tk documentation specific to that version.
22 Tkinter supports a range of Tcl/Tk versions, built either with or
23 without thread support. The official Python binary release bundles Tcl/Tk 8.6
29 additions and changes, and refer to the official Tcl/Tk documentation for
[all …]
Dtk.rst4 Graphical User Interfaces with Tk
11 single: Tk
13 Tk/Tcl has long been an integral part of Python. It provides a robust and
18 The :mod:`tkinter` package is a thin object-oriented layer on top of Tcl/Tk. To
20 consult the Tk documentation, and occasionally the Tcl documentation.
21 :mod:`tkinter` is a set of wrappers that implement the Tk widgets as Python
28 which has been vastly improved in Tk 8.5. Nevertheless, there are many other
Dtkinter.tix.rst1 :mod:`tkinter.tix` --- Extension widgets for Tk
5 :synopsis: Tk Extension Widgets for Tkinter
14 This Tk extension is unmaintained and should not be used in new code. Use
19 The :mod:`tkinter.tix` (Tk Interface Extension) module provides an additional
20 rich set of widgets. Although the standard Tk library has many useful widgets,
22 commonly needed widgets that are missing from standard Tk: :class:`HList`,
48 work under Tk or Tkinter, and include :program:`TixInspect`, an inspector to
49 remotely modify and debug Tix/Tk/Tkinter applications.
56 .. class:: Tk(screenName=None, baseName=None, className='Tix')
65 :class:`tkinter.Tk` with :class:`tix.Tk`::
[all …]
/third_party/python/Doc/faq/
Dgui.rst20 Standard builds of Python include an object-oriented interface to the Tcl/Tk
24 For more info about Tk, including pointers to the source, see the
25 `Tcl/Tk home page <https://www.tcl.tk>`_. Tcl/Tk is fully portable to the
43 will still need the Tcl and Tk libraries.
45 One solution is to ship the application with the Tcl and Tk libraries, and point
60 Can I have Tk events handled while waiting for I/O?
65 code a bit. Tk has the equivalent of Xt's :c:func:`XtAddInput()` call, which allows you
66 to register a callback function which will be called from the Tk mainloop when
77 have "keyboard focus". Check out the Tk documentation for the focus command.
/third_party/python/Lib/idlelib/idle_test/
Dtest_editor.py7 from tkinter import Tk
18 cls.root = Tk()
107 cls.root = Tk()
190 cls.root = Tk()
Dtest_scrolledlist.py7 from tkinter import Tk
14 cls.root = Tk()
Dtest_debugger.py7 from tkinter import Tk
14 cls.root = Tk()
Dtemplate.py6 from tkinter import Tk
14 cls.root = Tk()
Dtest_help_about.py9 from tkinter import Tk, TclError
27 cls.root = Tk()
95 cls.root = Tk()
119 cls.root = Tk()
Dtest_calltip_w.py6 from tkinter import Tk, Text
14 cls.root = Tk()
Dtest_runscript.py6 from tkinter import Tk
15 cls.root = Tk()
Dtest_autocomplete_w.py5 from tkinter import Tk, Text
15 cls.root = Tk()
Dtest_help.py8 from tkinter import Tk
16 cls.root = root = Tk()
Dtest_filelist.py6 from tkinter import Tk
13 cls.root = Tk()
Dtest_config_key.py12 from tkinter import Tk, TclError
34 cls.root = Tk()
112 cls.root = Tk()
180 cls.root = Tk()
249 cls.root = Tk()
Dtest_window.py6 from tkinter import Tk
25 cls.root = Tk()
Dtest_zoomheight.py7 from tkinter import Tk
16 cls.root = Tk()
Dtest_query.py15 from tkinter import Tk, END
323 cls.root = root = Tk()
368 root = Tk()
386 root = Tk()
403 root = Tk()
419 root = Tk()
439 root = Tk()
Dtest_stackviewer.py6 from tkinter import Tk
24 cls.root = Tk()
Dtest_statusbar.py6 from tkinter import Tk
14 cls.root = Tk()
Dtest_multicall.py6 from tkinter import Tk, Text
14 cls.root = Tk()
Dtest_iomenu.py6 from tkinter import Tk
15 cls.root = Tk()
/third_party/python/Lib/tkinter/test/test_tkinter/
Dtest_misc.py306 root = tkinter.Tk()
307 root2 = tkinter.Tk()
308 root3 = tkinter.Tk()
320 root = tkinter.Tk()
332 root = tkinter.Tk()
339 root = tkinter.Tk()
348 root = tkinter.Tk()
/third_party/python/Tools/pynche/
DpyColorChooser.py34 from tkinter import Tk
35 self.__master = Tk()
99 self.__root = tk = Tk()
/third_party/python/Tools/demo/
Dspreadsheet.py473 import tkinter as Tk namespace
507 self.root = Tk.Tk()
509 self.beacon = Tk.Label(self.root, text="A1",
511 self.entry = Tk.Entry(self.root)
512 self.savebutton = Tk.Button(self.root, text="Save",
514 self.cellgrid = Tk.Frame(self.root)
570 cell = Tk.Label(self.cellgrid, relief='raised')
576 cell = Tk.Label(self.cellgrid, text=colnum2name(x), relief='raised')
587 cell = Tk.Label(self.cellgrid, text=str(y), relief='raised')
599 cell = Tk.Label(self.cellgrid, relief='sunken',
[all …]

1234567