Uploaded image for project: 'Qt'
  1. Qt
  2. QTBUG-50225

QML + c++ class + namespace is not working in some cases

    XMLWordPrintable

Details

    Description

      I put next class into qml context:

      #include <QObject>
      
      namespace Node1984 {
      namespace Controller {
      
      class TaskDescriptorControllerScriptAPI : public QObject
      {
          Q_OBJECT
      
      public:
          explicit TaskDescriptorControllerScriptAPI( QObject *parent = 0 );
          Q_INVOKABLE TaskDescriptorControllerScriptAPI* getFirstChildDescriptorController();
      };
      
      } // namespace Controller
      } // namespace Node1984
      

      using this code in QML context gives me next error:
      "Error: Unknown method return type: TaskDescriptorControllerScriptAPI*"

      after few days of debugging I found that next code generate correct class

      #include <QObject>
      
      namespace Node1984 {
      namespace Controller {
      
      class TaskDescriptorControllerScriptAPI : public QObject
      {
          Q_OBJECT
      
      public:
          explicit TaskDescriptorControllerScriptAPI( QObject *parent = 0 );
          Q_INVOKABLE Node1984::Controller::TaskDescriptorControllerScriptAPI* getFirstChildDescriptorController();
      };
      
      } // namespace Controller
      } // namespace Node1984
      

      seems that Q_INVOKABLE can`t use class without explicit specifying namespace.

      Probably this relates to old problem described also here http://stackoverflow.com/questions/14086289/use-c-slot-in-qml-which-returns-type-in-namespace

      Attachments

        No reviews matched the request. Check your Options in the drop-down menu of this sections header.

        Activity

          People

            ogoffart Olivier Goffart (Woboq GmbH)
            Sergii Rybin Sergii
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved:

              Gerrit Reviews

                There are no open Gerrit changes