Re: [PyKDE] undefined KAcceleratorManager::manage(QWidget *)

2003-12-17 Thread Jim Bublitz
On Tuesday December 16 2003 21:22, Patrick Stinson wrote: any idea why KAcceleratorManager::manage(QWidget *) would be undefined in libkdecorecmodule after building pykde? I have only one libkdecore and libkdecorecmodule on my machine. I'm using: qt-3.2.2 python-2.3.2

Re: [PyKDE] Enterprise Desktop - Scripting

2003-12-17 Thread Jim Bublitz
On Tuesday December 16 2003 22:05, Kaleb Pederson wrote: [replied to PyKDE list only] On Tuesday 16 December 2003 12:21 am, Jim Bublitz wrote: One of the features of the standard enterprise desktop that appears to be missing from all of the proposals I've seen is scriptability. It makes

Re: [PyKDE] Minimizing libqtc's size

2003-12-17 Thread Ulrich Berning
Myddrin schrieb: Has anyone done any work on decreasing the size of libqtc? We are using pyqt 3.7, and libqtc is almost 4 megs. (about 900K when we get done compressing it for re-distribution. Is anyone aware of ways to decrease the size? (Already using -O1 when compiliing.) (This is on

Re: [PyKDE] Minimizing libqtc's size

2003-12-17 Thread Myddrin
On Wednesday 17 December 2003 5:16 am, Ulrich Berning wrote: But what is your problem with a module size of 4 megabytes in an environment where installations or patches always have hundreds of megabytes. Thanks for the advice I will check into using 3.9 and see how much that saves. The

[PyKDE] Error installing pykde on Debian

2003-12-17 Thread Juanjo Alvarez
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 I got this traceback while trying to start PyKDE on Debian Sid: Building PyKDE 3.8 on linux2. Python version is 2.3 Python parent directory is /usr/lib/python2.3 Python library directory is /usr/lib/python2.3/config Python include directory is

[PyKDE] Re: Enterprise Desktop - Scripting

2003-12-17 Thread Waldo Bastian
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Tue December 16 2003 09:21, Jim Bublitz wrote: I'm not sure what support to scriptability KDE can offer - at the very least it would be nice to see some recognition of the need for scripting and some emphasis on making it happen. I'd be happy

[PyKDE] QGLWidget rendering problems

2003-12-17 Thread Tom Badran
I have a widget that inherits from QGLWidget which is basically for drawing an image to the screen. I override the paintGL method in order to be able to draw, and it contains only the following code: tex = QGLWidget.convertToGLFormat(self.imageData) glTexImage2D(GL_TEXTURE_2D, 0, 3,

[PyKDE] qtable header

2003-12-17 Thread V+
Hi, I'm a newbie trying to write his first pyqt application... and I need help. I have two questions about QTable. First, I have a small table with labels in the vertical header (i.e. with row labels) but the labels don't fit the WIDTH of the header. Does anybody know how to resize horizontally

[PyKDE] hardware_keycode

2003-12-17 Thread Laur Ivan
Hello, Is there any way to get the hardware_keycode as provided by Xevent in pyqt/pykde? I've been looking on google for the past 3 days to no avail... TIA, Laur -- Laur Ivan Tel : +353-1-6674336 Software Design EngineereMail:

Re: [PyKDE] QGLWidget rendering problems

2003-12-17 Thread Phil Thompson
On Wednesday 17 December 2003 4:05 pm, Tom Badran wrote: I have a widget that inherits from QGLWidget which is basically for drawing an image to the screen. I override the paintGL method in order to be able to draw, and it contains only the following code: tex =

Re: [PyKDE] Error installing pykde on Debian

2003-12-17 Thread Jim Bublitz
On Tuesday December 16 2003 08:35, Juanjo Alvarez wrote: I got this traceback while trying to start PyKDE on Debian Sid: Building PyKDE 3.8 on linux2. Python version is 2.3 Python parent directory is /usr/lib/python2.3 Python library directory is /usr/lib/python2.3/config Python include

[PyKDE] Next Release of SIP

2003-12-17 Thread Phil Thompson
As far as I know, the current SIP snapshots (3.x and 4.x) don't have any problems. If you think differently then please let me know, otherwise I'll release v3.9.1 and v4.0rc2 in the next few days. Phil ___ PyKDE mailing list[EMAIL PROTECTED]

Re: [PyKDE] undefined KAcceleratorManager::manage(QWidget *)

2003-12-17 Thread David Boddie
On Tue, 16 Dec 2003 20:22:26, Patrick Stinson [EMAIL PROTECTED] wrote: any idea why KAcceleratorManager::manage(QWidget *) would be undefined in libkdecorecmodule after building pykde? I have only one libkdecore and libkdecorecmodule on my machine. I'm using: qt-3.2.2

Re: [PyKDE] Next Release of SIP

2003-12-17 Thread Gerard Vermeulen
On Wed, 17 Dec 2003 18:56:51 + Phil Thompson [EMAIL PROTECTED] wrote: As far as I know, the current SIP snapshots (3.x and 4.x) don't have any problems. If you think differently then please let me know, otherwise I'll release v3.9.1 and v4.0rc2 in the next few days. I noticed a problem

Re: [PyKDE] QGLWidget rendering problems

2003-12-17 Thread Tom Badran
On Wednesday 17 Dec 2003 18:40, Phil Thompson wrote: What type is expected by glTexImage2D()? The handling of the sip.voidptr type has been discussed before - but I'm not clear what type you need it converting to. The man page defines it as: void glTexImage2D( GLenum target,

Re: [PyKDE] QGLWidget rendering problems

2003-12-17 Thread Phil Thompson
On Wednesday 17 December 2003 7:50 pm, Tom Badran wrote: On Wednesday 17 Dec 2003 18:40, Phil Thompson wrote: What type is expected by glTexImage2D()? The handling of the sip.voidptr type has been discussed before - but I'm not clear what type you need it converting to. The man page

Re: [PyKDE] QGLWidget rendering problems

2003-12-17 Thread Tom Badran
On Wednesday 17 Dec 2003 22:35, Phil Thompson wrote: The Python wrapper for glTexImage2D() won't expect a void *. What does it expect? One of the example programs shows this if i do a print type( ) on the parameter passed: type 'str' Is there a trivial sip.voidptr conversion for this? Tom

Re: [PyKDE] QGLWidget rendering problems

2003-12-17 Thread David Boddie
On Wed, 17 Dec 2003 16:05:01, Tom Badran [EMAIL PROTECTED] wrote: File /home/tb100/development/wizard/src/imagedisplay.py, line 61, in paintGL glTexImage2D(GL_TEXTURE_2D, 0, 3, tex.width(), tex.height(), 0, GL_RGBA, GL_UNSIGNED_BYTE, tex.bits() ) ValueError: expect source sequence