/external/python/cpython3/Doc/library/ |
D | tkinter.tix.rst | 1 :mod:`tkinter.tix` --- Extension widgets for Tk 4 .. module:: tkinter.tix 9 **Source code:** :source:`Lib/tkinter/tix.py` 19 The :mod:`tkinter.tix` (Tk Interface Extension) module provides an additional 21 they are far from complete. The :mod:`tkinter.tix` library provides most of the 25 :mod:`tkinter.tix` also includes many more widgets that are generally useful in 36 `Tix Homepage <http://tix.sourceforge.net/>`_ 40 `Tix Man Pages <http://tix.sourceforge.net/dist/current/man/>`_ 43 `Tix Programming Guide <http://tix.sourceforge.net/dist/current/docs/tix-book/tix.book.html>`_ 46 `Tix Development Applications <http://tix.sourceforge.net/Tixapps/src/Tide.html>`_ [all …]
|
D | tk.rst | 15 using the :mod:`tkinter` package, and its extension, the :mod:`tkinter.tix` and 42 tkinter.tix.rst
|
/external/python/cpython2/Doc/library/ |
D | tix.rst | 27 :mod:`Tix` has been renamed to :mod:`tkinter.tix` in Python 3. The 33 `Tix Homepage <http://tix.sourceforge.net/>`_ 37 `Tix Man Pages <http://tix.sourceforge.net/dist/current/man/>`_ 40 `Tix Programming Guide <http://tix.sourceforge.net/dist/current/docs/tix-book/tix.book.html>`_ 43 `Tix Development Applications <http://tix.sourceforge.net/Tixapps/src/Tide.html>`_ 91 `Tix <http://tix.sourceforge.net/dist/current/man/html/TixCmd/TixIntro.htm>`_ 93 demo of all the :mod:`Tix` widgets in the :file:`Demo/tix` directory of the 106 <http://tix.sourceforge.net/dist/current/man/html/TixCmd/tixBalloon.htm>`_ that 112 .. \ulink{Balloon}{http://tix.sourceforge.net/dist/current/demos/samples/Balloon.tcl} 118 <http://tix.sourceforge.net/dist/current/man/html/TixCmd/tixButtonBox.htm>`_ [all …]
|
D | tk.rst | 37 tix.rst
|
/external/rust/crates/crossbeam-queue/src/ |
D | array_queue.rs | 428 let tix = tail & (self.one_lap - 1); in len() localVariable 430 return if hix < tix { in len() 431 tix - hix in len() 432 } else if hix > tix { in len() 433 self.cap - hix + tix in len() 451 let tix = tail & (self.one_lap - 1); in drop() localVariable 453 let len = if hix < tix { in drop() 454 tix - hix in drop() 455 } else if hix > tix { in drop() 456 self.cap - hix + tix in drop()
|
/external/python/cpython2/PC/VC6/ |
D | build_tkinter.py | 34 tix = have_args("tix") 35 if not(tcl) and not(tk) and not(tix): 36 tcl = tk = tix = True 65 if tix:
|
D | readme.txt | 73 svn export http://svn.python.org/projects/external/tix-8.4.3.1 tix8.4.3
|
/external/rust/crates/crossbeam-channel/src/flavors/ |
D | array.rs | 456 let tix = tail & (self.mark_bit - 1); in len() localVariable 458 return if hix < tix { in len() 459 tix - hix in len() 460 } else if hix > tix { in len() 461 self.cap - hix + tix in len() 528 let tix = tail & (self.mark_bit - 1); in drop() localVariable 530 let len = if hix < tix { in drop() 531 tix - hix in drop() 532 } else if hix > tix { in drop() 533 self.cap - hix + tix in drop()
|
/external/python/cpython2/Demo/tix/ |
D | INSTALL.txt | 14 from http://dev.scriptics.com and Tix from http://tix.sourceforge.net. 24 <tix>/library to $PYTHONHOME/lib/tix8.1, and copy the dynamic library 30 tix library from tix4.1.8.0 to tix8.1.8.3 72 is as it should be, run the 'tixwidgets.py' script in the Demo/tix directory. 74 /usr/local/bin/python Demo/tix/tixwidgets.py 83 /usr/local/bin/python Demo/tix/tixwidgets.py 87 via http://tix.sourceforge.net
|
D | README.txt | 6 useful extension to Tk. See http://tix.sourceforge.net
|
/external/python/cpython3/Lib/test/ |
D | test_tix.py | 18 tix = import_helper.import_module('tkinter.tix', deprecated=True) variable 26 self.root = tix.Tk()
|
/external/python/cpython3/PCbuild/ |
D | prepare_tcltk.bat | 51 %MSBUILD% "%PCBUILD%\tix.vcxproj" /p:Configuration=Release /p:Platform=Win32 55 %MSBUILD% "%PCBUILD%\tix.vcxproj" /p:Configuration=Release /p:Platform=x64
|
D | get_externals.bat | 60 if NOT "%IncludeTkinterSrc%"=="false" set libraries=%libraries% tix-8.4.3.6
|
D | readme.txt | 286 * tcltk (used by _tkinter, tcl, tk and tix projects)
|
/external/python/cpython2/Demo/ |
D | README | 53 tix Demos using the Tix widget set addition to Tkinter.
|
/external/python/cpython2/PC/VS7.1/ |
D | readme.txt | 74 svn export http://svn.python.org/projects/external/tix-8.4.0 115 cd dist\tix-8.4.0\win 378 The tix makefile (tix-8.4.0\win\makefile.vc) must be modified to
|
/external/python/cpython3/Doc/faq/ |
D | gui.rst | 52 (http://tix.sourceforge.net/).
|
/external/python/cpython2/PCbuild/ |
D | get_externals.bat | 54 if NOT "%IncludeTkinter%"=="false" set libraries=%libraries% tix-8.4.3.5
|
D | readme.txt | 239 projects. The tix.vcxproj project also builds the Tix extended 248 The tcl, tk, and tix sub-projects do not clean their builds with 324 * tcltk (used by _tkinter, tcl, tk and tix projects)
|
/external/python/cpython2/PC/VS9.0/ |
D | build.bat | 75 set tixdir=%externals_dir%\tix-8.4.3.5
|
/external/python/cpython2/Doc/faq/ |
D | gui.rst | 108 (http://tix.sourceforge.net/).
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.6.0b3.rst | 185 Fixed HList.header_exists() in tkinter.tix module by addin a workaround to
|
D | 3.10.0b2.rst | 333 ``DeprecationWarning`` is now raised when importing :mod:`tkinter.tix`,
|
D | 3.6.0b2.rst | 443 Fixed support of default root window in the tkinter.tix module. Added the
|
/external/armnn/python/pyarmnn/ |
D | pylintconfig | 415 deprecated-modules=optparse,tkinter.tix
|