Re: [PyQt] Posted a little praise of PyQt in my blog

2008-01-19 Thread David Boddie
On Fri, 18 Jan 2008 22:24:59 +0100, Aaron Digulla wrote: > I posted a little praise of PyQt in my blog: > > http://darkviews.blogspot.com/2008/01/portable-ui.html > > Just in case someone here collects blog entries. Maybe there should be a Wiki page for this. > A few days ago, I > posted a tiny

Re: [PyQt] Pimping QTextEdit

2008-01-19 Thread David Boddie
On Fri, 18 Jan 2008 21:19:57 +0100, Aaron Digulla wrote: [Plain text syntax with << and >> as delimiters.] > Now, Qt comes with QTextEdit which is pretty powerful but also "buggy" > or at least stubborn. For example, it uses a subset of HTML but doesn't > allow to define styles. So I can't do "",

Re: [PyQt] connection to list view and combo pyqt

2008-01-19 Thread David Boddie
On Sat Jan 19 13:41:12 GMT 2008, Peter Liedler wrote: > In my main view I have several connect strings to buttons and > checkBoxes. They work fine. > > self.connect(self.checkBoxRipLongest, SIGNAL("clicked()"), > self.toggleRipLongest) > self.connect(self.listViewTitle, SIGNAL("se

Re: [PyQt] Overriding only one of two C++ virtual methods with different signature

2008-01-19 Thread Phil Thompson
On Saturday 19 January 2008, Adeodato Simó wrote: > Hello. > > I've subclassed in Python from a C++ class that has: > > public slots: > > virtual void updateSearch (const QString &pattern=QString()); > > protected: > > virtual void updateSearch (QTreeWidget *treeWidget); > > I want to p

[PyQt] Overriding only one of two C++ virtual methods with different signature

2008-01-19 Thread Adeodato Simó
Hello. I've subclassed in Python from a C++ class that has: public slots: virtual void updateSearch (const QString &pattern=QString()); protected: virtual void updateSearch (QTreeWidget *treeWidget); I want to provide my own updateSearch(), but only for the slot case. Is this

[PyQt] connection to list view and combo pyqt

2008-01-19 Thread Peter Liedler
Sorry to bother you again. In my main view I have several connect strings to buttons and checkBoxes. They work fine. self.connect(self.checkBoxRipLongest, SIGNAL("clicked()"), self.toggleRipLongest) self.connect(self.listViewTitle, SIGNAL("selectionChanged()"), self.titleSelected)