Re: [PyKDE] Re: About PyQt4

2005-12-12 Thread Phil Thompson
On Monday 12 December 2005 11:16 am, Douglas Soares de Andrade wrote: > Are they need in the latest snapshots ? No. Phil ___ PyKDE mailing listPyKDE@mats.imk.fraunhofer.de http://mats.imk.fraunhofer.de/mailman/listinfo/pykde

Re: [PyKDE] Re: About PyQt4

2005-12-12 Thread Douglas Soares de Andrade
Are they need in the latest snapshots ? Em Segunda 12 Dezembro 2005 13:08, Phil Thompson escreveu: > On Monday 12 December 2005 11:02 am, Douglas Soares de Andrade wrote: > > Em Segunda 12 Dezembro 2005 10:56, Douglas Soares de Andrade escreveu: > > > > The next snapshot will include extra operato

Re: [PyKDE] Re: About PyQt4

2005-12-12 Thread Phil Thompson
On Monday 12 December 2005 11:02 am, Douglas Soares de Andrade wrote: > Em Segunda 12 Dezembro 2005 10:56, Douglas Soares de Andrade escreveu: > > > The next snapshot will include extra operators to QFlags to make it > > > more natural to use. > > > > Ok; > > > > > > Is this the correct behaviour ?

Re: [PyKDE] Re: About PyQt4

2005-12-12 Thread Douglas Soares de Andrade
Em Segunda 12 Dezembro 2005 10:56, Douglas Soares de Andrade escreveu: > > The next snapshot will include extra operators to QFlags to make it more > > natural to use. > > Ok; > > > > Is this the correct behaviour ? Do we have to explicit convert the > > > QtCore.Qt.WindowFlags object to a "int" ?

Re: [PyKDE] Re: About PyQt4

2005-12-12 Thread Douglas Soares de Andrade
> The next snapshot will include extra operators to QFlags to make it more > natural to use. Ok; > > Is this the correct behaviour ? Do we have to explicit convert the > > QtCore.Qt.WindowFlags object to a "int" ? > > > > Another thing, looking at QtCore i did not found QFlags, is it there ? > >

Re: [PyKDE] Re: About PyQt4

2005-12-12 Thread Phil Thompson
On Sunday 11 December 2005 3:09 pm, Douglas Andrade wrote: > Hi ! > > Porting the "windowflags" example, I had a problem comparing two > QtCore.Qt.WindowFlags. > > Example: > > In previewwindow.py i had the following code: > > flag_type = (flags & QtCore.Qt.WindowType_Mask) > > if (flag_type == QtC

[PyKDE] Re: About PyQt4

2005-12-11 Thread Douglas Andrade
Hi Phil,   Here goes the "windowflags"  example.  2005/12/11, Douglas Andrade <[EMAIL PROTECTED]>: Hi !   Porting the "windowflags" example, I had a problem comparing two QtCore.Qt.WindowFlags.   Example:   In previewwindow.py i had the following code: flag_type = (flags & QtCore.Qt.WindowType_Ma

[PyKDE] Re: About PyQt4

2005-12-11 Thread Douglas Andrade
Hi !   Porting the "windowflags" example, I had a problem comparing two QtCore.Qt.WindowFlags.   Example:   In previewwindow.py i had the following code: flag_type = (flags & QtCore.Qt.WindowType_Mask) if (flag_type == QtCore.Qt.Window): But when i try to make the flag_type comparisons it is alwa