Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. QML and Qt Quick
  4. Tutorial on Qt quick designer (solved)
QtWS25 Last Chance

Tutorial on Qt quick designer (solved)

Scheduled Pinned Locked Moved QML and Qt Quick
5 Posts 4 Posters 1.6k Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • H Offline
    H Offline
    houmingc
    wrote on last edited by
    #1

    Hi

    I am new in using Qt Quick and is currently exploring it.
    I like to create a informative dialog boxes that disappear/invisible after 5sec/ a moment.

    is there any link/youtube link for beginner to create maybe a hello world in Qt quick designer.
    My end target is imx6 linaro platform. can QT quick generate binaries to run on embedded target?

    1 Reply Last reply
    0
    • R Offline
      R Offline
      Rolias
      wrote on last edited by
      #2

      There are lots of short tutorials on qt quick on youtube. I don't know of one that does exactly what you want. You should be able to do this pretty easily using a QML Timer object.

      Qt Quick does run on embedded devices but I don't know about the specific platform you mentioned. The Digia site should have a complete list.

      Some references:
      A fun and informative video on some of the newer features is available from from Qt Studios and can be found at
      https://www.youtube.com/watch?v=_6_F6Kpjd-Q

      Joesph Mills has a playlist of quite a few demos at
      https://www.youtube.com/playlist?list=PLB22HyVdO1GkLFrvRi5vIo5XcWS0EflxD

      I'm just finishing up my Qt Quick course for Pluralsight so once that goes live there will be a four hour course that teaches you the fundamentals. Pluralsight is subscription based but once the course is live if you send me an email through the forum I can send you a VIP pass that is good for unlimited viewing hours (including downloading to mobile devices) for a week.

      Check out my third course in the trilogy on Qt
      "Integrating Qt Quick with C++"
      http://bit.ly/qtquickcpp
      published by Pluralsight

      1 Reply Last reply
      0
      • T Offline
        T Offline
        ThomasHartmann
        wrote on last edited by
        #3

        There is also a video just about using Qt Quick Desgner,
        which explains some of the more advanced features.

        1 Reply Last reply
        0
        • H Offline
          H Offline
          houmingc
          wrote on last edited by
          #4

          Can i find a Text scrolling (marquee) in QML. Like to integrate into Qt

          1 Reply Last reply
          0
          • p3c0P Offline
            p3c0P Offline
            p3c0
            Moderators
            wrote on last edited by
            #5

            Hi,

            I don't think there's a in-built one but you can create your own. Something like this
            @
            Rectangle {
            id: rect
            width: 500
            height: 40
            color: "lightgray"

            Text {
                id: text
                text: "Qt is Cool"
                NumberAnimation {
                    running: true
                    target: text
                    property: "x"
                    from: rect.width
                    to: 0-text.width
                    duration: 4000
                    onStopped: start()
                }
            }
            

            }
            @

            and load this QML using "QQuickWidget":http://qt-project.org/doc/qt-5/qquickwidget.html.

            157

            1 Reply Last reply
            0

            • Login

            • Login or register to search.
            • First post
              Last post
            0
            • Categories
            • Recent
            • Tags
            • Popular
            • Users
            • Groups
            • Search
            • Get Qt Extensions
            • Unsolved