What about a fix for multi-viewport picking (QTBUG-59567)?
On Tue, Jan 2, 2018 at 2:46 AM, Vincent Hui wrote:
> Hi Sean,
>
> Thank you for your reply.
>
> Is it possible to offer the physics integration to Qt users as a technology
> preview in Qt 5.11 before it is ready? I watched your video clip
On Wed, Feb 11, 2015 at 1:12 PM, Matt Broadstone wrote:
> On Wed, Feb 11, 2015 at 4:00 PM, Thiago Macieira
> wrote:
>>
>> On Wednesday 11 February 2015 18:50:42 Hausmann Simon wrote:
>> > Hi,
>> >
>> > The brute force way is to add this feature to the engine at the expense
>> > of
>> > performanc
e brute force way is to add this feature to the engine at the expense of
> performance, memory consumption and maintenance :)
>
> Today you can invoke Javascript defined functions by simply getting the
> function as a property via QJSValue and call() it.
>
>
> Simon
>
>
On Wed, Feb 11, 2015 at 12:03 AM, Hausmann Simon
wrote:
> Hi,
>
> Kind of :) It works on a type level. So a new type is defined with new
> methods and a new meta object is defined. But it doesn't use a mechanism
> where a new meta object is created each time a method is added.
>
> If we move the
test:
class Test : public QObject {
Q_OBJECT
public slots:
QObject* createQObject() { return new QObject(); }
void checkQObjectMetaObject(QObject* obj)
{
for(int i=0; i < object->metaObject()->methodCount(); i++)
{
qDebug() << "introspecting: " << object->metaObject()->method(i