Re: [Tkinter-discuss] Possible to create separator lines in a Tkinter Listbox?

2010-11-12 Thread python
Lion, > You may want the "box drawing characters." > [1]http://en.wikipedia.org/wiki/Box-drawing_characters > Like this > ── and this ── Great reference and examples - just what I was looking for. Thank you! Malcolm References 1. http://en.wikipedia.org/wiki/Box-drawi

Re: [Tkinter-discuss] Possible to disable individual items in a Tkinter Listbox?

2010-11-12 Thread python
Cameron, >> Is here a way to disable individual items in a Tkinter Listbox? . > Unless recent versions have a configuration for this I haven't yet learned, the functionality you're after requires a custom binding. A custom binding meets my need. Thank you, Malcolm ___

Re: [Tkinter-discuss] Possible to create separator lines in a Tkinter Listbox?

2010-11-12 Thread python
Hi Michael, > tktreectrl can be found here: http://tktreectrl.sourceforge.net/ > and the python wrapper: http://klappnase.bubble.org/TkinterTreectrl/ > tablelist: http://www.nemethi.de/ > and the python module: http://tkinter.unpy.net/wiki/TableListWrapper Thank you for the links to tkTreeCtrl a

Re: [Tkinter-discuss] Possible to create separator lines in a Tkinter Listbox?

2010-11-12 Thread python
Hi Wayne, > unichr(8213) looks pretty good. I'm not sure if your original desire is possible, but you could make it non-selectable by binding <>. > > 1. Is current selection one of the separators? > 2. If not, OK > 3. If so, change selection to the previous item Thanks! I'm following your strateg