Skip to content

QML and Qt Quick

Looking for The Bling Thing(tm)? Post here!
20.1k Topics 77.8k Posts
  • Map not show under different user account (Windows 10)

    Solved
    3
    0 Votes
    3 Posts
    306 Views
    T
    I did some experiments and I think partially the problem is with ESRI map server did not response, or did not response fast enough. When I switch to Google plugin, the problem is not exactly go away, but the tiles do show or show up faster...
  • GeoServer

    Unsolved geolocation
    2
    0 Votes
    2 Posts
    762 Views
    rrlopezR
    Hi @niqt, I haven't done this before, but you can check this out: https://developers.arcgis.com/qt/10-2/qml/api-reference/class_wms_dynamic_map_service_layer.html
  • How to add a QML view to an non Qt existing Android and iOS app?

    Unsolved
    1
    0 Votes
    1 Posts
    157 Views
    No one has replied
  • QML Application stucks at Windows 10

    Unsolved
    11
    1 Votes
    11 Posts
    1k Views
    S
    My researching lead me to the following point: looks like that issue consist of videodrivers and opengl. I have situation when my application craches approximately 1 of 3 times. The machine where problem was occured has internal video card on motherboard Gigabyte h55m-s2, I have tried to change drivers and get the strange behavior, when application starts well, but colors are not normal. So I will continue my investigation to this direction.
  • zooming an SVG image

    Unsolved qml image zoom scale memory
    1
    0 Votes
    1 Posts
    843 Views
    No one has replied
  • MouseArea drag group, and drag signals

    Unsolved
    5
    0 Votes
    5 Posts
    1k Views
    Aleksey_KA
    I solved this issue by adding explicit dragActive property to the MouseArea. Sample code: MouseArea { id: mouseArea drag { target: myItem axis: Drag.YAxis } property bool dragActive: drag.active onDragActiveChanged: { if(drag.active) { // ... // Dragging started } else { ... // Dragging finished } } }
  • This topic is deleted!

    Unsolved
    1
    0 Votes
    1 Posts
    17 Views
    No one has replied
  • [SOLVED] Connections with null target

    7
    0 Votes
    7 Posts
    3k Views
    Aleksey_KA
    Thanks, had similar bug with target being undefined: "Unable to assign [undefined] to QObject*" Fixed according to the Qt doc: https://doc.qt.io/qt-5/qml-qtqml-connections.html#target-prop If set to null, no connection is made and any signal handlers are ignored until the target is not null. Connections { // If set to null, no connection is made and // any signal handlers are ignored until the target is not null. target: myItem ? myItem : null onPropertyChanged: { ... } }
  • WebView SSL certificate error on Android

    Unsolved
    1
    0 Votes
    1 Posts
    474 Views
    No one has replied
  • This topic is deleted!

    Unsolved
    1
    0 Votes
    1 Posts
    6 Views
    No one has replied
  • Always Embed Swift binaries in Qt Creator

    Solved
    2
    0 Votes
    2 Posts
    490 Views
    SyntaXS
    I managed to include the path to swift libraries as dir with the following flags in my .pri file: # set additional Library directory for swift support QMAKE_LIBDIR += \ /usr/lib/swift \ # adding "Runtime Search Paths" for swift support QMAKE_RPATHDIR += \ /usr/lib/swift \ "Always Embed Swift binaries" seems not to be needed, my app compiles and is executable.
  • I need to show the images(10 to 20 images) as slideshow using Timer Control.

    Unsolved
    5
    0 Votes
    5 Posts
    943 Views
    K
    @J-Hilk Thank you. Let me try and let you know the feedback.
  • How to implement custon control to play well with any style?

    Unsolved style quick2 qml
    3
    0 Votes
    3 Posts
    671 Views
    T
    As I mentioned, I would like to play with any style, so I guess I'm not able to hardcode use of Material style.
  • Qml Gridview implement in OpenGL

    Solved
    7
    0 Votes
    7 Posts
    595 Views
    J
    @raven-worx Thank you for your help, now I can move forward my project.
  • QML Settings doesn't have "remove" function !

    Unsolved qml settings remove methods
    9
    0 Votes
    9 Posts
    2k Views
    MohammadsmM
    @J-Hilk I managed the required behavior, somehow. By blanking the key value: stg.setValue("step_1", "") then scanning the keys, which have non-empty value, and skipping the empty ones. I'll file a bug, cause I think it's a needed method! By the way, thank you all
  • Error to create QML project

    Unsolved
    2
    0 Votes
    2 Posts
    267 Views
    jsulmJ
    @Lelouche said in Error to create QML project: on reports to me an error in emulation and creation of the puppet. What puppet and what error?
  • Debugging item failing to receiving focus with QT_QPA_PLATFORM=offscreen

    Unsolved
    1
    0 Votes
    1 Posts
    359 Views
    No one has replied
  • CMake errors when building Qt simple app.

    Solved
    2
    0 Votes
    2 Posts
    703 Views
    H
    Found It! Had to change the folder structure a.k.a. main.qrc to qml.qrc
  • How to show different data in qml depending on backend objects

    Unsolved qml
    2
    1 Votes
    2 Posts
    257 Views
    M
    use file selectors for showing completely different UI https://doc.qt.io/qt-5/qfileselector.html#adding-selectors You can also add extra selectors at runtime for custom behavior. These will be used in any future calls to select(). If the extra selectors list has been changed, calls to select() will use the new list and may return differently.
  • 0 Votes
    9 Posts
    2k Views
    SGaistS
    Did you saw the third argument of the signal ? The one you are currently not using in the code you provided. It's the one containing the custom roles.