1. 23 Sep, 2012 - 1 commit
  2. 09 Aug, 2012 - 1 commit
  3. 30 Jul, 2012 - 1 commit
  4. 25 Jul, 2012 - 1 commit
    • Damian Jansen's avatar
      Fix inconsistent playing / paused property setting and signals · 82212d1d
      Damian Jansen authored
      
      Playing should only indicate false if it has been set as such
      in code, or in the event of a valid image but non-movie being
      used.
      Noted the edge case in documentation.
      Signals were not being emitted for playing/paused in the cases
      where an image was not loaded. Paused property was also being
      incorrectly assigned, which supressed pause behavior.
      
      Task-number: QTBUG-26478
      Change-Id: I1aaab9b7c495811114b30b491a900804a75d590f
      Reviewed-by: default avatarAlan Alpert <alan.alpert@nokia.com>
      82212d1d
  5. 16 Jul, 2012 - 1 commit
  6. 13 Jul, 2012 - 1 commit
  7. 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
  8. 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
  9. 31 May, 2012 - 1 commit
    • Bea Lam's avatar
      Fix doc snippets paths and parsing errors · 4c671c04
      Bea Lam authored
      qtqml.qdocconf and qtquick.qdocconf now refer to the correct
      snippets and source directories.
      
      Snippet paths in .qdoc and .cpp files have been updated to refer to
      the new shortened path references, e.g. \snippet qml/file.cpp instead of
      \snippet doc/src/snippets/qml/file.cpp.
      
      This also deletes snippets from src/qml/doc/snippets that belonged under
      src/quick/doc/snippets (and were already duplicated there anyway) and
      restores some snippet files that shouldn't have been deleted.
      
      Also fixes some inline snippets to use \code .. \endcode instead of
      \qml .. \endqml as they contained javascript or partial QML
      snippets that were causing parsing errors from qdoc.
      
      There are still snippet errors arising from qmlintro.qdoc as the
      qmlintro snippets directory that it refers to cannot be located.
      
      There are also two references to a removed snippet identifier in
      examples/qml/cppextensions/plugins/plugin.cpp that need to be fixed
      in conjunction with the related docs in a later c...
      4c671c04
  10. 24 May, 2012 - 1 commit
  11. 08 May, 2012 - 1 commit
  12. 04 May, 2012 - 1 commit
  13. 19 Mar, 2012 - 1 commit
  14. 13 Mar, 2012 - 1 commit
  15. 24 Feb, 2012 - 1 commit
  16. 30 Jan, 2012 - 1 commit
  17. 23 Jan, 2012 - 1 commit
  18. 05 Jan, 2012 - 1 commit
  19. 02 Dec, 2011 - 2 commits
    • 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...
      6c8378ea
    • Gunnar Sletta's avatar
      Remove QSGContext and QSGTexture from QDeclarativePixmapData · e32eb8ee
      Gunnar Sletta authored
      
      In order to cleanly support multiple windows we need to not
      have the QSGContext reference in QDeclarativeEngine and we
      need to be able to have one copy of the texture for each
      QSGContext that is not sharing when we have multiple windows.
      
      This also makes it easier to the release graphical resources from
      a running application, which is another feature that we want
      to eventually implement.
      
      This patch does remove an adaptation feature which is the
      decodeToTexture, which seemed like a good idea at the time
      but in hindsight has not been used for anything.
      
      Edit: resolved conflict in qquickimage.cpp
      Edit: updated QDeclarativePixmap testcase
      Edit: updated QQuickImage testcase
      Edit: Rebased on top of QDeclarativePixmapCacheChanges
      
      Change-Id: Ifc61dd8158d3f841437d029b6031a91196145517
      Reviewed-by: default avatarMartin Jones <martin.jones@nokia.com>
      e32eb8ee
  20. 07 Nov, 2011 - 1 commit
  21. 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
  22. 17 Oct, 2011 - 1 commit
  23. 29 Aug, 2011 - 1 commit
  24. 09 Aug, 2011 - 1 commit
  25. 08 Jul, 2011 - 1 commit
  26. 09 Jun, 2011 - 1 commit
  27. 27 Apr, 2011 - 2 commits
    • Qt by Nokia's avatar
      Initial import from qtquick2. · a129444b
      Qt by Nokia authored
      Branched from the monolithic repo, Qt qtquick2 branch, at commit
      a4a585d2ee907746682846ae6e8a48e19deef469
      a129444b
    • Qt by Nokia's avatar
      Initial import from the monolithic Qt. · 885735d0
      Qt by Nokia authored
      This is the beginning of revision history for this module. If you
      want to look at revision history older than this, please refer to the
      Qt Git wiki for how to use Git history grafting. At the time of
      writing, this wiki is located here:
      
      http://qt.gitorious.org/qt/pages/GitIntroductionWithQt
      
      If you have already performed the grafting and you don't see any
      history beyond this commit, try running "git log" with the "--follow"
      argument.
      
      Branched from the monolithic repo, Qt master branch, at commit
      896db169ea224deb96c59ce8af800d019de63f12
      885735d0