Re: [PyQt] QScintilla - is it possible to subclass (to replace paste method)

2007-10-10 Thread Phil Thompson
On Wednesday 10 October 2007, Brian Kelley wrote: > I have tried to subclass QsciScintilla to make a custom paste method, > while paste is a void virtual slot, this code seems to have no affect: > > class PyScintilla(Qsci.QsciScintilla): > def __init__(self, parent): > Qsci.QsciScinti

Re: [PyQt] bug in pylupdate4 or ... ?!

2007-10-10 Thread .:: Mehdi Bayazee ::.
>> hi >> i have a problem with pylupdate4 . >> so i devote some time to this. i have understood the problem. >> i think pylupdate4 can't determine multiline triple-quoted strings in >> python sources codes. >> e.g: >> >> def createMDIChild(self, childClass, name): >> """ >> Create n

[PyQt] QScintilla - is it possible to subclass (to replace paste method)

2007-10-10 Thread Brian Kelley
I have tried to subclass QsciScintilla to make a custom paste method, while paste is a void virtual slot, this code seems to have no affect: class PyScintilla(Qsci.QsciScintilla): def __init__(self, parent): Qsci.QsciScintilla.__init__(self, parent) def paste(self): # a

Re: [PyQt] Problems with QDialog, QLineEdit and returnPressed event

2007-10-10 Thread Mark Summerfield
On 2007-10-10, duncan duncan wrote: > Hello > > I am trying to have a QDialog (the gui was designed with QtDesigner) with > some QLineEdit widget. > The QLineEdit widget is connected to the returnPressed event. > > All work fine but when I press the Return key the dialog close. > At this point find

Re: [PyQt] Widget CSS hints

2007-10-10 Thread Aron Bierbaum
On 10/10/07, Richard Smith <[EMAIL PROTECTED]> wrote: > Hi guys, > > I'm not sure if this is the right place to ask, so if you could point me in > the direction of where to ask if this isn't the right place, I'd appreciate > the hint. > > Essentially, I'm building an application that's going to be

[PyQt] Problems with QDialog, QLineEdit and returnPressed event

2007-10-10 Thread duncan duncan
Hello I am trying to have a QDialog (the gui was designed with QtDesigner) with some QLineEdit widget. The QLineEdit widget is connected to the returnPressed event. All work fine but when I press the Return key the dialog close. At this point find that the buttons on the dialog need to have the a

[PyQt] Widget CSS hints

2007-10-10 Thread Richard Smith
Hi guys, I'm not sure if this is the right place to ask, so if you could point me in the direction of where to ask if this isn't the right place, I'd appreciate the hint. Essentially, I'm building an application that's going to be deployed primarily on an embedded system with a touch screen. Unfo