Home
last modified time | relevance | path

Searched refs:tix (Results 1 – 25 of 45) sorted by relevance

12

/external/python/cpython3/Doc/library/
Dtkinter.tix.rst1 :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 …]
Dtk.rst15 using the :mod:`tkinter` package, and its extension, the :mod:`tkinter.tix` and
42 tkinter.tix.rst
/external/python/cpython2/Doc/library/
Dtix.rst27 :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 …]
Dtk.rst37 tix.rst
/external/rust/crates/crossbeam-queue/src/
Darray_queue.rs428 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/
Dbuild_tkinter.py34 tix = have_args("tix")
35 if not(tcl) and not(tk) and not(tix):
36 tcl = tk = tix = True
65 if tix:
Dreadme.txt73 svn export http://svn.python.org/projects/external/tix-8.4.3.1 tix8.4.3
/external/rust/crates/crossbeam-channel/src/flavors/
Darray.rs456 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/
DINSTALL.txt14 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
DREADME.txt6 useful extension to Tk. See http://tix.sourceforge.net
/external/python/cpython3/Lib/test/
Dtest_tix.py18 tix = import_helper.import_module('tkinter.tix', deprecated=True) variable
26 self.root = tix.Tk()
/external/python/cpython3/PCbuild/
Dprepare_tcltk.bat51 %MSBUILD% "%PCBUILD%\tix.vcxproj" /p:Configuration=Release /p:Platform=Win32
55 %MSBUILD% "%PCBUILD%\tix.vcxproj" /p:Configuration=Release /p:Platform=x64
Dget_externals.bat60 if NOT "%IncludeTkinterSrc%"=="false" set libraries=%libraries% tix-8.4.3.6
Dreadme.txt286 * tcltk (used by _tkinter, tcl, tk and tix projects)
/external/python/cpython2/Demo/
DREADME53 tix Demos using the Tix widget set addition to Tkinter.
/external/python/cpython2/PC/VS7.1/
Dreadme.txt74 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/
Dgui.rst52 (http://tix.sourceforge.net/).
/external/python/cpython2/PCbuild/
Dget_externals.bat54 if NOT "%IncludeTkinter%"=="false" set libraries=%libraries% tix-8.4.3.5
Dreadme.txt239 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/
Dbuild.bat75 set tixdir=%externals_dir%\tix-8.4.3.5
/external/python/cpython2/Doc/faq/
Dgui.rst108 (http://tix.sourceforge.net/).
/external/python/cpython3/Misc/NEWS.d/
D3.6.0b3.rst185 Fixed HList.header_exists() in tkinter.tix module by addin a workaround to
D3.10.0b2.rst333 ``DeprecationWarning`` is now raised when importing :mod:`tkinter.tix`,
D3.6.0b2.rst443 Fixed support of default root window in the tkinter.tix module. Added the
/external/armnn/python/pyarmnn/
Dpylintconfig415 deprecated-modules=optparse,tkinter.tix

12