Re: [PyQt] configuring pykde4, error

2008-05-15 Thread Darren Dale
On Wednesday 14 May 2008 06:54:57 pm Jim Bublitz wrote:
 On Wednesday 14 May 2008 13:54, Darren Dale wrote:
  On Wednesday 14 May 2008 04:14:43 pm Jim Bublitz wrote:
   On Wednesday 14 May 2008 12:09, Darren Dale wrote:
On Wednesday 14 May 2008 01:58:37 pm Jim Bublitz wrote:
 On Wednesday 14 May 2008 10:27, Darren Dale wrote:
 
  g++ -c -Wno-deprecated-declarations -pipe -fPIC -O2 -march=k8 -mtune=k8
  -pipe -fomit-frame-pointer -Wall -W -D_REENTRANT -DQT_NO_DEBUG
  -DQT_CORE_LIB -DQT_GUI_LIB -I. -I../extra/kde403 -I/usr/kde/4.0/include
  -I/usr/kde/4.0/include/QtCore -I/usr/kde/4.0/include/QtGui
  -I/usr/kde/4.0/include/QtNetwork -I/usr/kde/4.0/include/sonnet
  -I/usr/include/python2.5 -I/usr/share/qt4/mkspecs/default
  -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui -I/usr/include/qt4
  -I/usr/X11R6/include -o sipkdecoreKSocketFactory.o
  sipkdecoreKSocketFactory.cpp
  /usr/share/sip/QtNetwork/qtcpsocket.sip:42:24: error: qtcpsocket.h: No
  such file or directory
  /usr/share/sip/QtNetwork/qtcpserver.sip:42:24: error: qtcpserver.h: No
  such file or directory
  /usr/share/sip/QtNetwork/qhostaddress.sip:46:26: error: qhostaddress.h:
  No such file or directory
  /usr/share/sip/QtNetwork/qudpsocket.sip:46:24: error: qudpsocket.h: No
  such file or directory
  /usr/share/sip/QtNetwork/qnetworkproxy.sip:42:27: error: qnetworkproxy.h:
  No such file or directory
  make[1]: *** [sipkdecoreKSocketFactory.o] Error 1
  make[1]: Leaving directory `/home/share/packages/PyKDE4-4.0.2-1/kdecore'
  make: *** [all] Error 2
 
  I searched for qtcpsocket.h and came up with:
  /usr/include/qt4/Qt/qtcpsocket.h
  /usr/include/qt4/QtNetwork/qtcpsocket.h
 
  gentoo is splitting qt-4.4 into seperately installable modules. I don't
  know if that is surprising to anyone or not, is this a nonstandard
  location for qt headers? I didn't see an option in configure.py to direct
  make to the qt headers. Have I overlooked anything?

 Around line 100 in configure.py there's a Python dict where the keys are
 the module name and the values are a list of include paths - QtNetwork
 should be in the list for kdecore.

 What you're showing above for an include path is:

   -I/usr/kde/4.0/include/QtNetwork

 Does that path really exist?

No, it doesn't exist. I'm not sure where that location came from. Gentoo 
installs kde into /usr/kde/{3.5,4.0}, and I need to run configure.py with 
something like -k /usr/kde/4.0. I also 
tried -k /usr -o /usr/kde/4.0/include/ -n /usr/kde/4.0/lib64/, but that 
yields the same result.

 I'm not sure how configure.py is coming up 
 with that - notice that you have what look like correct qt4 paths farther
 down, but none for QtNetwork.

 Just from a quick look at my Qt4.3 install, it looks like the Qt/ directory
 just duplicates the files from QtNetwork/, so I don't think that Qt/ needs
 to be included.

 What would help is if a) you could post a copy of the info at the beginning
 of configure.py's run - where it thinks everything is. It should be finding
 the Qt directories from your PyQt4 installation (there should be a
 pyqtconfig.py file in site-packages/ or site-packages/PyQt4 that has the
 paths from the PyQt4 install)  - it doesn't actually look for those;

My pyqtconfig is located in /usr/lib/python2.5/site-packages/. Here is the 
output of $ python configure.py -k /usr/kde/4.0/:

package /usr/lib64/python2.5/site-packages/PyKDE4

 PyKDE version 4.0.2
   ---

Python include directory is /usr/include/python2.5
Python version is 2.5.2

sip version is 4.7.5 (4.7.5)

Qt directory is /usr
Qt version is 4.4.0

PyQt directory is /usr/share/sip
PyQt version is 4.4 (4.4.0)

gcc version 4.2.3
no concatenation
if extra_cflags:
makefile.extra_cflags.append(extra_cflags)

if extra_cxxflags:
makefile.extra_cxxflags.append(extra_cxxflags)

if opt_dep_warnings == 0:
makefile.extra_cflags.append (-Wno-deprecated-declarations)
makefile.extra_cxxflags.append (-Wno-deprecated-declarations)

if extra_define:
makefile.extra_defines.append(extra_define)

makefile.extra_include_dirs.append (os.path.join (.., extra, 
kde_version_extra))
makefile.extra_include_dirs.append (opt_kdeincdir)
if pykde_includes [mname]:
for incdir in pykde_includes [mname]:
makefile.extra_include_dirs.append (os.path.join (opt_kdeincdir, 
incdir))

if extra_include_dir:
makefile.extra_include_dirs.append(extra_include_dir)

if extra_lflags:
makefile.extra_lflags.append(extra_lflags)

makefile.extra_lib_dirs.append (opt_kdelibdir)
if extra_lib_dir:
makefile.extra_lib_dirs.append(extra_lib_dir)

makefile.extra_libs.append(extra_lib)
if pykde_libs [mname]:
for lib in pykde_libs [mname]:
makefile.extra_libs.append (lib)

if sipcfg.sip_version  0x04 and imports:
# Inter-module links.
for im in imports:
makefile.extra_lib_dirs.insert(0, 

Re: [PyQt] configuring pykde4, error

2008-05-15 Thread Darren Dale
On Thursday 15 May 2008 08:26:35 am Darren Dale wrote:
 On Wednesday 14 May 2008 06:54:57 pm Jim Bublitz wrote:
  What would help is if a) you could post a copy of the info at the
  beginning of configure.py's run - where it thinks everything is. It
  should be finding the Qt directories from your PyQt4 installation (there
  should be a pyqtconfig.py file in site-packages/ or site-packages/PyQt4
  that has the paths from the PyQt4 install)  - it doesn't actually look
  for those;

 My pyqtconfig is located in /usr/lib/python2.5/site-packages/. Here is the
 output of $ python configure.py -k /usr/kde/4.0/:

 package /usr/lib64/python2.5/site-packages/PyKDE4

  PyKDE version 4.0.2
---

 Python include directory is /usr/include/python2.5
 Python version is 2.5.2

 sip version is 4.7.5 (4.7.5)

 Qt directory is /usr
 Qt version is 4.4.0

 PyQt directory is /usr/share/sip
 PyQt version is 4.4 (4.4.0)

 gcc version 4.2.3
 no concatenation
[... sorry, I must have bumped my scrollwheel here in my previous message, 
inserting a block of text from configure.py ...]

 KDE base directory is /usr/kde/4.0/
 KDE include directory is /usr/kde/4.0/include
 KDE lib directory is /usr/kde/4.0/lib64
 lib directory is lib
 KDE version is 4.0.3 (0x40003)

 PyKDE modules will be installed in
 /usr/lib64/python2.5/site-packages/PyKDE4 PyKDE .sip files will be
 installed in /usr/share/sip/PyKDE4

 PyKDE modules to be built:
kdecore solid kdeui kio kutils kparts khtml
___
PyQt mailing listPyQt@riverbankcomputing.com
http://www.riverbankcomputing.com/mailman/listinfo/pyqt


Re: [PyQt] configuring pykde4, error

2008-05-15 Thread Jim Bublitz

 I think I must have a different version of configure.py than you are
 expecting. I'm using the one that comes with pykde-4.0.2-1 at the
 riverbankcomputing website. It doesnt have a variable called
 opt_qt_inc_dir, nor a statement like  if incdir.startswith ('Q'). Here is
 part of configure.py, starting at line 587:

That seems to be the problem. Try the attached configure.py. It should be the 
one that's in PyKDE4 tarball, but I've checked and this should have the logic 
for setting up the include paths correctly. Not sure what happened here.

I'll be away from my computer until Sat night/Sun morning.

Jim



configure.py
Description: application/python
___
PyQt mailing listPyQt@riverbankcomputing.com
http://www.riverbankcomputing.com/mailman/listinfo/pyqt

[PyQt] disabling webkit

2008-05-15 Thread Matt Chambers


For some reason Qt 4.4 doesn't compile in my environment with webkit so 
I disabled it during the Qt compile because I'm more interested in 
checking out PyQt 4.4 than dealing with that.  Although, after compiling 
PyQt 4.4 against Qt 4.4.0 it complains that the webbkit .so cannot be found.


Is there a way to disabled webkit with PyQt?

--
-Matt

http://twiki.spimageworks.com/twiki/bin/view/Software/MiddleTier
___
PyQt mailing listPyQt@riverbankcomputing.com
http://www.riverbankcomputing.com/mailman/listinfo/pyqt

Re: [PyQt] disabling webkit

2008-05-15 Thread Erick Tryzelaar
On Thu, May 15, 2008 at 10:59 AM, Matt Chambers [EMAIL PROTECTED] wrote:

 For some reason Qt 4.4 doesn't compile in my environment with webkit so I
 disabled it during the Qt compile because I'm more interested in checking
 out PyQt 4.4 than dealing with that.  Although, after compiling PyQt 4.4
 against Qt 4.4.0 it complains that the webbkit .so cannot be found.

 Is there a way to disabled webkit with PyQt?

If it helps, I've found that on OS X that if pcre or openjpeg is
installed than JavaScriptCore won't build. Removing them got the rest
of it to compile. I've opened a bug with trolltech on this, but
there's no fix yet.
___
PyQt mailing listPyQt@riverbankcomputing.com
http://www.riverbankcomputing.com/mailman/listinfo/pyqt


[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'
/opt/intel/cce/10.1.015/bin/icc -c -pipe -O2 -w -I. -o main.o main.c
/opt/intel/cce/10.1.015/bin/icc -c -pipe -O2 -w -I. -o transform.o transform.c
/opt/intel/cce/10.1.015/bin/icc -c -pipe -O2 -w -I. -o gencode.o gencode.c
/opt/intel/cce/10.1.015/bin/icc -c -pipe -O2 -w -I. -o export.o export.c
/opt/intel/cce/10.1.015/bin/icc -c -pipe -O2 -w -I. -o heap.o heap.c
/opt/intel/cce/10.1.015/bin/icc -c -pipe -O2 -w -I. -o parser.o parser.c
/opt/intel/cce/10.1.015/bin/icc -c -pipe -O2 -w -I. -o lexer.o lexer.c
lexer.c.tmp(2920): (col. 2) remark: LOOP WAS VECTORIZED.
lexer.c.tmp(2897): (col. 9) remark: LOOP WAS VECTORIZED.
gencode.c(6297): (col. 5) remark: LOOP WAS VECTORIZED.
g++  -o sip main.o transform.o gencode.o export.o heap.o parser.o lexer.o 
-L/usr/X11R6/lib
main.o: In function `main':
main.c:(.text+0x1d): undefined reference to `__intel_new_proc_init'
collect2: ld returned 1 exit status
make[1]: *** [sip] Error 1
make[1]: Leaving directory 
`/home/gmabey/src/DiamondBack/Diamondback/src/sip-4.7.5/sipgen'
make: *** [all] Error 2


Possible that there is a g++ remnant in linux-icc platform mode?

Glen
___
PyQt mailing listPyQt@riverbankcomputing.com
http://www.riverbankcomputing.com/mailman/listinfo/pyqt


Re:[PyQt] Problem building PyQt 4.4 on Mac OS X (10.4.11)

2008-05-15 Thread Romuald Riem


Le 14 mai 08 à 22:54, [EMAIL PROTECTED] a écrit :


Am Mittwoch, 14. Mai 2008 schrieb Romuald Riem:

Hello,

I'm trying to build and install PyQt 4.4 on Mac os 10.4.11.
I use Python 2.5 and Qt 4.4 (GPL version). I installed PyQt 4.3.3
without any problem.

I use default values (and the link to qmake) with configure.py

The only strange thing at this step is this message:
...
QtDesigner module disabled with universal binaries.


Make ended after a while with this messages:

g++ -headerpad_max_install_names -bundle -F/Library/Frameworks -
framework Python -arch ppc -arch i386 -Wl,-syslibroot,/Developer/ 
SDKs/

MacOSX10.4u.sdk -o QtHelp.so sipQtHelpcmodule.o sipQtHelpQMap.o
sipQtHelpQList.o sipQtHelpQHelpSearchResultWidget.o
sipQtHelpQHelpSearchQueryWidget.o sipQtHelpQHelpSearchEngine.o
sipQtHelpQHelpSearchQuery.o sipQtHelpQHelpIndexWidget.o
sipQtHelpQHelpIndexModel.o sipQtHelpQHelpEngineCore.o
sipQtHelpQHelpEngine.o sipQtHelpQHelpContentWidget.o
sipQtHelpQHelpContentModel.o sipQtHelpQHelpContentItem.o -F/Library/
Frameworks -L/Library/Frameworks -framework QtHelp -lQtCLucene -
framework QtSql -framework QtXml -framework QtGui -framework Carbon -
framework AppKit -framework QtCore -lz -lm -framework
ApplicationServices -framework QtGui -framework Carbon -framework
AppKit -framework QtCore -lz -lm -framework ApplicationServices -
framework QtCore -lz -lm -framework ApplicationServices
/usr/bin/ld: for architecture i386
/usr/bin/ld: can't locate file for: -lQtCLucene
collect2: ld returned 1 exit status
/usr/bin/ld: for architecture ppc
/usr/bin/ld: can't locate file for: -lQtCLucene
collect2: ld returned 1 exit status
lipo: can't open input file: /var/tmp//cc49FS6U.out (No such file or
directory)
make[1]: *** [QtHelp.so] Error 1
make: *** [all] Error 2


blind guess: replace -lQtCLucene with -framework QtCLucene in the  
offending

Makefile..

Pete


Hello,

Thanks very much for this answer.

I try it but I've got the same problem:
...
g++ -headerpad_max_install_names -bundle -F/Library/Frameworks - 
framework Python -arch ppc -arch i386 -Wl,-syslibroot,/Developer/SDKs/ 
MacOSX10.4u.sdk -o QtHelp.so sipQtHelpcmodule.o sipQtHelpQMap.o  
sipQtHelpQList.o sipQtHelpQHelpSearchResultWidget.o  
sipQtHelpQHelpSearchQueryWidget.o sipQtHelpQHelpSearchEngine.o  
sipQtHelpQHelpSearchQuery.o sipQtHelpQHelpIndexWidget.o  
sipQtHelpQHelpIndexModel.o sipQtHelpQHelpEngineCore.o  
sipQtHelpQHelpEngine.o sipQtHelpQHelpContentWidget.o  
sipQtHelpQHelpContentModel.o sipQtHelpQHelpContentItem.o -F/Library/ 
Frameworks -L/Library/Frameworks -framework QtHelp -framework  
QtCLucene -framework QtSql -framework QtXml -framework QtGui - 
framework Carbon -framework AppKit -framework QtCore -lz -lm - 
framework ApplicationServices -framework QtGui -framework Carbon - 
framework AppKit -framework QtCore -lz -lm -framework  
ApplicationServices -framework QtCore -lz -lm -framework  
ApplicationServices

/usr/bin/ld: for architecture ppc
/usr/bin/ld: can't locate framework for: -framework QtCLucene
collect2: ld returned 1 exit status
/usr/bin/ld: for architecture i386
/usr/bin/ld: can't locate framework for: -framework QtCLucene
collect2: ld returned 1 exit status
lipo: can't open input file: /var/tmp//ccVaGZZz.out (No such file or  
directory)

make[1]: *** [QtHelp.so] Error 1

And in /usr/lib, there is a libQtCLucene.4.40.dylib so I'm not sure  
that the framework option is the solution.


Any Idea ?

R Riem



___
PyQt mailing listPyQt@riverbankcomputing.com
http://www.riverbankcomputing.com/mailman/listinfo/pyqt


[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 
`/home/gmabey/src/DiamondBack/Diamondback/src/sip-4.7.5/siplib'
/opt/intel/cce/10.1.015/bin/icc -c -wd858,1572 -KPIC -w -I.  
-I/usr/local/include/python2.5 -o siplib.o siplib.c
/opt/intel/cce/10.1.015/bin/icc -c -wd858,1572 -KPIC -w -I.  
-I/usr/local/include/python2.5 -o qtlib.o qtlib.c
/opt/intel/cce/10.1.015/bin/icc -c -wd858,1572 -KPIC -w -I.  
-I/usr/local/include/python2.5 -o threads.o threads.c
/opt/intel/cce/10.1.015/bin/icc -c -wd858,1572 -KPIC -w -I.  
-I/usr/local/include/python2.5 -o objmap.o objmap.c
/opt/intel/cce/10.1.015/bin/icpc -c -wd858,1572 -KPIC -w -I.  
-I/usr/local/include/python2.5 -o bool.o bool.cpp
icpc -shared -Wl,--version-script=sip.exp -o sip.so siplib.o qtlib.o threads.o 
objmap.o bool.o -L/usr/X11R6/lib
ld: siplib.o: relocation R_X86_64_32 against `a local symbol' can not be used 
when making a shared object; recompile with -fPIC
siplib.o: could not read symbols: Bad value
make[1]: *** [sip.so] Error 1


The man page for icc reveals:

   Removed Options
   The following options are removed in this release of the compiler:
snip
   -Kpic, -KPIC
Suggested replacement -fpic.

that is, for icc version 10.1.015.  I'm unsure whether -fPIC is
supported in earlier versions of icc.

Also, it looks like the CXX= arg that I passed on the command line
didn't get used in all cases ... ??

Thank you,
Glen Mabey
___
PyQt mailing listPyQt@riverbankcomputing.com
http://www.riverbankcomputing.com/mailman/listinfo/pyqt


Re: [PyQt] SIP, multiple constructors and exceptions

2008-05-15 Thread Phil Thompson
On Wednesday 14 May 2008 14:44:19 Andrew Perella wrote:
 When a class is wrapped with multiple constructors, the generated sip
 binding code does not raise an exception if the python calling code does
 not provide matching arguments.

 Is this by design?

Yes - as far as the code you quote is concerned. The exception is raised 
elsewhere.

Phil
___
PyQt mailing listPyQt@riverbankcomputing.com
http://www.riverbankcomputing.com/mailman/listinfo/pyqt


Re: [PyQt] Perhaps a bug with virtual methods?

2008-05-15 Thread Phil Thompson
On Wednesday 14 May 2008 17:23:47 Andrew Perella wrote:
 Suppose I have the following sip definitions:



 class A

 {

 public:

  virtual void Enter();

 };

 class B:A

 {

 public:



 };

 class C: B

 {

 public:



 };





 The generated code produces an Enter() method of the sip wrapped C class
 where if the method is not passed onto python it calls the baseclass
 A:Enter() rather than B:Enter()



 void sipC::Enter()

 {

 typedef void (*sipVH_Game_2)(sip_gilstate_t,PyObject *);



 sip_gilstate_t sipGILState;

 PyObject *meth;



 meth =
 sipIsPyMethod(sipGILState,sipPyMethods[0],sipPySelf,NULL,sipNm_States_Ent
e r);



 if (!meth)

 {

 A::Enter();

 return;

 }




 ((sipVH_Game_2)(sipModuleAPI_States_Game-em_virthandlers[2]))(sipGILState,
m eth);

 }



 This seems like a big problem. Have I missed something?

Why is it a problem - given there is no such method B::Enter()?

Phil
___
PyQt mailing listPyQt@riverbankcomputing.com
http://www.riverbankcomputing.com/mailman/listinfo/pyqt


Re: [PyQt] [PyQt4] Wrong QtCore.QLibraryInfo.BinariesPath on Windows

2008-05-15 Thread Phil Thompson
On Wednesday 14 May 2008 21:55:46 IloChab wrote:
 I have an application that uses QtCore.QLibraryInfo.BinariesPath() to
 locate Qt4 assistant and show a customized help.

 On linux I have no problem but on Windows I get a wrong translation.

 On windows I just installed :
 * qt-win-opensource-4.3.4-mingw.exe

You don't need this.

 * PyQt-Py2.5-gpl-4.3.3-2.exe
 and I didn't set anything into my environment.

 On my system I find assistant executable into two directories:
C:\Ptython2.5
C:\Qt\4.3.4\bin
 while QtCore.QLibraryInfo.BinariesPath() returns:
C:/Python2.5/PyQt4/bin
 witch doesn't exist in the last level(bin).

 What is the correct thing to do to launch assistant.exe on windows?

That's a bug that should be fixed in the v4.4 installer (when it is released).

Phil
___
PyQt mailing listPyQt@riverbankcomputing.com
http://www.riverbankcomputing.com/mailman/listinfo/pyqt


Re: [PyQt] Problem building PyQt 4.4 on Mac OS X (10.4.11)

2008-05-15 Thread Hans-Peter Jansen
Am Donnerstag, 15. Mai 2008 schrieb Romuald Riem:
 Le 14 mai 08 à 22:54, [EMAIL PROTECTED] a écrit :
  Am Mittwoch, 14. Mai 2008 schrieb Romuald Riem:
 
  blind guess: replace -lQtCLucene with -framework QtCLucene in the
  offending
  Makefile..
 

 I try it but I've got the same problem:
 ...
 g++ -headerpad_max_install_names -bundle -F/Library/Frameworks -
 framework Python -arch ppc -arch i386 -Wl,-syslibroot,/Developer/SDKs/
 MacOSX10.4u.sdk -o QtHelp.so sipQtHelpcmodule.o sipQtHelpQMap.o
 sipQtHelpQList.o sipQtHelpQHelpSearchResultWidget.o
 sipQtHelpQHelpSearchQueryWidget.o sipQtHelpQHelpSearchEngine.o
 sipQtHelpQHelpSearchQuery.o sipQtHelpQHelpIndexWidget.o
 sipQtHelpQHelpIndexModel.o sipQtHelpQHelpEngineCore.o
 sipQtHelpQHelpEngine.o sipQtHelpQHelpContentWidget.o
 sipQtHelpQHelpContentModel.o sipQtHelpQHelpContentItem.o -F/Library/
 Frameworks -L/Library/Frameworks -framework QtHelp -framework
 QtCLucene -framework QtSql -framework QtXml -framework QtGui -
 framework Carbon -framework AppKit -framework QtCore -lz -lm -
 framework ApplicationServices -framework QtGui -framework Carbon -
 framework AppKit -framework QtCore -lz -lm -framework
 ApplicationServices -framework QtCore -lz -lm -framework
 ApplicationServices
 /usr/bin/ld: for architecture ppc
 /usr/bin/ld: can't locate framework for: -framework QtCLucene
 collect2: ld returned 1 exit status
 /usr/bin/ld: for architecture i386
 /usr/bin/ld: can't locate framework for: -framework QtCLucene
 collect2: ld returned 1 exit status
 lipo: can't open input file: /var/tmp//ccVaGZZz.out (No such file or
 directory)
 make[1]: *** [QtHelp.so] Error 1

 And in /usr/lib, there is a libQtCLucene.4.40.dylib so I'm not sure
 that the framework option is the solution.

Romuald, as written before, that was really a blind guess. 

You may want to investigate, in which ways this lib differs from the others,
and try to build some of the Qt examples yourself. 

CLucene is a text search engine added in Qt 4.4.0. The trolls may don't deal 
with the Mac specifics in this area correctly (as it is a NEW 3rd party 
component..) Dual arch builds (universal binaries) come to my mind. 

Still guessing..

Pete

___
PyQt mailing listPyQt@riverbankcomputing.com
http://www.riverbankcomputing.com/mailman/listinfo/pyqt


[PyQt] Porting new examples.

2008-05-15 Thread Igor Prischepoff
Hi, I'm testing new pyqt4.4.0
Seems like setting bitmap on the background of widget is not working.
Demo example 'colliding mouse' don't display cheese bitmap as background.
Can anyone confirm this behaviour?
winxp, qt 4.4.0, pyqt 4.4.0.

---
Прищепов Игорь.
[EMAIL PROTECTED]


___
PyQt mailing listPyQt@riverbankcomputing.com
http://www.riverbankcomputing.com/mailman/listinfo/pyqt