Qt Quick(2)
-
QML module not found 해결법
qt를 cmake로 빌드파일을 만들 때 사용자 모듈을 인식하지 못하는 오류가 생긴다. 해결법은 다음 stackoverflow에서 찾았다. https://stackoverflow.com/questions/56347507/custom-qml-module-not-found Custom QML module not found I have a QML application. I have created my own QML module. called MyCustomModule. The module has the appropriate qmldir file, which is registered to the corresponding my_custom_module.qrc file. I ... stackoverflow.com #..
2021.12.20 -
Qt Quick이란?
Qt Quick은 modern GUI(모니터화면) interface를 구현하고 쉽게 디자인하는데 사용된다. Qt Quick 을 사용해 GUI를 구현할때는 c++을 사용하지 않는다. Qt Quick은 QML이라고 불리는 interpreter language ( 코드를 한줄 한줄 읽어가며 명령을 처리하는 프로그램)를 사용한다. QML은 Qt Modeling Language이다. 물론 Qt에서 C++ 또는 QML을 사용할 수 있다. 거기에는 장점과 단점이 있다. Qt Quick을 사용한다면 다지인과 function(기능, 함수) logic을 분리할 수 있다는 장점이 있다. Qt Quick을 사용한다면 제한된 사용자 인터페이스를 가진 임베디드(장비안에 컴퓨터시스템) 장비들 같은 환경에서 사용하는 것이 적절하다...
2021.07.21