[Development] Target/Device qml (remote) profiling with Qt Creator

2014-07-29 Thread travik
Hi, We would like to profile our qml application on a WinEC7 device. Is there a way to do it? Our problem: We are not able to connect to device. The device is connected to the host via a network cable. Host & device ip addresses are set correctly. we are able to ping each other. physical connec

Re: [Development] How to have equivalent of function over-riding in Qml

2014-07-10 Thread travik
Ok!. That's cool and it is Qml's implementation of VTable, I guess!. Thanks a lot again. Let me try it and come back. ___ Development mailing list Development@qt-project.org http://lists.qt-project.org/mailman/listinfo/development

Re: [Development] How to have equivalent of function over-riding in Qml

2014-07-09 Thread travik
> > Thanks for the very quick reply. > Thank you for clarifying my understanding of correct derivation in Qml > > Regards, > R.kiran > Hi In continuation of the previous post - I now got it working to invoke the base class / derived class implementations correctly from extenal place. Now the

Re: [Development] How to have equivalent of functions over-riding in Qml

2014-07-09 Thread travik
Thanks for the very quick reply. Thank you for clarifying my understanding of correct derivation in Qml Regards, R.kiran ___ Development mailing list Development@qt-project.org http://lists.qt-project.org/mailman/listinfo/development

[Development] How to have equivalent of functions over-riding in Qml

2014-07-09 Thread travik
Hi, I would like to have equivalent of compile time polymorphism in in Qml. a.k.a function overriding. I know inheritance can be obtained by including the base-class in derived class. (A realisation of the principle called inheritance by composition) I also want to have some default implementati