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

Issue With Scrollarea In Pyqt?

This is the file I generated using qt-designer. from PyQt4 import QtCore, QtGui try: _fromUtf8… Read more Issue With Scrollarea In Pyqt?

Progress Bar With Pyqt

I have a program running many threads, one of them controls the interface and another launches some… Read more Progress Bar With Pyqt

Qtextedit.find() Doesn't Work In Python

Simple code demonstrating the problem: #!/usr/bin/env python import sys from PyQt4.QtCore import Q… Read more Qtextedit.find() Doesn't Work In Python

Animate Using A Pixmap Or Image Sequence In Python With Qt4

I have a small Python script that makes a transparent window for displaying a graphic on screen and… Read more Animate Using A Pixmap Or Image Sequence In Python With Qt4

Qt4/PyQt4 - Can Not Set The Default Font For QTextDocument

My code is like this: from PyQt4 import QtGui doc = QtGui.QTextDocument() d_font = QtGui.QFont(… Read more Qt4/PyQt4 - Can Not Set The Default Font For QTextDocument