[PyQt] build failure on -p linux-icc

2008-05-15 Thread Glen W. Mabey
Hello, Compiling the new sip 4.7.5 today, and I get this error: Creating sipconfig.py... Creating top level Makefile... Creating sip code generator Makefile... Creating sip module Makefile... make[1]: Entering directory `/home/gmabey/src/DiamondBack/Diamondback/src/sip-4.7.5/sipgen'

[PyQt] -KPIC option removed in icc 10.1 ?

2008-05-15 Thread Glen W. Mabey
Hello, I'm getting an error in building sip 4.7.5 with icc: icpc -o sip main.o transform.o gencode.o export.o heap.o parser.o lexer.o -L/usr/X11R6/lib make[1]: Leaving directory `/home/gmabey/src/DiamondBack/Diamondback/src/sip-4.7.5/sipgen' make[1]: Entering directory

Re: [PyQt] designer segfaults on startup after installing libpythonplugin.so and custom widget

2008-02-05 Thread Glen W. Mabey
On Tue, Feb 05, 2008 at 09:22:37AM -0600, Glen W. Mabey wrote: On Tue, Feb 05, 2008 at 02:01:50AM -0600, Phil Thompson wrote: On Monday 04 February 2008, Glen W. Mabey wrote: Nope. I run /usr/local/bin/python2.5 plugins.py from the examples/designer/plugins directory which

Re: [PyQt] designer segfaults on startup after installing libpythonplugin.so and custom widget

2008-02-05 Thread Glen W. Mabey
On Tue, Feb 05, 2008 at 02:01:50AM -0600, Phil Thompson wrote: On Monday 04 February 2008, Glen W. Mabey wrote: Nope. I run /usr/local/bin/python2.5 plugins.py from the examples/designer/plugins directory which first pops up that info window and then launches designer, but I

[PyQt] designer segfaults on startup after installing libpythonplugin.so and custom widget

2008-02-04 Thread Glen W. Mabey
Hello, I am creating a designer plugin widget for matplotlib. I am able to import the python source file (included below) that subclasses QtDesigner.QPyDesignerCustomWidgetPlugin without errors. However, when I run designer, it segfaults. Python 2.5.1 qt 4.3.3 pyqt 4.3.3 Is there something

Re: [PyQt] designer segfaults on startup after installing libpythonplugin.so and custom widget

2008-02-04 Thread Glen W. Mabey
On Mon, Feb 04, 2008 at 01:00:25PM -0600, Phil Thompson wrote: Does it crash when you start Designer, or when you create your widget? When I start designer. Does the plugin.py example work? Nope. I run /usr/local/bin/python2.5 plugins.py from the examples/designer/plugins directory

Re: [PyQt] pyqt not using qscintilla

2007-04-18 Thread Glen W. Mabey
On Tue, Apr 17, 2007 at 09:49:55PM +0100, Phil Thompson wrote: On Tuesday 17 April 2007 8:48 pm, Glen W. Mabey wrote: Hello, When I build pyqt, I see the following: Found the license file pyqt-commercial.sip. QScintilla 1.7.1 is being used. Checking to see if the qtcanvas module

[PyQt] pyqt not using qscintilla

2007-04-17 Thread Glen W. Mabey
Hello, When I build pyqt, I see the following: Found the license file pyqt-commercial.sip. QScintilla 1.7.1 is being used. Checking to see if the qtcanvas module should be built... Checking to see if the qtnetwork module should be built... Checking to see if the qttable module should be built...

Re: [PyKDE] Suggestions for approach on GUI design for CLI program

2006-08-07 Thread Glen W. Mabey
On Fri, Aug 04, 2006 at 02:26:11PM +0200, Frank Aune wrote: Im currently working on a python CLI program, which output the result in XML. Im also going to design and write a GUI frontend in PyQt for this program, and in that respect Im wondering if someone has any good guidelines or clever

Re: [PyKDE] suggestion for configure.py in PyQt-4.0beta1

2006-05-25 Thread Glen W. Mabey
phil at riverbankcomputing.co.uk wrote: On Wednesday 24 May 2006 7:04 pm, Glen W. Mabey wrote: When employing the -d and -v flags, does the following seem reasonable? It makes it so that some pretty standard operations have a better chance of succeeding, like `import pyqtconfig'. Glen

[PyKDE] suggestion for configure.py in PyQt-4.0beta1

2006-05-24 Thread Glen W. Mabey
When employing the -d and -v flags, does the following seem reasonable? It makes it so that some pretty standard operations have a better chance of succeeding, like `import pyqtconfig'. Glen *** configure.py.orig Wed May 24 11:16:13 2006 --- configure.pyWed May 24 11:17:09 2006

Re: [PyKDE] Qt+PyQt 4 commercial license cost?

2006-03-27 Thread Glen W. Mabey
On Sat, Mar 25, 2006 at 11:15:48PM +, Phil Thompson wrote: On Saturday 25 March 2006 9:03 pm, John J. Lee wrote: Up to now, using PyQt in a commercial environment has been cheap compared to Qt/C++, because the combined license costs of PyQt and Qt were low when buying them as part of

[PyKDE] pyuic and KDE widgets

2006-02-15 Thread Glen W. Mabey
Hello, I'm using 3.15 with qt3, and I've noticed that when you include a widget like QTable in a .ui file, that 'from qttable import QTable' gets automatically added to the .py file that pyuic outputs. However, when KLed is included, there is no corresponding line like 'from kdeui import KLed'

[PyKDE] overloading __str__() for wrapped class

2005-11-16 Thread Glen W. Mabey
I am trying to implement a default print method for an enum that is part of a C++ class definition. That is, given * clusty.h * * * * * #ifndef _CLUSTY_H_ #define _CLUSTY_H_ #include iostream class clusty { public: clusty( int i ); ~clusty( ); typedef

[PyKDE] typdef enum produces syntax error for sip

2005-10-27 Thread Glen W. Mabey
In my .sip file, I use the code: namespace FreqHop { class CReport { public: enum { INITIAL, UPDATE, FINAL }; typedef enum ReportType; which produces a syntax error. However, changing the last line to typedef int ReportType; results in no error being