[PyQt] Small fix

2010-05-20 Thread Julio César Gázquez
Hello. This is a small patch fixing setItemDelegateForColumn and setItemDelegateForColumn. I can't test it (my build is broken, I got a "QWidget: Must construct a QApplication before a QPaintDevice"), but this patch makes those currently broken functions like the similar, but working setItemDe

Re: [PyQt] SIP exception handling

2010-05-20 Thread Qin Shen
Thanks so much, Phil! That's exactly where the problem was! All I had to do is to change: const std::string sgRole() const; to const std::string sgRole() const throw(TipShotgun::Shotgun::Exception); Thanks!! -Jean Phil Thompson wrote: On Wed, 19 May 2010 16:02:38 -0700, Qin Shen wrote

[PyQt] Suggestion to get events from a web page

2010-05-20 Thread Mailing List SVR
Hi all, I need to display a web page in my pyqt application, qwebview make this really simple but my interface is without keyboard so I have to show a virtual keyboard when the user select an input text or a selectbox or a textarea so I need to be notified when a such selection occur in the web

[PyQt] QTableWidget: cannot alter text of header labels

2010-05-20 Thread Nick Gaens
Hello PyQt, I'm wondering why I can't change the text that's displayed in the horizontal or vertical header of my standard QTableWidget. - Constructor and simple count specification self.tw = QtGui.QTableWidget() self.tw.setColumnCount(5) - Attempt 1: > self.tw.setHorizontalHeaderLabels(("

[PyQt] PyQt compiled for Snow Leopard 10.6.3

2010-05-20 Thread Scott Ballard
Howdy, Does anyone have a compiled version of PyQt for Snow Leopard 10.6.3 that they wouldn't mind sharing? I'd really appreciate it and would save me a lot of time and headache! :) Thanks, -Scott ___ PyQt mailing listPyQt@riverbankcomputing.com

Re: [PyQt] PyQt 4.7.3 on Gumstix - Installation failed

2010-05-20 Thread Mohamad Najib
Update I have successfully installed the X11 version of Qt, and subsequently, PyQt. However I now bumped into another problem. However, since this is more of a Qt problem (at least in my view), I shall direct my questions somewhere else I guess... unless you are curious about it ;) (something ab

[PyQt] [pyqt4] Problem updating some radiobutton

2010-05-20 Thread rosso rossi
Hello, I've a problem with Pyqt4. I'm using latest python 2.6.5 on windows, and latest pyqt (4.7.3). I've made a simple program, but i noticed that my GUI is updating with a small delay. Now i give you an example: I've two class. First class makes the GUI that i want. I've a second thread that

Re: [PyQt] Stuff missing from PyQt QtWebKit

2010-05-20 Thread Phil Thompson
On Mon, 17 May 2010 18:44:46 +0200, detlev wrote: > Hi, > > it seems, that the QWebPage module is not completely wrapped for Qt 4.6.x. > I > am missing these things. > > enum Extension is missing ErrorPageExtension > enum ErrorDomain mssing > class ErrorPageExtensionOption missing > class Error

Re: [PyQt] SIP exception handling

2010-05-20 Thread Phil Thompson
On Wed, 19 May 2010 16:02:38 -0700, Qin Shen wrote: > Hi there, > > I'm fairly new on SIP and haven't done any development on PyQt. > But I'm using SIP to write a python wrapper for our C++ library. > > I have tried to translate the C++ exceptions to Python exceptions. > So far I managed to get

Re: [PyQt] Master-detail relationship with plain QTableView tables (no SQL database)

2010-05-20 Thread Mark Summerfield
On 2010-05-20, Vadym Honcharuk wrote: > 2010/5/9 Mark Summerfield : [snip] > Thank you, Mark! > > One more question in this issue is how to save data from these three > tables with different models in one file by QDataStream module. The > point of problem in that save method calling from their mo