Filippo Cucchetto

Results 59 comments of Filippo Cucchetto

@Calrama since you're the one who needed this change can you give me your opinion on this. Is it really necessary?

OK the same goes for find child. I think it should be implemented purely in the binding side. This gives more safety since the QObject on the binding language are...

Well, findChild can be implemented in the bindings, basically it should work by exploring the hierarchy of QObjects (created in the bindings). Obviously this solution doesn't allow to access QObjects...

What do you mean? :) Il 16 apr 2017 22:31, "drug007" ha scritto: > I'm curious won't it be simpler to interface to C++ directly from dlang? > > —...

Maybe, but it's not the goal of this library. This c layer exists for not reimplementing the c layer in every language (like go-qml and others). This c bindings are...

A possible alternative is prototyping a generator with clang api in order to parse the C++ Qt headers and than generate our code. If it was me i would start...

Something like http://eli.thegreenplace.net/2011/07/03/parsing-c-in-python-with-clang Il 17 apr 2017 08:38, "drug007" ha scritto: > Could you provide some example of the script to look for evaluation? have > no experience with neither...

At First the script should extract the class name and its list of function plus virtual functions and their parameters. Il 17 apr 2017 08:49, "Filippo Cucchetto" ha scritto: >...

@drug007 ok but honestly i'd go with a tool that uses clang and not some other techs. Using clang is the way to imho but this doesn't mean you can't...

Client users that use NimQml already created their `delete` methods that are called from the base class finalizers. This `delete` methods take a `ref T` argument thus they're not callable...