Re: [PyQt] About keyPressEvent

2007-08-23 Thread Rob Knapp
;ve been moving code around and missed a line or two. --- Rob Knapp Lead Developer www.bizling.com ___ PyQt mailing listPyQt@riverbankcomputing.com http://www.riverbankcomputing.com/mailman/listinfo/pyqt

Re: [PyQt] Need Help Wrapping WebKit

2007-07-16 Thread Rob Knapp
> On Sat, 14 Jul 2007 07:15:29 -0400, Rob Knapp wrote: > > > But, now I've hit my first snag. I'm trying to wrap WebKitQt up for use in > > the project, and following the example at riverbankcompting.com/Docs, > > (which looks like it was written for qt3, sinc

Re: [PyQt] Need Help Wrapping WebKit

2007-07-16 Thread Rob Knapp
> On Sat, 14 Jul 2007 07:15:29 -0400, Rob Knapp wrote: > > > But, now I've hit my first snag. I'm trying to wrap WebKitQt up for use in > > the project, and following the example at riverbankcompting.com/Docs, > > (which looks like it was written for qt3, sinc

[PyQt] Need Help Wrapping WebKit

2007-07-14 Thread Rob Knapp
Hey everyone, I've been away from the PyQt world for too long. Last time I used it was back in the 3.3 days. But recently, I've found myself playing with a personal project on Linux (and trying to get it run on Mac/Windows as well...), and I decided to go back and see what PyQT4 was all abou

Re: [PyKDE] Windows systray application

2005-06-28 Thread Rob Knapp
On Tue, 2005-06-28 at 14:11 +0300, basse wrote: > > Hi, I've been hunting for two days now a way to create an application with > PyQT > (on winXP), that will hide itself on systray. only things I found was some > references to WM_ messages and winEventFilters.. but no real example what that > mea

Re: [PyKDE] PyQT module size

2005-02-18 Thread Rob Knapp
On Thu, 2005-02-17 at 11:47 -0800, Brian Thomason wrote: > We've been using PyQT/PyKDE here at Linspire for some time now to > develop a handful of applications. One of these is Lsongs, and it has > grown quite large and has a very large memory footprint. We're trying > to reduce this a bit in

Re: [PyKDE] PyQT 3.9 and QT 3.2.3 and the reparent method

2004-01-13 Thread Rob Knapp
problem in eric3 and had to incorporate a workaround that isn't using reparent. Detlev Am Dienstag, 13. Januar 2004 15:20 schrieb Rob Knapp: I'm trying to upgrade to 3.9 and QT 3.2.3 but I'm having issues with the reparent method. Below is an interactive session showing the

[PyKDE] PyQT 3.9 and QT 3.2.3 and the reparent method

2004-01-13 Thread Rob Knapp
I'm trying to upgrade to 3.9 and QT 3.2.3 but I'm having issues with the reparent method. Below is an interactive session showing the issue. According to the newsgroups this error occurs when the extension returns NULL instead of Py_None. I've verified that I'm using sip 3.9 and not an earlie

[PyKDE] QT 3.2?

2003-07-23 Thread Rob Knapp
Is anyone running PyQT 3.7 with the newly released QT 3.2? There are some enhancments that would be very nice to have... ___ PyKDE mailing list[EMAIL PROTECTED] http://mats.imk.fraunhofer.de/mailman/listinfo/pykde

Re: [PyKDE] More 3.7 compile issues

2003-07-09 Thread Rob Knapp
sses for errors. Apparently the buid of sip was failing to copy libsip.dll and sip.exe over for some reason (in use by another app maybe?) And the second issue came from not realizing an error had occured during the make install. On Wed July 9 2003 12:30 pm, Phil Thompson wrote: > On Wednesday 09 July

[PyKDE] More 3.7 compile issues

2003-07-09 Thread Rob Knapp
I'm currently compiling on a win32 platform and the build process reported that sipBadLengthForSlice was an unknown identifier. The line number provided was line 130 in spi/qstringlist.sip. For the time being I've hacked the .sip file to simply return NULL in those circumstances since my immedi

Re: [PyKDE] Connecting PYSIGNALS to C++ slots

2003-07-06 Thread Rob Knapp
On Sun July 6 2003 11:42 am, Phil Thompson wrote: > What's a "python QT object"? > > Phil Ooops, some internal team jargon slipped in there I guess. It's a designation we use for an instance of a class that was written in python that inherits from a QT object. [Helps us keep straight the piece

[PyKDE] Connecting PYSIGNALS to C++ slots

2003-07-06 Thread Rob Knapp
I am writting a C++ wrapper for some python QT objects. As a result, I need to recieve the PYSIGNALS from the python object and retransmit them so my container binary can connect to them. [This is a double post (kind of), I posted the same question on thursday (7/3/2003), but I've tried a bunch

Re: [PyKDE] Using SIP to wrap python objects

2003-07-03 Thread Rob Knapp
On Thu June 12 2003 09:05 pm, Frederick Polgardy Jr wrote: > On Thursday 12 June 2003 18:31, Rob Knapp wrote: > > I've found myself in a position where I need to present a python object > > to a C++ object, and it needs to look like a C++ object. The target > > applicati

Re: [PyKDE] Using SIP to wrap python objects

2003-06-13 Thread Rob Knapp
[snip] > > So, if I inherit a C++ object from QWidget and write a sip binding, then > > I'm set. That's what I thought, but what I was hoping for was some way > > to automatically generate this "in between" object. > > It can't be automatically generated if you are adding functionality (the > new

Re: [PyKDE] Using SIP to wrap python objects

2003-06-13 Thread Rob Knapp
On Friday 13 June 2003 04:21 am, Phil Thompson wrote: > On Friday 13 June 2003 12:31 am, Rob Knapp wrote: > > I've found myself in a position where I need to present a python object > > to a C++ object, and it needs to look like a C++ object. The target > > applicati

Re: [PyKDE] Using SIP to wrap python objects

2003-06-12 Thread Rob Knapp
On Thursday 12 June 2003 09:05 pm, Frederick Polgardy Jr wrote: > Why not write what's called (in "Patterns" speak) an Adaptor class: one > which provides its own interface, and keeps track of the Python objects it > needs to use internally. What kind of interface is the target application > expe

[PyKDE] Using SIP to wrap python objects

2003-06-12 Thread Rob Knapp
I've found myself in a position where I need to present a python object to a C++ object, and it needs to look like a C++ object. The target application knows nothing of python. Would it be possible to create an object using SIP that I can inherit from and use the SIP api to convert into a CppP