[pygtk] Install problem: pygobject-2.0 ??

2006-12-29 Thread Marilyn Davis
Hi, I'm trying to install pygtk-2.10.3 on my Fedora Core Release 5. I get: > Requested 'pygobject-2.0 >= 2.12.1' but version of PyGObject is 2.8.4 So I installed ppygobject-2.12.3 but I get the same error. I see that I have 2 pygobject-2.0.pc files: /usr/lib64/pkgconfig/pygobject-2.0.pc whic

[pygtk] Submenu not getting focus

2006-12-29 Thread Ian Larsen
Hello all, I believe I've encountered a bug in pygtk. When creating a context menu with a submenu, the submenu doesn't get focus until the menu item it's attached to is clicked (even though the submenu appears when the mouse is over the menu item.) The upshot is that items in the sub menu don't

Re: [pygtk] Submenu not getting focus

2006-12-29 Thread Paul Pogonyshev
Ian Larsen wrote: > I believe I've encountered a bug in pygtk. When creating a context > menu with a submenu, the submenu doesn't get focus until the menu item > it's attached to is clicked (even though the submenu appears when the > mouse is over the menu item.) Your code shows submenu after a s

Re: [pygtk] Submenu not getting focus

2006-12-29 Thread Ian Larsen
I'm not sure if I explained this clearly. The problem is not that the submenu doesn't appear -- it appears in all cases. The problem is when you click on a submenu item, the activate signal is not emitted. In order for the signal to be emitted, you have to left click on the parent item of the s

Re: [pygtk] Submenu not getting focus

2006-12-29 Thread Paul Pogonyshev
Ian Larsen wrote: > I'm not sure if I explained this clearly. > > The problem is not that the submenu doesn't appear -- it appears in > all cases. The problem is when you click on a submenu item, the > activate signal is not emitted. Don't know, here "hello" is printed when I click on "Two" or "

Re: [pygtk] Submenu not getting focus

2006-12-29 Thread Ian Larsen
Hmm, that is odd. Well, thanks for checking, I've worked around this in my program, but I thought I'd bring it to the developers' attention. -Ian On 12/29/06, Paul Pogonyshev <[EMAIL PROTECTED]> wrote: Ian Larsen wrote: > I'm not sure if I explained this clearly. > > The problem is not that th

Re: [pygtk] Submenu not getting focus

2006-12-29 Thread Gian Mario Tagliaretti
2006/12/30, Paul Pogonyshev <[EMAIL PROTECTED]>: Don't know, here "hello" is printed when I click on "Two" or "Three" item and never when I click on "One" item. It is not required to click on "One" before "Two" to get a hello. Here it behaves the same as Ian pointed out, if I don't click on

Re: [pygtk] web site

2006-12-29 Thread Gian Mario Tagliaretti
2006/12/29, Peter Morgan <[EMAIL PROTECTED]>: To check out pygtk directly from cvs use the following commands. This is for an anonymous checkout using the bash shell. First goto to your target directory - the snapshot will downloaded into a new sub directory pygtk/ created by cvs. cd /home/my_s

Re: [pygtk] Install problem: pygobject-2.0 ??

2006-12-29 Thread Gian Mario Tagliaretti
2006/12/29, Marilyn Davis <[EMAIL PROTECTED]>: I'm trying to install pygtk-2.10.3 on my Fedora Core Release 5. can you not install the package for your distro? > Requested 'pygobject-2.0 >= 2.12.1' but version of PyGObject is 2.8.4 So I installed ppygobject-2.12.3 but I get the same error.

Re: Re: [pygtk] Install problem: pygobject-2.0 ?? <- Your mail to [EMAIL PROTECTED]

2006-12-29 Thread Gian Mario Tagliaretti
2006/12/30, [EMAIL PROTECTED] <[EMAIL PROTECTED]>: Hi Gian Mario Tagliaretti! If you sent mail about "Re: [pygtk] Install problem: pygobject-2.0 ??" to [EMAIL PROTECTED], please go to: http://www.maildance.com/doorman/door.py?msg_code=1H0SZR-0006i4-EP-13 to bring your message to my attention.

Re: [pygtk] Install problem: pygobject-2.0 ??

2006-12-29 Thread Marilyn Davis
I'm sorry the doorman message made you grouchy you Gian. You got it for the private email, not for the list email. Thanks for the suggestion. It all seems to work now. Thanks again. Marilyn - On Friday, December 29, 2006 [EMAIL PROTECTED] wrote: > 2006/12/29, Marilyn Davis : > >> I'm t

Re: [pygtk] Submenu not getting focus

2006-12-29 Thread Samuel Cormier-Iijima
Strange... when I left click on the background, it (doesn't) work as Ian describes, but when I right click it works as expected, emitting the activate signal for Two. Maybe that gives some insight? Samuel On 12/29/06, Gian Mario Tagliaretti <[EMAIL PROTECTED]> wrote: 2006/12/30, Paul Pogonyshev

Re: [pygtk] Submenu not getting focus

2006-12-29 Thread Yuri Pimenov
Hi. This bug poisoned my life about month ago. So i confirm it too. http://www.mail-archive.com/pygtk@daa.com.au/msg13840.html On 30/12/06, Samuel Cormier-Iijima <[EMAIL PROTECTED]> wrote: Strange... when I left click on the background, it (doesn't) work as Ian describes, but when I right click

Re: [pygtk] Submenu not getting focus

2006-12-29 Thread jo Maquiling
I observed also here that behaviour described by Ian, I'm using gtk2.10.6-1 and pygtk.2.10.1. How about using "button-press-event" instead of "activate" signal? But of course on the tutorial, the menu there uses "activate" signal. Yuri Pimenov <[EMAIL PROTECTED]> wrote: Hi. This bug poisoned