1. 04 Jul, 2012 - 1 commit
  2. 03 Jul, 2012 - 1 commit
  3. 25 Jun, 2012 - 1 commit
  4. 22 Jun, 2012 - 1 commit
  5. 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
  6. 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
  7. 05 Jun, 2012 - 2 commits
  8. 29 May, 2012 - 1 commit
  9. 24 May, 2012 - 1 commit
  10. 13 May, 2012 - 1 commit
    • Andrew den Exter's avatar
      Defer construction of TextEdit/TextInput delegates. · bd5e23a0
      Andrew den Exter authored
      
      Don't create instances of the delegate components until the item
      gains focus, or the cursorVisible property is set to true.
      
      Cursor delegates are typically small and relatively fast to create and
      so won't have a significant cost during a one off focus in event,
      but that cost can still add up when creating a number of TextInputs
      or TextEdits at once.  If a delegate that is instantiated immeditately
      is required it is possible to instead create a child item and bind to
      the cursorRectangle and cursorVisible properties.
      
      Change-Id: I5ec2b5b6a30e534aee3dd5a58c6a5ac0686f5ce2
      Reviewed-by: default avatarMichael Brasser <michael.brasser@nokia.com>
      bd5e23a0
  11. 03 May, 2012 - 1 commit
  12. 27 Apr, 2012 - 3 commits
  13. 20 Apr, 2012 - 1 commit
  14. 19 Apr, 2012 - 1 commit
  15. 02 Apr, 2012 - 1 commit
    • Andrew den Exter's avatar
      Set cursorVisible to false when im cursor length is 0. · 368a3a73
      Andrew den Exter authored
      
      If the length of the QInputMethodEvent::Cursor attribute is 0 the
      cursor is supposed to be hidden.  To ensure this and any other IM
      state is reverted when the input method is reset send a empty
      event to the editor when preedit is cancelled or removed and
      count formatting or cursor changes when determining if the
      input method is composing (i.e has state that needs to be reset).
      
      Change-Id: Ifca69aa0c18776b1aef355ed6ae9aecc40b9d475
      Reviewed-by: default avatarYann Bodson <yann.bodson@nokia.com>
      368a3a73
  16. 27 Mar, 2012 - 1 commit
  17. 26 Mar, 2012 - 1 commit
  18. 23 Mar, 2012 - 1 commit
  19. 22 Mar, 2012 - 1 commit
  20. 21 Mar, 2012 - 2 commits
    • Andrew den Exter's avatar
      Don't overwrite text selections made in focus handlers. · b6380adc
      Andrew den Exter authored
      
      Defer giving focus to TextInput or TextEdit until after other mouse
      press handling has been performed, otherwise setting the cursor position
      will overwrite any selection or cursor position set in the
      on(Active)FocusChanged handler.
      
      Change-Id: I6332642484de65138a444987b5a81be69c6f835f
      Reviewed-by: default avatarYann Bodson <yann.bodson@nokia.com>
      b6380adc
    • Andrew den Exter's avatar
      Content size should not include trailing spaces. · 0e1baa28
      Andrew den Exter authored
      
      Excluding trailing spaces from the content size means the cursor
      position also needs to considered in determining the width used
      by the text as unwrapped white space can push the cursor over
      the width of the item.
      
      Also corrects an auto scroll issue with right to left text
      identified in extending the tests.
      
      Task-number: QTBUG-24630
      
      Change-Id: Iaab9eac03824b22f507154fa1d6e55376bd075a0
      Reviewed-by: default avatarYann Bodson <yann.bodson@nokia.com>
      0e1baa28
  21. 20 Mar, 2012 - 2 commits
  22. 14 Mar, 2012 - 1 commit
  23. 13 Mar, 2012 - 3 commits
  24. 24 Feb, 2012 - 2 commits
  25. 22 Feb, 2012 - 1 commit
  26. 17 Feb, 2012 - 1 commit
  27. 10 Feb, 2012 - 1 commit
  28. 09 Feb, 2012 - 1 commit
    • Andrew den Exter's avatar
      Add linkColor property to Text. · 8550ed69
      Andrew den Exter authored
      
      Allows the color of links in text to be changed from the default blue.
      
      This currently only works with StyledText and the distance field
      rendererer.  It could be made to work with RichText overwriting the
      specified foreground color in all instances or by not setting a default
      color in the html parser.  The former would prevent the color being
      set with CSS or some future means for altering text formats.  The latter
      would break rendering with QPainter.
      
      Task-number: QTBUG-23048
      Change-Id: I98df215cabe8a089f648fd4a6206622b4318fb8f
      Reviewed-by: default avatarMartin Jones <martin.jones@nokia.com>
      8550ed69
  29. 07 Feb, 2012 - 1 commit
  30. 06 Feb, 2012 - 1 commit
  31. 02 Feb, 2012 - 2 commits