Uploaded image for project: 'Qt Design Studio'
  1. Qt Design Studio
  2. QDS-12522

Document (new) project structure for Qt Design Studio and explain good practices

    XMLWordPrintable

Details

    • User Story
    • Resolution: Fixed
    • P3: Somewhat important
    • QDS 4.6.0, QDS 4.7.0
    • QDS 4.3.2
    • Buildsystem
    • None
    • QDS Berlin - 2024 Week 21/22, QDS Berlin - 2024 Week 23/24, QDS Berlin - 2024 Week 25/26, QDS Berlin - 2024 Week 27/28
    • d01a84336 (qds/dev), 0468f9475 (qds/dev)

    Description

      Document (new) project structure for Qt Design Studio and explain good practices
      was
      pragma Singleton QML defined in content\ is not treated as a singleton

      Creating a singleton qml file inside the content folder does not get reflected in the project.
      You reach a weird state where references to the singleton will be undefined, but trying to create the object will properly give errors.

      In imports\\\\

      {project}

      , Constants.qml DOES get treated as a proper singleton and is functional.
      I assumed this is due to it being listed as such in the qmldir file.

      content\ does not have a qmldir file. Adding qmldir to content\ and marking the singleton qml file as singleton allows the singleton to function properly.

      Setting the singleton property in content\CMakeLists.txt does not fix the problem.

       

      ----------

      The project structure and its intention requires proper documentation.

      Project Structure QDS 4.5
       
       
      //Default structure generated by the wizard for QML project in Qt Design Studio
       
      %ProjectName%
       
        %ProjectName%.qmlproject          // Project file for Qt Design Studio
        %ProjectName%                     // Module with the name of the project || import %ProjectName% || Put QML singletons here
           Constants.qml                  // Default QML singleton created by the wizard
        %ProjectName%Content              // All screens QML components are supposed to go here
          App.qml                         // Main QML file. Entry point to QML
          Screen01.ui.qml                 // First Screen generated by wizard
        GeneratedComponents               // Modules for imported 3D Components and elements from the content Library (Materials, Effects), Effects from the  				    // Effect Composer are generated here.
       
       
      Since QDS 4.5, the default QML import path is "./" related to the XML project file. However, you can still add more import paths by editing the .qmlproject file.
       
      The wizard creates a QML module with the same name as project. This module contains the Constans.qml which is a default QML singleton. You can add more singletons here. Do not forget to edit the qmldir file.
       
       
      ProjectName%Content contains the default content, QML files, images, etc. In the QDS context, this is not considered a module. Do not import  %ProjectName%Content. If you want to make singletons and objects available in the project, use the %ProjectName% module.
      Files imported from, e.g., Figma are also added here. You can create subfolders to structure your content. The main content of the QDS project is located here.
       
      GeneratedComponents contains all modules generated/created by QDS. Imported 3D models and components from the content library are added here. Effects from the Effect Composer are also generated here. Since everything generated here is a module, it is also available throughout the project and typically used from %ProjectName%Content.
      

      Attachments

        Issue Links

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

          Activity

            People

              prdastid Pranta Ghosh Dastider
              mairtin.s Mairtin Steinkamp
              Votes:
              0 Vote for this issue
              Watchers:
              3 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved:

                Gerrit Reviews

                  There are no open Gerrit changes