Qt error(6)
-
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 -
Unable to assign QQuickRootItem to double
Qt Quick 프로그래밍을 하던 중에 이런 오류가 나왔다. 찾아보니 Rectangle의 width와 height 값을 Window에서 parent로 값을 가져오려고 해서 나오는 오류였다. Window { width: 640 height: 480 visible: true Rectangle { id: rect width: parent height: parent } } 해결 방법은 여러가지이다. anchors.fill : parent 를 대신 사용한다. window에 id 값을 지정해서 id.width 값과 id. height 값을 받는다. 참고 https://stackoverflow.com/questions/30121552/qml-unable-to-assign-qquickitem-to-qquickancho..
2021.07.31 -
QQuickView does not support using a window as a root item.
QQuickView does not support using a window as a root item. If you wish to create your root window from QML, consider using QQmlApplicationEngine instead 예제를 풀던 도중에 이런 오류가 나왔다. 방법1 https://forum.qt.io/topic/66300/qquickview-problems 여기 싸이트에서는 해석 그대로 QQuickView는 Window를 root 객체로 사용을 못한다고 한다. 그래서 Window를 Item으로 바꿨다. 하지만 오류는 뜨지 않았지만 결과도 안 보였다. 그래서 viewer.show(); (viewer는 QQuickView객체이름이다) 코드를 추가했다. ..
2021.07.24 -
Error while building/deploying project
Qt 예제를 실행하려는데 error 가 났다. 찾아보니 이유는 경로 중에 한글이름이 있기 때문이다. 그래서 폴더명을 영어로 바꿨다. 참고 - https://kldp.org/node/144254 QT 프로젝트 실행에 관한 질문입니다. | KLDP 과거 인턴중에 만들었던 프로그램을 실행시켜보고 싶은데요.. 그때 작업 컴파일러가 mingw였던 것으로 기억합니다. 그런데 돌아가지가 않네요.. msvc2010도 안되고 mingw로도 빌드가 안됩니다.. 에러 kldp.org 다시 build 오류 가 났다. 이미 qt에 config된 파일이라 경로가 저장되어서 바뀐 경로를 못찾는 것이다. .pro.user 파일을 지우고 다시 시작해야한다.
2021.07.22 -
QML Settings: Failed to initialize QSettings instance.
.pro 파일에 QT += quickcontrols를 추가했을 때 나는 에러이다. 이를 해결하기 위해서는 .cpp 파일에 코드를 추가해줘야 한다. QGuiApplication app(argc, argv); app.setOrganizationName("somename"); app.setOrganizationDomain("somename"); 참조 - https://forum.qt.io/topic/105341/qml-settings-errors/2 QML Settings errors To use QQuickStyles you should add QT += quickcontrols2 to your .pro file. For 1st error try to set proper app variables at mai..
2021.07.18 -
qquickstyle not found
QQuckStyle을 이용하기 위해선 .pro 파일에 다음의 문구를 채워넣어야한다. QT += quickcontrols2 참조 - https://forum.qt.io/topic/86934/cannot-include-qquickstyle
2021.07.16