blob: 15e85cd265db1d41692deaf9ac07b5edbafd2f1a [file] [log] [blame]
Martin v. Löwisb21cb5f2001-03-21 07:42:07 +00001About PyTix
2-----------
3
4PyTix is based on an idea of Jean-Marc Lugrin (lugrin@ms.com) who wrote
5pytix (another Python-Tix marriage). Tix widgets are an attractive and
6useful extension to Tk. See http://tix.sourceforge.net
7for more details about Tix and how to get it.
8
9Features:
10 1) It is almost complete.
11 2) Tix widgets are represented by classes in Python. Sub-widgets
12 are members of the mega-widget class. For example, if a
13 particular TixWidget (e.g. ScrolledText) has an embedded widget
14 (Text in this case), it is possible to call the methods of the
15 child directly.
16 3) The members of the class are created automatically. In the case
17 of widgets like ButtonBox, the members are added dynamically.
18
19