1. 21 May, 2013 - 1 commit
  2. 17 May, 2013 - 1 commit
  3. 16 May, 2013 - 10 commits
  4. 15 May, 2013 - 1 commit
  5. 14 May, 2013 - 3 commits
  6. 13 May, 2013 - 6 commits
  7. 10 May, 2013 - 10 commits
  8. 09 May, 2013 - 2 commits
  9. 08 May, 2013 - 3 commits
  10. 07 May, 2013 - 3 commits
    • Caroline Chao's avatar
      TableView: Expose positionViewAtIndex() method · 2dfcdfd7
      Caroline Chao authored
      
      Task-number: QTBUG-29893
      
      Change-Id: I7c80a68d9d45c3df3e0bf691b69c4510ccd1649d
      Reviewed-by: default avatarJ-P Nurmi <jpnurmi@digia.com>
      Reviewed-by: default avatarJerome Pasion <jerome.pasion@digia.com>
      2dfcdfd7
    • Caroline Chao's avatar
      TableView: Fix activated() not emitted · 533b4535
      Caroline Chao authored
      
      The mousearea in TableView has to accept mouse event in onPressed to
      receive upcoming double click event.
      
      Regression introduced by Iff3e5c1.
      
      Instead of not accepting the event in onPressed, set the MouseArea
      property propagateComposedEvents to true and does not accept the onClicked
      event.
      
      Also uses QStyle::SH_ItemView_ActivateItemOnSingleClick to check if the
      table is activated on single or double-clicking. By default, it is activated
      on double-clicking.
      
      Change-Id: I744174d7b31efebfae5e8db4db7b99a544ecf50f
      Reviewed-by: default avatarJ-P Nurmi <jpnurmi@digia.com>
      533b4535
    • J-P Nurmi's avatar
      Fix TabView not to insert duplicate tabs · a6deb27b
      J-P Nurmi authored
      
      There are three ways to add tabs:
      - declare 'static' Tab { } child elements
      - call addTab() / insertTab()
      - Component::createObject(tabView)
      
      => Do not rely on the calling order of Component.onCompleted()
      and make sure that the same tabs are not accidentally re-inserted.
      
      Task-number: QTBUG-30873
      Change-Id: Ib30cfb676debbb302c5e9f7d757f66aab6fcc684
      Reviewed-by: default avatarCaroline Chao <caroline.chao@digia.com>
      a6deb27b