Home
last modified time | relevance | path

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

12345678910>>...20

/external/python/cpython2/Doc/library/
Dtkinter.rst1 :mod:`Tkinter` --- Python interface to Tcl/Tk
5 :synopsis: Interface to Tcl/Tk for graphical user interfaces
9 The :mod:`Tkinter` module ("Tk interface") is the standard Python interface to
10 the Tk GUI toolkit. Both Tk and :mod:`Tkinter` are available on most Unix
11 platforms, as well as on Windows systems. (Tk itself is not part of Python; it
15 demonstrating a simple Tk interface, letting you know that :mod:`Tkinter` is
16 properly installed on your system, and also showing what version of Tcl/Tk is
17 installed, so you can read the Tcl/Tk documentation specific to that version.
30 The Python Tkinter Topic Guide provides a great deal of information on using Tk
31 from Python and links to other sources of information on Tk.
[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` module 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
29 which has been vastly improved in Tk 8.5. Nevertheless, there are many other
Dtix.rst1 :mod:`Tix` --- Extension widgets for Tk
5 :synopsis: Tk Extension Widgets for Tkinter
11 The :mod:`Tix` (Tk Interface Extension) module provides an additional rich set
12 of widgets. Although the standard Tk library has many useful widgets, they are
14 widgets that are missing from standard Tk: :class:`HList`, :class:`ComboBox`,
45 work under Tk or Tkinter, and include :program:`TixInspect`, an inspector to
46 remotely modify and debug Tix/Tk/Tkinter applications.
61 :mod:`Tix`, and replace the toplevel call to :class:`Tkinter.Tk` with
62 :class:`Tix.Tk`::
66 root = Tix.Tk()
[all …]
/external/python/cpython3/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 Tk GUI toolkit. Both Tk and :mod:`tkinter` are available on most Unix
15 platforms, as well as on Windows systems. (Tk itself is not part of Python; it
19 demonstrating a simple Tk interface, letting you know that :mod:`tkinter` is
20 properly installed on your system, and also showing what version of Tcl/Tk is
21 installed, so you can read the Tcl/Tk documentation specific to that version.
28 The Python Tkinter Topic Guide provides a great deal of information on using Tk
29 from Python and links to other sources of information on Tk.
[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
29 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 …]
/external/python/cpython2/Doc/faq/
Dgui.rst21 Standard builds of Python include an object-oriented interface to the Tcl/Tk
23 For more info about Tk, including pointers to the source, see the Tcl/Tk home
24 page at https://www.tcl.tk. Tcl/Tk is fully portable to the Mac OS X, Windows,
99 will still need the Tcl and Tk libraries.
101 One solution is to ship the application with the Tcl and Tk libraries, and point
116 Can I have Tk events handled while waiting for I/O?
121 code a bit. Tk has the equivalent of Xt's :c:func:`XtAddInput()` call, which allows you
122 to register a callback function which will be called from the Tk mainloop when
133 have "keyboard focus". Check out the Tk documentation for the focus command.
/external/python/cpython2/Demo/tix/
DINSTALL.txt6 0) To use Tix.py, you need Tcl/Tk (V8.3.3), Tix (V8.1.1) and Python (V2.1.1).
10 Older versions, e.g. Tix 4.1 and Tk 8.0, might also work.
13 any machine with Tix and Python installed. You can get Tcl and Tk
16 1) Build and install Tcl/Tk 8.3. Build and install Tix 8.1.
39 # *** Uncomment and edit to reflect where your Tcl/Tk libraries are:
41 # *** Uncomment and edit to reflect where your Tcl/Tk headers are:
56 # *** Uncomment and edit to reflect your Tcl/Tk versions:
77 the Tcl, Tk and Tix library files. This is done by setting the
/external/python/cpython3/Doc/faq/
Dgui.rst29 Standard builds of Python include an object-oriented interface to the Tcl/Tk
33 For more info about Tk, including pointers to the source, see the
34 `Tcl/Tk home page <https://www.tcl.tk>`_. Tcl/Tk is fully portable to the
123 will still need the Tcl and Tk libraries.
125 One solution is to ship the application with the Tcl and Tk libraries, and point
140 Can I have Tk events handled while waiting for I/O?
145 code a bit. Tk has the equivalent of Xt's :c:func:`XtAddInput()` call, which allows you
146 to register a callback function which will be called from the Tk mainloop when
157 have "keyboard focus". Check out the Tk documentation for the focus command.
/external/python/cpython3/Lib/idlelib/idle_test/
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_pyshell.py7 from tkinter import Tk
15 cls.root = Tk()
Dtest_calltip_w.py6 from tkinter import Tk, Text
14 cls.root = Tk()
Dtest_autocomplete_w.py5 from tkinter import Tk, Text
15 cls.root = Tk()
Dtest_runscript.py6 from tkinter import Tk
15 cls.root = Tk()
Dtest_tree.py7 from tkinter import Tk
14 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()
/external/python/cpython2/Lib/idlelib/idle_test/
Dtest_textview.py6 from Tkinter import Tk
22 cls.root = Tk()
63 cls.root = Tk()
Dtest_configdialog.py8 from Tkinter import Tk
18 cls.root = Tk()
/external/python/cpython3/Tools/pynche/
DpyColorChooser.py34 from tkinter import Tk
35 self.__master = Tk()
99 self.__root = tk = Tk()
/external/python/cpython2/Tools/pynche/
DpyColorChooser.py34 from Tkinter import Tk
35 self.__master = Tk()
99 self.__root = tk = Tk()

12345678910>>...20