1. 15 May, 2013 - 1 commit
  2. 03 May, 2013 - 1 commit
  3. 10 Jan, 2013 - 1 commit
  4. 09 Jan, 2013 - 1 commit
  5. 15 Dec, 2012 - 1 commit
  6. 29 Nov, 2012 - 1 commit
  7. 23 Sep, 2012 - 1 commit
  8. 30 Jul, 2012 - 1 commit
  9. 17 Jul, 2012 - 1 commit
    • Alan Alpert's avatar
      QQuickCanvas renames · feb996e3
      Alan Alpert authored
      
      QQuickCanvas is now called QQuickWindow
      QQuickCanvas::rootItem is now QQuickWindow::contentItem
      QQuickItem::canvas is now QQuickItem::window
      QQuickItem::ItemChangeData::canvas is also renamed window
      QQuickCanvas::grabFrameBuffer is now QQuickWindow::grabWindow
      The functions related to the color property have dropped the clear from
      their names.
      
      The first three changes have interim compatibility measures in place to
      ease the transition.
      
      Change-Id: Id34e29546a22a74a7ae2ad90ee3a8def6fc541d2
      Reviewed-by: default avatarMartin Jones <martin.jones@nokia.com>
      feb996e3
  10. 16 Jul, 2012 - 1 commit
  11. 28 Jun, 2012 - 1 commit
    • Shawn Rutledge's avatar
      Propagate synthesized mouse events in parallel with touch. · 468626e9
      Shawn Rutledge authored
      
      The old way of event propagation inside QQuickCanvas was to send the
      touch event through all elements, and if it was accepted along the
      way, stop. Otherwise generate a mouse event and propagate it through
      the items in the same way.
      
      With this patch the behavior is changed instead to do the propagation
      in parallel.  The idea is to first send a touch, then a mouse event to
      each QML item (in paint order) that can potentially handle the events.
      When items filter their child elements, the same logic applies.
      
      Other changes/clarifications:
      - mouse events no longer get synthesized for more than one touch point
      - TouchPoints can be distributed to multiple Items
      - if an item accepts a touch point, it always gets updates, even if
        the point is stationary
      - events containing only stationary TouchPoints are discarded
      - PinchArea must accept any initial single TouchPoint in order to
        receive subsequent updates, even though it's not pinching yet.
        This means if PA is on top, items underneath don't get touches.
      
      New unit tests showing this behavior were added.
      
      This patch was written by Frederik Gladhorn,
      Laszlo Agocs and Shawn Rutledge.
      
      Due to the complexity of the logic some refactoring was done.
      
      QQuickMouseEventEx has been removed because it inherently relied on
      using the QEvent d pointer.
      
      Change-Id: If19ef687d7602e83cc11b18d2fecfbbdb4e44f5c
      Reviewed-by: default avatarFrederik Gladhorn <frederik.gladhorn@nokia.com>
      468626e9
  12. 21 Jun, 2012 - 1 commit
    • Chris Adams's avatar
      Create new documentation structure · 5e33b0f5
      Chris Adams authored
      The documentation currently has no clear separation between Qt QML
      and Qt Quick.  With recent commits like:
      6c8378ea
      and
      ab1e5101
      
      
      the separation between the language definition and implementation,
      provided by Qt QML, and the standard library for the QML language,
      provided by Qt Quick, is clear.
      
      This commit creates a new documentation structure that is more
      navigable and separates concepts into logical categories, with
      clear separation between QtQML and QtQuick.  It also provides a more
      generic QML Application Developer Resources page which contains links
      to information for QML application developers.
      
      Change-Id: Ia807ccfbfd24ffa0e1c7f0a51ed9d2ed3aa6a733
      Reviewed-by: default avatarMartin Jones <martin.jones@nokia.com>
      5e33b0f5
  13. 06 Jun, 2012 - 1 commit
    • Jerome Pasion's avatar
      Doc: Grouped Qt Quick types into several groups · ca6d49e6
      Jerome Pasion authored
      
      -created new groups and converted some overviews into group pages
      -edited type documentation and added \ingroup
      -articles still need title fixes and link fixes
      
      Groups:
      qtquick-visual-types
      qtquick-item-graphics
      qtquick-shaders
      qtquick-canvas
      qtquick-text
      qtquick-text-validator
      qtquick-interaction
      qtquick-positioners
      qtquick-transformations
      qtquick-states
      qtquick-animation-define
      qtquick-animation-properties
      qtquick-animation-control
      qtquick-animation-modifiers
      qtquick-images-sprites
      qtquick-images
      qtquick-models
      qtquick-containers
      qtquick-views
      qtquick-paths
      qtquick-utility
      
      Task: QTBUG-25685
      
      Change-Id: I81d4df3320bf5daad5cabb5e42408013fb24f464
      Reviewed-by: default avatarBea Lam <bea.lam@nokia.com>
      Reviewed-by: default avatarAlan Alpert <alan.alpert@nokia.com>
      ca6d49e6
  14. 24 May, 2012 - 1 commit
  15. 30 Apr, 2012 - 1 commit
  16. 19 Apr, 2012 - 1 commit
  17. 13 Mar, 2012 - 1 commit
  18. 10 Feb, 2012 - 1 commit
  19. 30 Jan, 2012 - 1 commit
  20. 23 Jan, 2012 - 1 commit
  21. 05 Jan, 2012 - 1 commit
  22. 02 Dec, 2011 - 1 commit
    • Kent Hansen's avatar
      Say hello to QtQuick module · 6c8378ea
      Kent Hansen authored
      
      This change moves the QtQuick 2 types and C++ API (including
      SceneGraph) to a new module (AKA library), QtQuick.
      
      99% of this change is moving files from src/declarative to
      src/quick, and from tests/auto/declarative to
      tests/auto/qtquick2.
      
      The loading of QtQuick 2 ("import QtQuick 2.0") is now delegated to
      a plugin, src/imports/qtquick2, just like it's done for QtQuick 1.
      
      All tools, examples, and tests that use QtQuick C++ API have gotten
      "QT += quick" or "QT += quick-private" added to their .pro file.
      
      A few additional internal QtDeclarative classes had to be exported
      (via Q_DECLARATIVE_PRIVATE_EXPORT) since they're needed by the
      QtQuick 2 implementation.
      
      The old header locations (e.g. QtDeclarative/qquickitem.h) will
      still be supported for some time, but will produce compile-time
      warnings. (To avoid the QtQuick implementation using the
      compatibility headers (since QtDeclarative's includepath comes
      first), a few include statements were modified, e.g. from
      "#include <qsgnode.h>" to "#include <QtQuick/qsgnode.h>".)
      
      There's a change in qtbase that automatically adds QtQuick to the
      module list if QtDeclarative is used. Together with the compatibility
      headers, this should help reduce the migration pain for existing
      projects.
      
      In theory, simply getting an existing QtDeclarative-based project
      to compile and link shouldn't require any changes for now -- but
      porting to the new scheme is of course recommended, and will
      eventually become mandatory.
      
      Task-number: QTBUG-22889
      Reviewed-by: default avatarLars Knoll <lars.knoll@nokia.com>
      Change-Id: Ia52be9373172ba2f37e7623231ecb060316c96a7
      Reviewed-by: default avatarKent Hansen <kent.hansen@nokia.com>
      Reviewed-by: default avatarSergio Ahumada <sergio.ahumada@nokia.com>
      6c8378ea
  23. 07 Nov, 2011 - 1 commit
  24. 21 Oct, 2011 - 1 commit
    • Kent Hansen's avatar
      Rename Qt Quick-specific classes to QQuick* · bfb3c424
      Kent Hansen authored
      
      The QSG (SceneGraph) prefix is too generic for
      Qt Quick(2)-specific classes.
      
      All the classes and files in the declarative/items
      directory have been renamed.
      
      In particular, for classes that are currently public,
      the renaming is as follows:
      
      QSGView --> QQuickView
      QSGCanvas --> QQuickCanvas
      QSGItem --> QQuickItem
      QSGPaintedItem --> QQuickPaintedItem
      
      The header files have been renamed accordingly
      (e.g. qsgview.h --> qquickview.h).
      
      Change-Id: Iac937fff81db20bb639486a793c3aeb5230b038c
      Reviewed-by: default avatarKent Hansen <kent.hansen@nokia.com>
      bfb3c424
  25. 17 Oct, 2011 - 1 commit
  26. 01 Sep, 2011 - 2 commits
  27. 09 Aug, 2011 - 1 commit
  28. 29 Jul, 2011 - 1 commit
  29. 25 Jul, 2011 - 1 commit
  30. 08 Jul, 2011 - 1 commit
  31. 09 Jun, 2011 - 1 commit
  32. 04 May, 2011 - 1 commit
  33. 27 Apr, 2011 - 1 commit