[PyQt] Problems building PyKDE4

2008-03-08 Thread Detlev Offenbach
Hi, trying to compile PyKDE4 yields in an error, that ksycocafactory.h cannot be found. I checked all rpm packages for openSUSE 10.3 and none contains this file. What am I doing wrong. Regards, Detlev -- Detlev Offenbach [EMAIL PROTECTED] ___ PyQt

Re: [PyQt] PyKDE4-4.0.0 release available

2008-03-08 Thread Adeodato Simó
* Jim Bublitz [Wed, 05 Mar 2008 09:46:33 -0800]: The first PyKDE4 tarball release is available at Riverbank Computing W00t. This release will build against KDE 4.0.0 or 4.0.1 FWIW it fails with 4.0.1 because that version has: #define KDE_VERSION_MINOR 0u in kdeversion.h, as a workaround

Re: [PyQt] Re: Problems building PyKDE4

2008-03-08 Thread Adeodato Simó
* Jim Bublitz [Sat, 08 Mar 2008 08:50:29 -0800]: On Saturday 08 March 2008 07:06, you wrote: Hi, trying to compile PyKDE4 yields in an error, that ksycocafactory.h cannot be found. I checked all rpm packages for openSUSE 10.3 and none contains this file. What am I doing wrong. It's

Re: [PyQt] PyKDE4-4.0.0 release available

2008-03-08 Thread Jim Bublitz
On Saturday 08 March 2008 08:34, Adeodato Simó wrote: * Jim Bublitz [Wed, 05 Mar 2008 09:46:33 -0800]: The first PyKDE4 tarball release is available at Riverbank Computing W00t. This release will build against KDE 4.0.0 or 4.0.1 FWIW it fails with 4.0.1 because that version has:

[PyQt] [PyKDE] Error while building: error: 'rindex' is not a member of 'X'

2008-03-08 Thread Adeodato Simó
Hello Jim. I get the following error when building your tarball: sipkdeuipart0.cpp: In function ‘PyObject* meth_X_rindex(PyObject*, PyObject*)’: sipkdeuipart0.cpp:232714: error: ‘rindex’ is not a member of ‘X’ sipkdeuipart0.cpp: In function ‘PyObject* meth_X_Xrindex(PyObject*, PyObject*)’:

Re: [PyQt] Re: Problems building PyKDE4

2008-03-08 Thread Detlev Offenbach
On Samstag, 8. März 2008, Adeodato Simó wrote: * Jim Bublitz [Sat, 08 Mar 2008 08:50:29 -0800]: On Saturday 08 March 2008 07:06, you wrote: Hi, trying to compile PyKDE4 yields in an error, that ksycocafactory.h cannot be found. I checked all rpm packages for openSUSE 10.3 and none

[PyQt] Popen + poll pid

2008-03-08 Thread Kevin
I've been trying to use the poll and pid attributes of popen to determine if mplayer is finished playing an audio track. I've tried using popen, popen2, popen3, etc but it tells me that there is no poll or PID module. Could anyone help me with a proper method to determine if a process is

Re: [PyQt] PyKDE4-4.0.0 release available

2008-03-08 Thread Jim Bublitz
On Saturday 08 March 2008 08:34, Adeodato Simó wrote: * Jim Bublitz [Wed, 05 Mar 2008 09:46:33 -0800]: The first PyKDE4 tarball release is available at Riverbank Computing W00t. This release will build against KDE 4.0.0 or 4.0.1 FWIW it fails with 4.0.1 because that version has:

Re: [PyQt] Simple ls -1 /home to QComboBox example

2008-03-08 Thread JMiahMan
Simone Zaccarin wrote: Perhaps the os.walk(mypath) function in python? This function returns a list of files or directory and interating over that list you can add the items in the combobox. Sorry bud that didn't work but I found from another poster that os.listdir('/home') does. I

[PyQt] Working with os.popen and qprogressdialog

2008-03-08 Thread JMiahMan
I need to create a progress bar for a command that I run with popen, but so far I've had no luck. Here's a sniplet of code: Pd = QtGui.QProgressDialog ( Creating Disk Image..., Stop, 0, 0, self) Pd.show () from os.path import isdir if isdir(self.foldername):