Open hakankoesekadam opened 5 years ago
To be clear: You want to highlight Qt's C++ extensions.
is there any language which I could use for QT?
Assuming that it's a C++ extension, you can use the usual C++. The added syntactic features won't be highlighted correctly but everything else, which sort of resembles vanilla C++, will.
yes. OK thanks a lot for your answer.
You can keep it open and I'll add a MOC variant of C++ when I find the time.
I was just saying that you can use the vanilla C++ language in the meantime until said variant is available.
What about QML? It's part of QT but is a markup language with Javascript embedded for evaluation.
@Fredro thanks for your answer but I need QT.
@Fredro I made a new issue for QML #2117.
Language Qt is a cross-platform application development framework for desktop, embedded and mobile. Supported Platforms include Linux, OS X, Windows, VxWorks, QNX, Android, iOS, BlackBerry, Sailfish OS and others.
Qt is not a programming language on its own. It is a framework written in C++. A preprocessor, the MOC (Meta-Object Compiler), is used to extend the C++ language with features like signals and slots. Before the compilation step, the MOC parses the source files written in Qt-extended C++ and generates standard compliant C++ sources from them. Thus the framework itself and applications/libraries using it can be compiled by any standard compliant C++ compiler like Clang, GCC, ICC, MinGW and MSVC.
Additional resources https://www.qt.io/
is there any language which I could use for QT?
Thank you guys and have a nice day