Python

Moderators: None (Apply to moderate this forum)
Number of threads: 473
Number of posts: 1172

This Forum Only
Post New Thread
Single Post View       Linear View       Threaded View      f

Report
listbox dilemma Posted by nevle on 29 Apr 2003 at 5:06 AM
Hi guys,I've a problem with selecting an item from a listbox,could anyone tell me why the following does not work?
from Tkinter import *
root=Tk()
frame=Frame(root)
frame.pack()
listbox=Listbox(frame)
list=["fred","joe","green"]
for item in list:
listbox.insert(END,item)
listbox.pack(frame)
list=listbox.curselection()
def printitem(list):
print item
listbox.bind("<Button-1>",printitem)

nevle

Report
Re: listbox dilemma Posted by infidel on 29 Apr 2003 at 7:56 AM
: Hi guys,I've a problem with selecting an item from a listbox,could anyone tell me why the following does not work?
: from Tkinter import *
: root=Tk()
: frame=Frame(root)
: frame.pack()
: listbox=Listbox(frame)
: list=["fred","joe","green"]
: for item in list:
: listbox.insert(END,item)
: listbox.pack(frame)
: list=listbox.curselection()
: def printitem(list):
: print item
: listbox.bind("<Button-1>",printitem)

I tinkered with this a little to see what I could figure out without searching the docs, and it appears that functions bound to an event are sent one argument, the event itself. As you've defined "printitem" here, the "list" argument is actually holding an event object. Not only that, but the body of the function refers to "item" which is never set anywhere. Here's what I did:

>>> from Tkinter import *
>>> root = Tk()
>>> frame = Frame(root)
>>> frame.pack()
>>> listbox = Listbox(frame)
>>> listbox.insert(END, "FRED")
>>> listbox.insert(END, "JOE")
>>> listbox.insert(END, "GREEN")
>>> listbox.pack(frame)
>>> def printitem(event):
... 	print listbox.get(listbox.curselection())
... 	
>>> listbox.bind("<Button-1>",printitem)
'17904112printitem'
>>> root.mainloop()
Exception in Tkinter callback
Traceback (most recent call last):
  File "C:\Python22\lib\lib-tk\Tkinter.py", line 1300, in __call__
    return apply(self.func, args)
  File "<interactive input>", line 2, in printitem
  File "C:\Python22\lib\lib-tk\Tkinter.py", line 2304, in get
    return self.tk.call(self._w, 'get', first)
TclError: bad listbox index "": must be active, anchor, end, @x,y, or a number
FRED
JOE
JOE
GREEN
GREEN
GREEN
GREEN
GREEN
JOE
JOE
FRED
FRED


For some reason it prints out the item I was on before the button was clicked. That's why there's that exception in there, there was no selected item before the first click. That seems odd to me, but there must be a reasonable explanation for it. Check the documentation and let us know what you find.


infidel

Report
Re: listbox (double)dilemma Posted by nevle on 30 Apr 2003 at 5:38 AM
: I tinkered with this a little to see what I could figure out without searching the docs, and it appears that functions bound to an event are sent one argument, the event itself. As you've defined "printitem" here, the "list" argument is actually holding an event object. Not only that, but the body of the function refers to "item" which is never set anywhere. Here's what I did:
:
:
: >>> from Tkinter import *
: >>> root = Tk()
: >>> frame = Frame(root)
: >>> frame.pack()
: >>> listbox = Listbox(frame)
: >>> listbox.insert(END, "FRED")
: >>> listbox.insert(END, "JOE")
: >>> listbox.insert(END, "GREEN")
: >>> listbox.pack(frame)
: >>> def printitem(event):
: ... 	print listbox.get(listbox.curselection())
: ... 	
: >>> listbox.bind("<Button-1>",printitem)
: '17904112printitem'
: >>> root.mainloop()
: Exception in Tkinter callback
: Traceback (most recent call last):
:   File "C:\Python22\lib\lib-tk\Tkinter.py", line 1300, in __call__
:     return apply(self.func, args)
:   File "<interactive input>", line 2, in printitem
:   File "C:\Python22\lib\lib-tk\Tkinter.py", line 2304, in get
:     return self.tk.call(self._w, 'get', first)
: TclError: bad listbox index "": must be active, anchor, end, @x,y, or a number
: FRED
: JOE
: JOE
: GREEN
: GREEN
: GREEN
: GREEN
: GREEN
: JOE
: JOE
: FRED
: FRED
: 

:
: For some reason it prints out the item I was on before the button was clicked. That's why there's that exception in there, there was no selected item before the first click. That seems odd to me, but there must be a reasonable explanation for it. Check the documentation and let us know what you find.


Hi infidel,I couldn't find out much from the documentation that I have here (still that's not surprising,I only understand a very small fraction of it so far)however,if you "double-button-1" it works properly??
Also adding "listbox.select_set(0) / listbox.see(0)" sets the curser on whichever item you choose to start at(and never end a sentence with a preposition).
thanks


nevle





 

Recent Jobs

Official Programmer's Heaven Blogs
Web Hosting | Browser and Social Games | Gadgets

Popular resources on Programmersheaven.com
Assembly | Basic | C | C# | C++ | Delphi | Flash | Java | JavaScript | Pascal | Perl | PHP | Python | Ruby | Visual Basic
© Copyright 2011 Programmersheaven.com - All rights reserved.
Reproduction in whole or in part, in any form or medium without express written permission is prohibited.
Violators of this policy may be subject to legal action. Please read our Terms Of Use and Privacy Statement for more information.
Operated by CommunityHeaven, a BootstrapLabs company.