[issue1230] Tix HList class missing method implementation for info_bbox

2007-10-03 Thread Ron Longo

Changes by Ron Longo:


--
components: Tkinter
severity: normal
status: open
title: Tix HList class missing method implementation for info_bbox
type: behavior
versions: Python 2.6

__
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue1230>
__
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2638] tkSimpleDialog Window Flashing

2008-07-16 Thread Ron Longo

Ron Longo <[EMAIL PROTECTED]> added the comment:

Correct.  overrideredirect only enables/disables borders.  However, 
what appears as a "flash" when the dialog box first appears is actually 
a window with only borders being drawn (no contents).  Disabling 
borders BEFORE drawing anything prevents this "flash".  I cannot say if 
this "flash" occurs on all platforms, but it does occur on all windows 
XP platforms that I've tried it on.  In each of these cases the "fixed" 
tkSimpleDialog.py prevents this "flash".  While not vital to 
application reliability, this fix does make applications appear more 
professional.

--
nosy: +ronlongo

___
Python tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue2638>
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1230] Tix HList class missing method implementation for info_bbox

2008-07-16 Thread Ron Longo

Changes by Ron Longo <[EMAIL PROTECTED]>:


Added file: http://bugs.python.org/file10924/Tix.py

___
Python tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue1230>
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2638] tkSimpleDialog Window Flashing

2008-07-18 Thread Ron Longo

Ron Longo <[EMAIL PROTECTED]> added the comment:

Excellent!  That solution works as well.

___
Python tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue2638>
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue3970] Tix Tree widget no longer instantiable.

2008-09-25 Thread Ron Longo

New submission from Ron Longo <[EMAIL PROTECTED]>:

The following code works in Python 2.5 but not in Python 2.6:  I've 
tested on Windows XP and Windows Vista.

from Tix import *
root = Tk()
t = Tree( root )

In Python 2.6 the following exception is thrown while trying to execute 
the last statement above:

Traceback (most recent call last):
  File "", line 1, in 
  File "C:\Python26\lib\lib-tk\Tix.py", line 1519, in __init__
['options'], cnf, kw)
  File "C:\Python26\lib\lib-tk\Tix.py", line 307, in __init__
self.tk.call(widgetName, self._w, *extra)
_tkinter.TclError: unknown color name "{#c3c3c3}"

--
components: Tkinter
messages: 73830
nosy: ronLongo
severity: normal
status: open
title: Tix Tree widget no longer instantiable.
versions: Python 2.6

___
Python tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue3970>
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2638] tkSimpleDialog Window Flashing

2008-04-15 Thread Ron Longo Work

New submission from Ron Longo Work <[EMAIL PROTECTED]>:

When a Tkinter window comes up that uses tkSimpleDialog to construct a 
dialog box, the window first flashes on the screen as an unpopulated 
top-level window, before being drawn in its completed state.

This problem is easily corrected by adding two lines of code to the 
constructor for class Dialog in tkSimpleDialog.py.  The first line of 
the constructor reads Toplevel.__init__( self, parent ).  After this 
line insert self.overrideredirect( True ).  The second line from the 
last in this constructor reads self.initial_focus.focus_set(), just 
before this line insert self.overrideredirect( False).  That's it.  
I've attached the revised version of this file.

--
components: Tkinter
files: tkSimpleDialog.py
messages: 65519
nosy: Longorh
severity: normal
status: open
title: tkSimpleDialog Window Flashing
versions: Python 2.5
Added file: http://bugs.python.org/file10035/tkSimpleDialog.py

__
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue2638>
__
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com