-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I recompiled PyQt4 from source, but the issue still exists.
On another ArchLinux system, it works well. Can someone help me?
Thanks!
on Debian:
import PyQt4.QtWebKit
dir(PyQt4.QtWebKit.QWebFrame.findAllElements)
Traceback (most recent call last):
File "", line 1, in
AttributeError: type object…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I'm having a problem, where I wish to run several command line functions from a python program using a GUI. I don't know if my problem is specific to PyQt4 or if it has to do with my bad use of python code.
What I wish to do is have a label on my GUI change its text value to inform the user which…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Are there any good PyQt4 custom widgets like at Qt-Apps.org?
I would like to start making PyQt custom widgets but online resources that I find don't seem to be clear
For example, Trolltech's and Zetcode's don't seem to be related in any way at all.
Thanks for any input :)
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I am having an issue with PyQt4. I want to create a new widget within a window, and I want this widget to have a custom color.
When i create a subclass of the QWidget class, and instantiate it, I am not able to change its background color through the setStyleSheet() function.
When I instantiate…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi all,
I'm writing a Python+Qt4 application that would ideally need to pop up a window every once in a while, to display pdf documents and allow very basic operations, namely scrolling through the different pages and printing the document.
I've found the reportLab to create pdf files, but nothing…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I been trying all day to figure out the Qt's Phonon library with Python.
My long term goal is to see if I could get it to play a mms:// stream, but since I can't find an implementation of this done anywhere, I will figure that part out myself. (figured I'd put it out there if anyone knew more about…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I have music playing program made using PySide which uses Phonon to playback audio. I updated to MacOS X Mavericks a few days ago, which meant I needed to reinstall PySide. I'm not sure which of these actions has caused this, but now whenever I try to create a Phonon MediaObject I get a Segmentation…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi,
I have Phonon::VideoWidget, Phonon::MediaObject and Phonon::MediaSource, all initialized as below.
videoWidget=new Phonon::VideoWidget(this);
mediaVideoObject=new Phonon::MediaObject(this);
Phonon::createPath(mediaVideoObject, videoWidget);
Phonon::MediaSource mediaSource= Phonon::MediaSource("D:\\file…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
hi,
I am working on Windows xp and am trying to get a simple video player running.
I am trying to use Phonon::VideoPlayer module for this. I am connecting the signal as
connect(self.player,SIGNAL("finished()"),self.player.deleteLater)
and then , when the Play button is pressed, it makes the…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I am making a music player in PyQt4, and I am using Phonon to play the music itself. This application is aimed primarily at Windows, but I plan on also supporting Mac and Linux versions. What I want to know is which audio formats are supported by Phonon so that I can ensure that the user only enters…
>>> More