Re: [PyQt] customEvents causing seg fault?

2008-02-02 Thread Giovanni Bajo
On Wed, 2008-01-30 at 11:47 -0800, gct wrote: > > OK so I've got a thread that monitors some hardware, and periodically sends > a > custom event back to the GUI to basically mirror an internal table to a > QTable I have on the GUI. I'm told this is the proper way to update GUI > elements from a

[PyQt] Re: how to implent a autoscroll text viewer

2008-02-02 Thread Marco
self.editor = QtGui.QTextBrowser(self.main_frame) self.editor.resize(320, 320) self.editor.setFont(QtGui.QFont("Sans", 24, QtGui.QFont.Bold)) self.editor.setAlignment(QtCore.Qt.AlignTop) self.editor.setText(self.text) self.editor_timer = QtCore.QTi

Re: [PyQt] SIP feature request (__rmul__)

2008-02-02 Thread Phil Thompson
On Friday 01 February 2008, Phil Thompson wrote: > On Thursday 31 January 2008, Jim Crowell wrote: > > With __rmul__ not being in the list of supported special methods, is > > there any way I can implement Float*MyVectorClassInstance? If not, any > > chance of getting __rmul__ added? > > That turne