Michal Kottman

Results 25 comments of Michal Kottman

This is on my (private) TODO list, for Lua 5.2 - introduce a loader module, which will handle dependencies and be used to import the real libraries. I imagine something...

In my opinion, `qt:import()` is easier to read/understand than `setmetatable(_G,{__index=qt})` for those users, who do not know Lua yet (but want to use Lqt). Of course, it would do just...

I'm sorry, but defines are not handled by Lqt (at the moment). The reason is that cpptoxml strips the defines in the preprocessing stage (as any other preprocessor does, by...

I am glad you found the workaround for your first question. Currently there is no casting for the userdata, but you can use the debug interface to change the metatable...

The current framework has its limits. I am not sure lqt was designed with coroutines in mind. The fact is that each object with virtual methods keeps the state it...

The framework is relatively simple once you get the overview. The base is that every class which contains virtual methods gets a "shell" class, which allows you to override the...

Sorry for that, I forgot that in order to build correctly, I had to disable the UiTools module on Mac OS X. Just comment the following line in CMakeLists.txt: ```...

Thanks for your guide, I will try it out when I get access to a Mac machine. What still bothers me is that I specifically downloaded the [Cocoa: Mac binary...

Unfortunately I do not have 3.9 kernel available to test. I know there were some changes but unfortunately do not have the time to look at it. Modprobe won't work...

Something similar was done to make it possible to parse Qt 4.8 headers [(see this commit)](https://github.com/mkottman/lqt/commit/903dd3948d8d11074d08c2f2b31cc41bb5462e6c), but since `lqt` does not work with 4.8 (multithreading issues), no attempt was made...