Re: [PyQt] QSplashScreen and windows

2008-06-18 Thread Darryl Wallace
I fixed it. If anyone else gets this and doesn't know. add the line qApp.processEvents() after splash.show() darryl Darryl Wallace wrote: Has anyone had trouble getting splash screen to display properly in Windows? I imagine this is a Qt problem and not a PyQt problem but I thought I w

[PyQt] QSplashScreen and windows

2008-06-18 Thread Darryl Wallace
Has anyone had trouble getting splash screen to display properly in Windows? I imagine this is a Qt problem and not a PyQt problem but I thought I would ask here as well as Qt support. I have written a code like this: ## from PyQt4 import QtGui, Qt import sys import os

[PyQt] Virtual methods and an extra reference

2008-06-18 Thread Kevin Watters
There's a comment in siplib.c:5300ish in the sip_api_is_py_method function that I'll reproduce here: /* * Note that the callable is never garbage collected. The main * reason for this is that it's not possible to get hold of the * method cache without make incompatible changes to the SIP * AP

[PyQT] QDomNode and toString()

2008-06-18 Thread Kermit
hi all, new in pyQT, i've little problem i've an error with QDomNode.toString() function how i can print all document or a part of document to a buffer for file or network transfert thx for help Kermit ___ PyQt mailing listPyQt@riverbankcomputin

[PyQt] Embedding OpenOffice in Qt app

2008-06-18 Thread Aaron Digulla
Hello, Is it possible to embed a UNO component (in my case: The document editor of Writer) in a Qt app? I have a feeling that this can be done with ActiveQt but I'm not sure. Does anyone have any pointers how to do this? Regards, -- Aaron "Optimizer" Digulla a.k.a. Philmann Dark "It's not

[PyQt] Can I create more than one instance of a class?

2008-06-18 Thread Sundance
Hi Adonay, > Hi, I'm programing a little app which needs to open more than one > time, the same window. > Now I make an import and instance the window like this. > > from new_window import * Bad idea. As a rule of thumb, you don't want to use 'import *' when you can avoid it. It's okay while you