Hi Darren,
yes that's true, right now i am working on the emit() stuff. So now you can do
things like this:
QObject::connect($widget,SIGNAL('signal1(int)'), $widget->lcd,
SLOT('display(int)'));
QObject::connect($widget,SIGNAL('signal1(int)'), $widget, SLOT('slot1(int)'));
emit ( $widget->signal1( 24 ) );
... which calls the self-written php-slot slot1() and the Qt-method display()
in the class QLCDNumber.
I will continue working on uic soon and would be happy if you try it out.
On Tuesday 28 August 2007 08:48:40 Darren Whitlen wrote:
> Hi,
>
> I could be wrong, but I think I heard Thomas was creating a uic for PHP?
> How's this coming along?
>
> I'm really eager to start using that in big ways!
>
>
>
> Darren
--
Thomas
|