Skip to content Skip to sidebar Skip to footer
Showing posts with the label Pyqt4

Python Webkit Making Web-site Screenshots Using Virtual Framebuffer

The problem is that I need capture web-site screenshots without running X server. So theoretically … Read more Python Webkit Making Web-site Screenshots Using Virtual Framebuffer

Using Glfw Window Inside Pyqt Window

I have a user interface that I designed using QT designer, and converted using pyqt4. In this user … Read more Using Glfw Window Inside Pyqt Window

How Do I Add A Layout To A Qtablewidget In Pyqt?

I have my qtablewidget defined like this: def __init__(self, parent = None): super(Window, … Read more How Do I Add A Layout To A Qtablewidget In Pyqt?

Pluggable Python Program

I want to make a PyQt4 program that supports plugins. Basically I want the user to be able to write… Read more Pluggable Python Program

Pyqt4 - Drag And Drop

Hey I had been going through this tutorial for understanding drag and drop methods in PyQt4. Howeve… Read more Pyqt4 - Drag And Drop

How To Connect Qlineedit Focusoutevent

I have designed a window with a QLineEdit in PyQt4 with the help of Designer. I converted .ui to .p… Read more How To Connect Qlineedit Focusoutevent

Passing Parameter To A Pyqt Thread When Started

Is there any way we can pass a parameter to QThread when the thread is started (.start) ? I found a… Read more Passing Parameter To A Pyqt Thread When Started

Printing Qprocess Stdout Only If It Contains A Substring

A PyQt4 app runs ping in a QProcess. A QTextEdit named self.output will output everything from ping… Read more Printing Qprocess Stdout Only If It Contains A Substring