Skip to content

QML and Qt Quick

Looking for The Bling Thing(tm)? Post here!
20.1k Topics 77.6k Posts
  • Managing QML List Models with C++

    2
    0 Votes
    2 Posts
    8k Views
    J
    Hello, Have you seen this "document":http://doc.qt.nokia.com/4.7/qdeclarativemodels.html#c-data-models with respect to using C++ models and QML views? -jk
  • How to Install QSparql

    7
    0 Votes
    7 Posts
    4k Views
    A
    Thanks for sharing good knowledge, actually I was searching QML documentation for QSparqlResultsList element. Haven't seen any. But seems still possible to find from its implementation code.
  • Debugging QML/C++ application in Qt Creator

    19
    0 Votes
    19 Posts
    26k Views
    C
    Good posts.Looking forward to QML debugger problems fixed.
  • [solved] Configuring Qt-Components

    5
    0 Votes
    5 Posts
    3k Views
    M
    problem solved! I just should not to use "c:\Qt\4.7.1\bin" in env variable. then i've forgot to place the path inside double quotations.
  • Changing font size on active focus

    4
    0 Votes
    4 Posts
    3k Views
    B
    Hi, it would be easier to see the problem if you post some code here, to show how the bindings are created and how the objects respond to property changes.
  • Four column UI

    11
    0 Votes
    11 Posts
    7k Views
    A
    Even better, thanks. I think we're missing some tutorials on QML. There is no place (at least I don't see one) where you could find such information, apart from looking at API reference and trying to put something together yourself. It actually gets worse than that, this wiki page on Forum Nokia suggest a totally akward and verbose solution: http://wiki.forum.nokia.com/index.php/Using_QML_ListView
  • Making a Windows release

    12
    0 Votes
    12 Posts
    5k Views
    K
    Thanks for the help anyway.
  • Repeat image until fills the entire rectangle in QML

    3
    0 Votes
    3 Posts
    6k Views
    2
    Thanks. How could I missed that? That helps me a lot. I was thinking of using Repeater but this is a much better solution
  • QML vs QGraphicsView - choosing the right level of abstraction

    4
    0 Votes
    4 Posts
    4k Views
    2
    Well I start to slowly change some of my applications to QML. For the moment only small objects, so the speed doesn't slow. Once the QML scene graph is done , I will probably move almost all the interface to QML. At least for me it works because I want to add more kinky-animated look to my applications. Depends what do you want.
  • Best way to draw graph axes in QML

    6
    0 Votes
    6 Posts
    4k Views
    T
    Without C++ this is going to be much slower. Make sure the UI is still fast enough on the slowest platform you are targeting.
  • QML DocumentGalleryModel in N900

    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • [solved] Accessing QML Component properties

    8
    0 Votes
    8 Posts
    7k Views
    K
    [quote author="mbrasser" date="1295830345"] The sub-elements within a component are considered private, so you'll need to define your own "public API" that exposes the properties you want to manipulate. http://doc.qt.nokia.com/4.7-snapshot/qml-extending-types.html gives a good overview of how you can go about this.[/quote] Perfect. I knew I had seen documentation about this but I couldn't find it. This explains everything.
  • 0 Votes
    5 Posts
    3k Views
    T
    When you build with remote compiler, it gets all files belonging to project. So if you want to add images etc to project you define them to OTHER_FILES or use qrc.
  • Setting width based on text

    2
    0 Votes
    2 Posts
    2k Views
    M
    Hi, You should be able to set the width of a TextInput back to its "implicit width" (the width of the text it contains), by assigning undefined to its width property, either in script: @textInput.width = undefined@ or in a PropertyChanges @ PropertyChanges { target: textInput width: undefined }@ Regards, Michael
  • Some interesting QML wikis on the meego web site

    2
    0 Votes
    2 Posts
    2k Views
    P
    The first link is broken (QML/Creating a transparent window) this is the correct "link":http://wiki.meego.com/QML/Creating_a_transparent_window [quote author="fcrochik" date="1295740000"]"This one ":http://wiki.meego.com/QML/Creating_a_transparent_windowis on how to make a transparent qml. "This one":http://wiki.meego.com/QML/Keyboard_navigation is on Keyboard navigation. "Click Here":http://wiki.meego.com/index.php?title=Special:Search&search=qml&fulltext=Search for more Maybe we should start a wiki document with links to interesting wikis in other web sites.... [/quote]
  • Determining focus

    3
    0 Votes
    3 Posts
    2k Views
    S
    That worked like a charm, thank you!
  • Drag and Drop failed in Parallax view

    1
    0 Votes
    1 Posts
    2k Views
    No one has replied
  • [Solved]Z-index of an item is only applied to siblings

    3
    0 Votes
    3 Posts
    5k Views
    A
    Yes. Z order is local to the parent; that is, it only works among siblings. Look at z order as a series of numbers, instead of a single one. The z order of an item that is the grandchild of some other item would look something like this: 2.4.2. If another item has s z order number of 2.6, it would be above the first item no matter the last (local) z order number. As you found out, parent to the top item if you must be sure to be on top globally.
  • Making Nested Components Visible

    4
    0 Votes
    4 Posts
    2k Views
    K
    So I got that working but now the design module in qt creator cannot see my images. How can I fix this?
  • [Solved] iOS Style Rearrange of Icons

    22
    0 Votes
    22 Posts
    17k Views
    C
    I used the code in the following path, but when i added more list modle element in the list , i can't scroll the list if i want to move the last element in the end, what should i do ? This has been made in to a Wiki Entry: http://developer.qt.nokia.com/wiki/Drag_and_Drop_within_a_GridView