QML and Qt Quick
2018.04.06 11:15

Qml 및 C++개발시 유용한 팁

조회 수 14318 추천 수 0 댓글 3
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄

 

//나쁜예: C++ 내에서 QML 객체 수정
QObject *artistLabel = rootItem->findChildren("artistLabel");
artistLabel->setProperty("text", m_currentSong->artist);
...
QObject *nextButton = rootItem->findChildren("nextButton");
connect(nextButton, SIGNAL(clicked()), this, &MusicPlayer::nextSong);
QObject *musicPlayer = nextButton->parent();
QMetaObject::invokeMethod(musicPlayer, "startAnimation", Q_ARG(QVariant, duration));
 
//좋은예: QML의 C++ 객체 사용
//QML은 UI계층으로만 구현해야 한다. 이해하기 쉽다.
Text {
    text: musicPlayer.currentSong.artist
}
Button {
    onClicked: musicPlayer.nextSong()
}
Slider {
    value: musicPlayer.volume
}
 
 
//나쁜예: QML 프로퍼티에 상태 저장
class MusicPlayer : public QObject {
    Q_INVOKABLE void setVolume(int volume) {
        m_backend->setVolume(volume);
    }
}
property int volume: 50
Slider {
    value: volume
    
    onRightPressed: {
        volume = Math.min(100, volume + 5);
        musicPlayer.setVolume(volume);
    }
}
 
//좋은예: C++ 프로퍼티에 상태 저장
//더빠르고 유지보수가 용이하다.
class MusicPlayer : public QObject {
    Q_PROPERTY(int volume READ volume NOTIFY ...)
    
public:
    int volume() const { return m_volume; }
    Q_INVOKABLE void increaseVolume() {
        m_volume = qMin(100, volume + 5);
        m_backend->setVolume(m_volume);
    }
private:
    int m_volume = EAR_BLEEDING_LOUD;
}
Slider {
    value: musicPlayer.volume
    
    onRightPressed: musicPlayer.increaseVolume()
}
 

 

TAG •
  • ?
    파랑버섯 2020.06.23 10:50

    QML이 화면 구성의 역할만 하는것이 아니고 cpp의 동작 함수들을 컨트롤 하는것이 좋은것인가요??

  • ?
    makersweb 2020.06.23 12:13

    어떤 데이터를 QML로 직접 다루는 것이아니라 UI 즉 QML로는 Invoke 역할을 하는 것이죠.. QML에서 데이터를 다루는 것은 반응성 및 성능면에서 좋지않을 것입니다.

  • ?
    wooseokyourself 2021.11.10 09:17

    이해가 확 되네요. 좋은 자료 감사합니다


  1. No Image notice

    Qt프로그래밍(QtQuick) Beginner를 위한 글 읽는 순서

    Date2019.01.05 CategoryQML and Qt Quick By운영자 Views436657
    read more
  2. QtWayland와 ivi-compositor

    Date2018.12.27 CategoryMobile and Embedded Bymakersweb Views14297
    Read More
  3. Qml과 C++로 구현하는 GUI어플리케이션

    Date2018.12.25 CategoryQML and Qt Quick Bymakersweb Views21206
    Read More
  4. No Image

    싱글터치 스크린 및 임베디드 리눅스 기반에서 Qt 터치입력

    Date2018.12.24 CategoryMobile and Embedded Bymakersweb Views10132
    Read More
  5. ShaderEffect QML Type 을 이용한 그래픽효과

    Date2018.12.09 CategoryQML and Qt Quick Bymakersweb Views11045
    Read More
  6. No Image

    Qml에서 커튼효과 구현 예제 - Shader Effects

    Date2018.12.05 CategoryQML and Qt Quick By운영자 Views7906
    Read More
  7. 안드로이드 Qt 프로그래밍

    Date2018.11.30 CategoryMobile and Embedded Bymakersweb Views17412
    Read More
  8. 리눅스에서 Qt4.8기반 어플리케이션의 한글입력

    Date2018.11.29 CategoryInstallation and Deployment Bymakersweb Views10845
    Read More
  9. QML에서 동적으로 텍스트 다국어 처리

    Date2018.11.04 CategoryQML and Qt Quick Bymakersweb Views10462
    Read More
  10. Qt Installer Framework - 패키징, 설치프로그램 제작

    Date2018.10.14 CategoryInstallation and Deployment Bymakersweb Views22689
    Read More
  11. Qt 응용프로그램 배포(windows)

    Date2018.10.10 CategoryGeneral and Desktop Bymakersweb Views18686
    Read More
  12. No Image

    소스코드에서 환경변수 가져오기와 설정하기

    Date2018.10.08 CategoryGeneral and Desktop Bymakersweb Views8750
    Read More
  13. 표를 만들고 PDF문서로 출력하기

    Date2018.09.30 CategoryGeneral and Desktop Bymakersweb Views7340
    Read More
  14. Qml에서 키보드 입력 이벤트 핸들링

    Date2018.08.09 CategoryQML and Qt Quick Bymakersweb Views11188
    Read More
  15. Qml 어플리케이션 정적 빌드

    Date2018.07.27 CategoryInstallation and Deployment Bymakersweb Views8595
    Read More
  16. No Image

    Qt Bluetooth 관련 기능 확인 사항

    Date2018.07.10 CategoryInstallation and Deployment Bymakersweb Views8192
    Read More
  17. No Image

    Qml 및 C++개발시 유용한 팁

    Date2018.04.06 CategoryQML and Qt Quick Bymakersweb Views14318
    Read More
  18. No Image

    Qt Version확인 방법

    Date2018.03.29 CategoryGeneral and Desktop Bymakersweb Views13101
    Read More
  19. 초보자를 위한 첫번째 프로젝트 - QML로 만드는 Hello World

    Date2018.03.16 CategoryGeneral and Desktop Bymakersweb Views27005
    Read More
  20. Windows에서 라즈베리파이3 Qt 어플리케이션 개발 및 원격 실행

    Date2018.02.23 CategoryInstallation and Deployment Bymakersweb Views12587
    Read More
  21. Windows에서 라즈베리파이3용 Qt5.10.0 크로스컴파일

    Date2018.02.23 CategoryMobile and Embedded Bymakersweb Views20658
    Read More
Board Pagination Prev 1 ... 5 6 7 8 9 Next
/ 9