Am Mittwoch, 9. Januar 2008 schrieb Aaron Digulla:
> Quoting Phil Thompson <[EMAIL PROTECTED]>:
> >> I mean it is a very common mistake, even for advanced PyQt developers,
> >
> > Is it?
I'wouldn't consider myself as an advanced PyQt developer, but for me it is.
> In my projects, I'm predefining
Quoting Phil Thompson <[EMAIL PROTECTED]>:
I mean it is a very common mistake, even for advanced PyQt developers,
Is it?
In my projects, I'm predefining all signals and slots as python
constants and use those in connect() and emit(). a) makes the code
more reliable and b) enables code com
On Wednesday 09 January 2008, David Douard wrote:
> On Tue, Jan 08, 2008 at 05:26:53PM +, Phil Thompson wrote:
> > On Tuesday 08 January 2008, Martin Höfling wrote:
> > > Hi all,
> > >
> > > I am trying to create a filter Toolbar bar class, filtering a model.
> > >
> > > why does the following
On Tue, Jan 08, 2008 at 05:26:53PM +, Phil Thompson wrote:
> On Tuesday 08 January 2008, Martin Höfling wrote:
> > Hi all,
> >
> > I am trying to create a filter Toolbar bar class, filtering a model.
> >
> > why does the following connect command in the loadModel Method not work?:
> >
> > clas
On Tuesday 08 January 2008, Martin Höfling wrote:
> Hi all,
>
> I am trying to create a filter Toolbar bar class, filtering a model.
>
> why does the following connect command in the loadModel Method not work?:
>
> class FilterToolBar(QToolBar):
> def __init__(self):
> super(FilterTool
Hi all,
I am trying to create a filter Toolbar bar class, filtering a model.
why does the following connect command in the loadModel Method not work?:
class FilterToolBar(QToolBar):
def __init__(self):
super(FilterToolBar,self).__init__(QString("Filter"))
self.expFilterCombo