Re: [Qt-qml] QML Slot

2010-07-16 Thread Ivan De Marino
nd access its properties but i can > NOT connect to a signal > > Any Ideas? > > > > Original-Nachricht > > Datum: Wed, 14 Jul 2010 01:37:11 +0200 > > Von: <mailto:michael.bras...@nokia.com > > michael.bras...@nokia.com > >

Re: [Qt-qml] QML Slot

2010-07-16 Thread aaron.kennedy
Jul 2010 01:37:11 +0200 > Von: <mailto:michael.bras...@nokia.com> michael.bras...@nokia.com > An: <mailto:almon...@gmx.de> almon...@gmx.de > CC: <mailto:qt-qml@trolltech.com> qt-qml@trolltech.com > Betreff: Re: [Qt-qml] QML Slot > Hi Almo, > > On 14/07/2010

Re: [Qt-qml] QML Slot

2010-07-16 Thread Ivan De Marino
d ChangedDir(); >> The Object is Registered using >> ctxt->setContextProperty("CommObject",_COMM); >> >> i can access the functions from QML and access its properties but i can >> NOT connect to a signal >> >> Any Ideas? >> >> >> >> -

Re: [Qt-qml] QML Slot

2010-07-16 Thread aaron.kennedy
om<mailto:michael.bras...@nokia.com> > An: <mailto:almon...@gmx.de> almon...@gmx.de<mailto:almon...@gmx.de> > CC: <mailto:qt-qml@trolltech.com> > qt-qml@trolltech.com<mailto:qt-qml@trolltech.com> > Betreff: Re: [Qt-qml] QML Slot > Hi Almo, > > On

Re: [Qt-qml] QML Slot

2010-07-16 Thread Ivan De Marino
; Von: michael.bras...@nokia.com > > An: almon...@gmx.de > > CC: qt-qml@trolltech.com > > Betreff: Re: [Qt-qml] QML Slot > > > Hi Almo, > > > > On 14/07/2010, at 6:30 AM, ext Almo Nito wrote: > > I would like to know how i can connect to a Signal in QM

Re: [Qt-qml] QML Slot

2010-07-16 Thread Ivan De Marino
in.com/DLA1GuF2 > > Thanks > > > -Original Message- > From: aaron.kenn...@nokia.com [mailto:aaron.kenn...@nokia.com] > Sent: Mittwoch, 14. Juli 2010 11:19 > To: almon...@gmx.de > Subject: Re: [Qt-qml] QML Slot > > Hi, > > Please try a signal starting with a lowercas

Re: [Qt-qml] QML Slot

2010-07-14 Thread michael.brasser
On 15/07/2010, at 1:29 AM, ext Almo Nito wrote: > I was wondering if this was the right way to enable HW Acceleration for QML: > > http://pastebin.com/DLA1GuF2 If this is an embedded, X11-based system, you'll probably also want to call QApplication::setGraphicsSystem("raster") somewhere in your

Re: [Qt-qml] QML Slot

2010-07-14 Thread Jason H
t-qml@trolltech.com Sent: Wed, July 14, 2010 11:37:09 AM Subject: Re: [Qt-qml] QML Slot I don't think you can just switch it to GL and call it a day. The raster engine beats GL out of the water in a lot of cases. Also, my experiments have reduced in lower quality in GL. Also, GL does not work on my A

Re: [Qt-qml] QML Slot

2010-07-14 Thread Jason H
een, it looks like spending money on CPU for the raster engine is better than spending it on the GPU. This means, more MHz and not more cores. - Original Message From: Almo Nito To: qt-qml@trolltech.com Sent: Wed, July 14, 2010 11:29:16 AM Subject: Re: [Qt-qml] QML Slot That Worked

Re: [Qt-qml] QML Slot

2010-07-14 Thread Almo Nito
: [Qt-qml] QML Slot Hi, Please try a signal starting with a lowercase letter. QML doesn't like upper case properties :) Cheers, Aaron On 14/07/2010, at 6:49 PM, "ext Almo Nito" wrote: > I tryed that with the following Result: > > Cannot assign to non-existen

Re: [Qt-qml] QML Slot

2010-07-14 Thread Almo Nito
i can NOT connect to a signal Any Ideas? Original-Nachricht > Datum: Wed, 14 Jul 2010 01:37:11 +0200 > Von: michael.bras...@nokia.com > An: almon...@gmx.de > CC: qt-qml@trolltech.com > Betreff: Re: [Qt-qml] QML Slot > Hi Almo, > > On 14/07/2010, at

Re: [Qt-qml] QML Slot

2010-07-13 Thread michael.brasser
Hi Almo, On 14/07/2010, at 6:30 AM, ext Almo Nito wrote: I would like to know how i can connect to a Signal in QML if the object was not instanced from QML: Im having an Object _COMM; That was registered using: ctxt->setContextProperty("CommObject",_COMM); I can actually use CommObject.doMyInv

[Qt-qml] QML Slot

2010-07-13 Thread Almo Nito
Hello There. I would like to know how i can connect to a Signal in QML if the object was not instanced from QML: Im having an Object _COMM; That was registered using: ctxt->setContextProperty("CommObject",_COMM); I can actually use CommObject.doMyInvolkeMethod() in QML Bu