Evgenii Legotckoi
Feb. 3, 2017, 10:55 p.m.

QML - Lesson 027. Adding QML in project based on QWidget

When developing your application to Qt may happen a situation where required in an application written in QWidgets implement functional written in QML. To solve such a problem can be used QQuickWidget class that is used to render QML .

Write a simple hello world, which will draw the code written in QML widget that is placed in the window, based on QWidget . To make it look as follows:


Configuration of Pro file

To use this object class, you need to connect a Pro project file quickwidgets module. Also add a resource file, which will contain qml files, namely QmlLabel.qml file.

  1. QT += core gui quickwidgets
  2.  
  3. greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
  4.  
  5. TARGET = qmlwidget
  6. TEMPLATE = app
  7.  
  8. DEFINES += QT_DEPRECATED_WARNINGS
  9.  
  10. SOURCES += main.cpp\
  11. widget.cpp
  12.  
  13. HEADERS += widget.h
  14.  
  15. FORMS += widget.ui
  16.  
  17. RESOURCES += \
  18. qml.qrc

widget.h

In the header file of the application window to include the header file of QQuickWidget and declare an object of this class.

  1. #ifndef WIDGET_H
  2. #define WIDGET_H
  3.  
  4. #include <QWidget>
  5. #include <QQuickWidget>
  6.  
  7. namespace Ui {
  8. class Widget;
  9. }
  10.  
  11. class Widget : public QWidget
  12. {
  13. Q_OBJECT
  14.  
  15. public:
  16. explicit Widget(QWidget *parent = 0);
  17. ~Widget();
  18.  
  19. private:
  20. Ui::Widget* ui;
  21. QQuickWidget* m_quickWidget;
  22. };
  23.  
  24. #endif // WIDGET_H

widget.cpp

The project was created with the help of interface designer, so the code will only be present in addition QQuickWidget object placement Grid Layout , which is responsible for the layout of the widgets in the window.

  1. #include "widget.h"
  2. #include "ui_widget.h"
  3.  
  4. Widget::Widget(QWidget *parent) :
  5. QWidget(parent),
  6. ui(new Ui::Widget)
  7. {
  8. ui->setupUi(this);
  9. m_quickWidget = new QQuickWidget(this) ;
  10. m_quickWidget->setSource(QUrl("qrc:/QmlLabel.qml"));
  11. m_quickWidget->setResizeMode(QQuickWidget::SizeRootObjectToView);
  12. ui->gridLayout->addWidget(m_quickWidget, 1, 0);
  13. }
  14.  
  15. Widget::~Widget()
  16. {
  17. delete ui;
  18. }

QmlLabel.qml

Content of the Hello World on the QML

  1. import QtQuick 2.5
  2. import QtQuick.Controls 2.1
  3.  
  4. Item {
  5.  
  6. Text {
  7. id: text
  8. text: qsTr("Hello world")
  9.  
  10. anchors.centerIn: parent
  11. }
  12.  
  13. }

Download project

Recommended articles on this topic

By article asked0question(s)

0

Do you like it? Share on social networks!

Comments

Only authorized users can post comments.
Please, Log in or Sign up
  • Last comments
  • AK
    April 1, 2025, 11:41 a.m.
    Добрый день. В данный момент работаю над проектом, где необходимо выводить звук из программы в определенное аудиоустройство (колонки, наушники, виртуальный кабель и т.д). Пишу на Qt5.12.12 поско…
  • Evgenii Legotckoi
    March 9, 2025, 9:02 p.m.
    К сожалению, я этого подсказать не могу, поскольку у меня нет необходимости в обходе блокировок и т.д. Поэтому я и не задавался решением этой проблемы. Ну выглядит так, что вам действитель…
  • VP
    March 9, 2025, 4:14 p.m.
    Здравствуйте! Я устанавливал Qt6 из исходников а также Qt Creator по отдельности. Все компоненты, связанные с разработкой для Android, установлены. Кроме одного... Когда пытаюсь скомпилиров…
  • ИМ
    Nov. 22, 2024, 9:51 p.m.
    Добрый вечер Евгений! Я сделал себе авторизацию аналогичную вашей, все работает, кроме возврата к предидущей странице. Редеректит всегда на главную, хотя в логах сервера вижу запросы на правильн…
  • Evgenii Legotckoi
    Oct. 31, 2024, 11:37 p.m.
    Добрый день. Да, можно. Либо через такие же плагины, либо с постобработкой через python библиотеку Beautiful Soup