you could give Camelot a try ...
http://www.python-camelot.com/
On Sat, May 19, 2012 at 4:16 AM, Wes Goodenough wrote:
> Hello. I'm learning PyQt for use with Designer for database applications.
> I've been reading all the resources and tutorials, and I have a good amount
> of
> experience with
On 05/19/2012 02:53 AM, Brian Knudson wrote:
Good point. The only binary release of the Qt libs for MinGW appear to be for the
32 bit version. I see references on the web that there once were Qt libs for
MinGW64, but they don't appear to be around any more. I tried compiling QT from
source
Thanks Phil,
...(yes, I see the design flaw you speak of...was doing a bit of testing)
Just to add for prosterity,...your answer had a small typo...just needs a
".connect"
statement in thereso for others who may find this later,..the statement
is:
self.button.clicked.connect(lambda chec
Hi guys,
I have done this:
def setupUi(self, MainWindow):
loader = QUiLoader()
file = QFile("...")
file.open(QFile.ReadOnly)
centralwidget = loader.load(file, self)
centralwidget.setWindowFlags(Qt.Widget)
self.setCentralWidget(centralwidget)
It wor
Hi all,
just to let you know I had the same trouble mentioned in this thread [1]
regarding PyQtProxy when disconnecting the QNetworkAccessManager.finished()
signal. I was using PyQt4 4.8.5, Qt4 4.7.1, SIP 4.12.4 and Python 2.7 on Linux
Mint v.12 (Ubuntu Oneiric).
As it is mentioned in the th