Skip to content

QML and Qt Quick

Looking for The Bling Thing(tm)? Post here!
19.6k Topics 75.8k Posts
  • Registering an Enumeration through a Plugin

    9
    0 Votes
    9 Posts
    5k Views
    T

    Hmm, you shouldn't do that change to qmlRegisterType though, and it's strange that it would fix your issue. Did you have a look at the value of "uri"?

  • Add an opengl component in qml

    1
    0 Votes
    1 Posts
    3k Views
    No one has replied
  • [solved] Ways to deliver the .qml source ?

    13
    0 Votes
    13 Posts
    5k Views
    A

    MTK358, I think, it's useful possibility.

  • 0 Votes
    10 Posts
    6k Views
    M

    [quote author="JesseOnRails" date="1286006941"]>ls /Developer/Applications/Qt/imports/
    >Qt org
    [/quote]

    Okay, it looks like this has "old" contents (there should be a QtWebKit rather than an org) -- I've added a note to "QTBUG-13888":http://bugreports.qt.nokia.com/browse/QTBUG-13888.

    Regards,
    Michael

  • Creating grouped menu with Qt Quick

    5
    0 Votes
    5 Posts
    5k Views
    L

    The method posted by Denis seems to be working well. Thank you very much!

  • [solved] - Embed OpenGl rendering

    9
    0 Votes
    9 Posts
    5k Views
    ?

    yes, you could also add [Solved] to the title, along with the tag :)

  • First impressions of Qt Quick on Symbian

    6
    0 Votes
    6 Posts
    4k Views
    A

    Thorbjørn Lindeijer, yes, but it's enough for testing.

  • 0 Votes
    5 Posts
    8k Views
    Y

    Yes thanks for the sources, this is what I was looking for.

  • 0 Votes
    3 Posts
    10k Views
    B

    [quote author="Thorbjørn Lindeijer" date="1285697851"]We've been reluctant to add additional primitives because of speed concerns. For example I wrote an Ellipse element, but it was not accepted since there is no way to make it fast.

    However, there is a project that will allow arbitrary things to be drawn into a QML scene, emulating the HTML5 canvas rendering API:

    "http://qt.gitorious.org/qt-labs/qmlcanvas":http://qt.gitorious.org/qt-labs/qmlcanvas

    You can do a lot of cool things with some imperative drawing code, but you should also be able to write a simple Line component in pure QML based on that.[/quote]

    Ah, thank you for the response.

    In that case I guess I'll just stick with the already imperative approach that I use with a custom QGraphicsItem. I was trying to get rid of all custom imperative drawing by using a QML approach and some internal JavaScript to make it cleaner, but I guess QML has a different focus - and that seems to be UIs for portable devices.

  • Qml + c++

    10
    0 Votes
    10 Posts
    8k Views
    A

    [quote author="nicola1" date="1285657479"]I added Q_OBJECT and now is working, Thanks. I should understand because i need Q_OBJECT when y class inherit from QSqlTableModel.

    [/quote]

    "http://doc.trolltech.com/4.7/qobject.html#Q_OBJECT":http://doc.trolltech.com/4.7/qobject.html#Q_OBJECT

  • 0 Votes
    4 Posts
    4k Views
    T

    Have you tried using a snapshot of Qt Creator? The QML handling has seen much work, maybe that already works there already (I think it does, but I am not 100% sure).

  • 0 Votes
    3 Posts
    5k Views
    Y

    Thanks !

  • [Moved] How to deploy a QML and C++ app?

    2
    0 Votes
    2 Posts
    3k Views
    I

    Try to watch the event log. In windows 7 it has been improved and it may point you to what missed.

  • Qt.playSound

    4
    0 Votes
    4 Posts
    4k Views
    M

    You'll need to install Mobility (see "here":http://qt.nokia.com/products/appdev/add-on-products/catalog/4/new-qt-apis/mobility or "here":http://qt.nokia.com/developer/new-qt-apis for the downloads). You can then use the elements as described in the documentation -- for example, here's how you could use the "SoundEffect element":http://doc.qt.nokia.com/qtmobility-1.0/qml-soundeffect.html.

  • Qml + Maemo5

    4
    0 Votes
    4 Posts
    2k Views
    A

    Oh, ok. If you use the system palette it is expected. Nice you found that =)

  • Flickable problem: Hide un-flickable area

    3
    0 Votes
    3 Posts
    2k Views
    2

    Thanks archerabi. I searched through documentation all day without any luck.

  • Unable to compile when using QtDeclarative

    11
    0 Votes
    11 Posts
    6k Views
    D

    Perhaps it wasn't included in the release. If you get the tar ball from gitorious it probably works. "http://qt.gitorious.org/qt/qt/archive-tarball/4.7":http://qt.gitorious.org/qt/qt/archive-tarball/4.7

  • Delete QML file from creator

    6
    0 Votes
    6 Posts
    3k Views
    2

    I just filled the bug: "here":http://bugreports.qt.nokia.com/browse/QTCREATORBUG-2436

  • Multiple declarativeviews

    2
    0 Votes
    2 Posts
    2k Views
    M

    Have you seen the photoviewer demo (in demos/declarative/photoviewer)? It uses the following techniques, which should be relevant to what you are trying to accomplish:

    multiple layers of Views within delegates packages, which allow smooth transitions of items from one view to another

    For example, you might have an empty PathView of a single point sitting in the corner, which gets filled with the contents of the original circle PathView when transitioning to the next circle PathView. Packages can sometimes be hard to get started with, so I'd suggest also looking at the simple example in examples/declarative/modelviews/package.

  • QML ListView

    3
    0 Votes
    3 Posts
    3k Views
    A

    thanks,thats exactly what i am looking for.let me give it a shot and see.