Evgenii Legotckoi
July 1, 2017, 4:03 p.m.

QML - Tutorial 028. Registration of custom enum in QML

In order to use enum enum enumerations in Q ++, you need to create a class inherited from QObject and register it as a QML Type before running the QML engine in the application.

To learn, create a project using QtQuick.

The minimum version of this class with enumerations will be as follows:

  1. #ifndef INFO_H
  2. #define INFO_H
  3.  
  4. #include <QObject>
  5.  
  6. class Info : public QObject
  7. {
  8. Q_OBJECT
  9. public:
  10. enum State {
  11. Information,
  12. Debug,
  13. Warning,
  14. Error
  15. };
  16. Q_ENUM(State)
  17. };
  18.  
  19. #endif // INFO_H

Next, you need to register this class as a QML Type in the main function. This requires a QtQml header file and a qmlRegisterType function.

  1. #include <QGuiApplication>
  2. #include <QQmlApplicationEngine>
  3. #include <QtQml> // Include QtQml to use qmlRegisterType
  4.  
  5. #include "info.h" // Connect the header file of the Info class
  6.  
  7. int main(int argc, char *argv[])
  8. {
  9. QGuiApplication app(argc, argv);
  10.  
  11. qmlRegisterType<Info>("info", 1, 0, "Info"); // Register this class as a module
  12.  
  13. QQmlApplicationEngine engine;
  14. engine.load(QUrl(QStringLiteral("qrc:/main.qml")));
  15. if (engine.rootObjects().isEmpty())
  16. return -1;
  17.  
  18. return app.exec();
  19. }

After that it will only be necessary to connect the new QML module in the main.qml file and use the enumerations to display the text. We will output the message "Message 0", "Message 1", etc. The numbers will be taken from the enumerations.

  1. import QtQuick 2.5
  2. import QtQuick.Window 2.2
  3. import QtQuick.Controls 1.4
  4.  
  5. import info 1.0 // Import Module
  6.  
  7. Window {
  8. visible: true
  9. width: 360
  10. height: 360
  11. title: qsTr("Enumeration")
  12.  
  13. ListView {
  14. anchors.fill: parent
  15. delegate: Item {
  16. height: 48
  17. width: parent.width
  18. Text {
  19. anchors.fill: parent
  20. text: "Message " + model.text
  21.  
  22. verticalAlignment: Text.AlignVCenter
  23. horizontalAlignment: Text.AlignHCenter
  24. }
  25. }
  26.  
  27. model: ListModel {
  28. // Use the enumerations from C ++
  29. ListElement {text: Info.Information}
  30. ListElement {text: Info.Debug}
  31. ListElement {text: Info.Warning}
  32. ListElement {text: Info.Error}
  33. }
  34. }
  35. }

Appearance of the application will be as follows:

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