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
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 "",
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
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
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
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)