I've been developing a piece of software using Tix. In particular, I'm using the HList widget. I was attempting to use the info_bbox() mentod of that class to get the bounding box of a list entry. I'm using the release version Python 2.4.2. When I look in Tix.py I see that info_bbox() is not available.
Well, I don't know much about the library, Tk or Tix but it appears that all the other methods are implemented. Using those as templates I attempted to add the function just to see what would happen. I added the folloing to Tix.py line 961. def info_bbox( self, entry ): coords = self.tk.call( self._w, 'info', 'bbox', entry ).split( ' ') return map( int, coords ) Surprising to myself, this was all that it took to make this work. So I'm not sure why this method was left out. Could it have been an oversight? Anyway, where would I subit this report to have it considered that this be added to Tix? Thanks for your help. Ron Provost -- http://mail.python.org/mailman/listinfo/python-list