Tagged Questions

6
votes
2answers
7k views

Loading a simple Qt Designer form in to Pyside

I create a simple form in Qt designer and am trying to load it in to a Qt application I'm creating with PySide but without much luck. Here's the generated code from `pyside-uic': # -*- coding: utf-8 ...
2
votes
1answer
82 views

No effect from ZoomIn in QTextEdit after font size change

This code runs a little window with a toolbar and a QTextEdit area. If you highlight 'bananas' and change the font size, then using zoom from either the toolbar buttons or CTRL + mouse wheel will ...
2
votes
1answer
111 views

How to double buffering a WebKit page using QWebView and PySide?

I am playing with PySide and QWebView to provide a WebKit version of a webapp on Windows. Simple and easy to install in a complex working Windows environment where only Internet Explorer exists. ...
1
vote
2answers
896 views

How can I remove a QListWidgetItem from a QListWidget and refresh the display?

I am using a QListWidget to display a list of QListWidgetItem This list is read from a file. When I close the file, I want to empty the list. I did this method on my : class ...
1
vote
1answer
140 views

Objects seems to be deleted if not assigned to object variable in PySide

I'm trying to use QStandardItemModel to represent a hierarchy of data, but when I'm adding QStandardItems to the model, I have to assign them in object member variables, or the objects seems to be ...
0
votes
0answers
34 views

Getting erratic “Invalid Signal signature” errors in PySide QWebPage

I am creating an application which automates loading webpages and creating screenshots (no, I cannot use one of the existing solutions) using PySide. One part of the app gets a list of URLs and loads ...
0
votes
1answer
59 views

QWizard: Change height/dimensions of title field

I'm currently trying to implement a simple "First steps" Wizard for a Python/Qt application I'm working on. This is really easy to do with Designer, but as usual the devil lies in the details. My ...
0
votes
1answer
80 views

QWebView mailto problem

I'm using the QWebView element in a PyQt application and mailto links do not seem to work. When I click on them nothing happens and the default mail client does not open. Pointers on fixing this ...
0
votes
0answers
618 views

System volume control with Python, QT : PySide.phonon.Phonon.AudioOutputDevice

I would like to access (r/w) the Master Volume Control. I am currently using Windows 7. There are "low-level" possibilities of controlling it: Vista/win7 application volume control interface An ...
0
votes
1answer
898 views

How to change text alignment in QTabWidget?

I cannot find a way to set the text alignment in a QTabWidget. After I've created an instance of this widget, I've set its tabPosition property to West, but I wish it showed text/label horizontally. ...
0
votes
1answer
307 views

ctypes and PySide

I'm building an app with PySide, there's some image manipulation that needs to be done and using Python code for this is way too slow. Therefore I hacked out a .dll file that will do it for me. The ...
0
votes
1answer
204 views

PySide Qt4 widget exchange in a hboxlayout

I'd like to exchange a widget inside a QHBoxLayout. This code seems to work, but as soon as I do the actual app._exec(), the code crashes with terminate called after throwing an instance of ...