Searched refs:Tk (Results 1 – 25 of 174) sorted by relevance
1234567
/third_party/python/Doc/library/ |
D | tkinter.rst | 1 :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 …]
|
D | tk.rst | 4 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
|
D | tkinter.tix.rst | 1 :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/ |
D | gui.rst | 20 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/ |
D | test_editor.py | 7 from tkinter import Tk 18 cls.root = Tk() 107 cls.root = Tk() 190 cls.root = Tk()
|
D | test_scrolledlist.py | 7 from tkinter import Tk 14 cls.root = Tk()
|
D | test_debugger.py | 7 from tkinter import Tk 14 cls.root = Tk()
|
D | template.py | 6 from tkinter import Tk 14 cls.root = Tk()
|
D | test_help_about.py | 9 from tkinter import Tk, TclError 27 cls.root = Tk() 95 cls.root = Tk() 119 cls.root = Tk()
|
D | test_calltip_w.py | 6 from tkinter import Tk, Text 14 cls.root = Tk()
|
D | test_runscript.py | 6 from tkinter import Tk 15 cls.root = Tk()
|
D | test_autocomplete_w.py | 5 from tkinter import Tk, Text 15 cls.root = Tk()
|
D | test_help.py | 8 from tkinter import Tk 16 cls.root = root = Tk()
|
D | test_filelist.py | 6 from tkinter import Tk 13 cls.root = Tk()
|
D | test_config_key.py | 12 from tkinter import Tk, TclError 34 cls.root = Tk() 112 cls.root = Tk() 180 cls.root = Tk() 249 cls.root = Tk()
|
D | test_window.py | 6 from tkinter import Tk 25 cls.root = Tk()
|
D | test_zoomheight.py | 7 from tkinter import Tk 16 cls.root = Tk()
|
D | test_query.py | 15 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()
|
D | test_stackviewer.py | 6 from tkinter import Tk 24 cls.root = Tk()
|
D | test_statusbar.py | 6 from tkinter import Tk 14 cls.root = Tk()
|
D | test_multicall.py | 6 from tkinter import Tk, Text 14 cls.root = Tk()
|
D | test_iomenu.py | 6 from tkinter import Tk 15 cls.root = Tk()
|
/third_party/python/Lib/tkinter/test/test_tkinter/ |
D | test_misc.py | 306 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/ |
D | pyColorChooser.py | 34 from tkinter import Tk 35 self.__master = Tk() 99 self.__root = tk = Tk()
|
/third_party/python/Tools/demo/ |
D | spreadsheet.py | 473 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