Saniko

Results 14 comments of Saniko

Current version used 5.13.x headers(lqt files) only, i was tested compile with qt 5.12.0 and 5.13.0, other version was not tested.

I have a plan to rewrite cpptoxml and use libclang + Python to parse the latest official version of QT header to generate C + + ast XML file, but...

At present, compiling under linux and mac should be similar, but I have not tested it myself. You can try: 1. Modify the path in cmakelist (to your Qt installation...

QToolBar and QMenuBar already binding in qtwidgets module, see example: ```examples/opengl/hellogl2/mainwindow.lua``` You can find missing/ignore bind classes/methods in ```ignores_.csv``` on ```build``` directory.

Please try to recompile lqt5, and then send the full compile log to this issue to show me to locate the problem.

Lots of error message: ```PARSER ERROR unexpected token```, does you modified some lqt files? What operating system and qt version are you using?

It may be a platform compatibility problem of cpptoxml, or a problem caused by a certain c++ macro that is not defined. You can try to debug this program to...

Modify CMakeLists.txt, change these lines: ``` if (UNIX) set (PP_CONFIG ${QT_SCHEMA_DIR}/lqt5_macos.lqt) ``` To: ``` if (APPLE) set (PP_CONFIG ${QT_SCHEMA_DIR}/lqt5_macos.lqt) elseif (UNIX) set (PP_CONFIG ${QT_SCHEMA_DIR}/lqt5.lqt) ``` Maybe it works.

This problem should be caused by the compatibility of cpptoxml. I have successfully compiled/run this project on mac and windows platforms (currently my company’s products use this project, and there...

First find the header file where this interface is located in Qt, then you can find the following lqt folder, look at the corresponding header file, modify/uncomment, and you should...