1. 08 Aug, 2017 - 2 commits
  2. 07 Aug, 2017 - 1 commit
    • Michael Brasser's avatar
      Add very basic compressed texture support · 432e27ae
      Michael Brasser authored
      
      Allow direct loading of pkm texture files into Image. This can
      be extended to additional texture types, and then eventually
      turned into a full plugin architexture.
      
      [ChangeLog][Qt Quick] Allow direct loading of pkm texture files
      into Image. For example: Image { source: "myImage.pkm" }
      
      Change-Id: I1baed6c3e85a15752da8adc675482d874c9355ab
      Task-number: QTBUG-59872
      Task-number: QTBUG-29451
      Reviewed-by: default avatarLaszlo Agocs <laszlo.agocs@qt.io>
      432e27ae
  3. 05 Aug, 2017 - 1 commit
  4. 04 Aug, 2017 - 1 commit
  5. 03 Aug, 2017 - 1 commit
  6. 02 Aug, 2017 - 1 commit
  7. 31 Jul, 2017 - 1 commit
    • Laszlo Agocs's avatar
      shapes: Rip out more JS API leftovers · e26ac791
      Laszlo Agocs authored
      
      None of the removed code is ever hit in practice since the public JS API
      has been removed some time ago. Let's follow it up with removing the
      internal details since such an API is not going to come back in the near
      future.
      
      Change-Id: I721ab296a7a2acb3a5f61ce705da7aa66d3ad765
      Reviewed-by: default avatarMitch Curtis <mitch.curtis@qt.io>
      e26ac791
  8. 29 Jul, 2017 - 1 commit
  9. 28 Jul, 2017 - 6 commits
  10. 27 Jul, 2017 - 2 commits
  11. 26 Jul, 2017 - 4 commits
  12. 25 Jul, 2017 - 3 commits
  13. 24 Jul, 2017 - 1 commit
  14. 22 Jul, 2017 - 1 commit
  15. 18 Jul, 2017 - 2 commits
  16. 17 Jul, 2017 - 2 commits
  17. 14 Jul, 2017 - 2 commits
    • Sérgio Martins's avatar
      Add a unit-test for QQuickWidget::grab() · 86cf1f0d
      Sérgio Martins authored
      
      Test that it actually didn't grab a blank pixmap,
      as happened with QOpenGLWidget in the past.
      
      Change-Id: Iee8e7ff2f3fa2f2223a2a284fec96d96f62e36a6
      Reviewed-by: default avatarRobin Burchell <robin.burchell@crimson.no>
      86cf1f0d
    • Simon Hausmann's avatar
      Add support for QEvent::LanguageChange · 61887379
      Simon Hausmann authored
      
      Respond to the language change event by refreshing all binding
      expressions. For constant string translation bindings we must now create
      special QQmlBinding instances instead of a one-time property write
      meta-call upon instantiation. Those however are more lightweight than an
      entire JavaScript expression.
      
      In addition this provides a slot to explicitly trigger a re-evaluation
      of bindings, to make it a little easier to discover for the developer.
      
      [ChangeLog][QtQml][QQmlEngine] Added retranslate() slot and
      QEvent::LanguageChange support to refresh bindings when changing the
      language at run-time.
      
      Task-number: QTBUG-15602
      Change-Id: Ide174648e1d8a5738acb88e15495018d0869d7bc
      Reviewed-by: default avatarMichael Brasser <michael.brasser@live.com>
      61887379
  18. 13 Jul, 2017 - 5 commits
  19. 11 Jul, 2017 - 3 commits
    • Jan Arve Saether's avatar
      Merge remote-tracking branch 'origin/dev' into wip/pointerhandler · b6e6e737
      Jan Arve Saether authored
      Conflicts:
            examples/quick/shared/LauncherList.qml
            src/quick/items/qquickevents.cpp
            src/quick/items/qquickevents_p_p.h
            src/quick/items/qquickwindow.cpp
            tests/auto/quick/touchmouse/tst_touchmouse.cpp
      
      Change-Id: Id692d291455093fc72db61f1b854f3fc9190267b
      b6e6e737
    • Mitch Curtis's avatar
      Doc: finish incomplete sentence in Loader’s detailed description · c7b22fd4
      Mitch Curtis authored
      
      Task-number: QTBUG-61889
      Change-Id: Ib6adcabc79b75fe2ee9a31fc4808a2a5f303df74
      Reviewed-by: default avatarTopi Reiniö <topi.reinio@qt.io>
      c7b22fd4
    • J-P Nurmi's avatar
      Add QQuickItem::ItemEnabledHasChanged · 286f14f1
      J-P Nurmi authored
      
      The itemChange() method has been very useful for Qt Quick Controls 2
      to efficiently react to various item changes, but a notification for
      the enabled state was missing, so it always had to be handled as a
      special case using signals and slots. This change allows QQC2 to handle
      enabled state changes the same way e.g. visibility changes are handled.
      It's also nice to be able to update a control's internal state before
      the actual notifier signal is emitted.
      
      [ChangeLog][QtQuick][QQuickItem] Added a ItemEnabledHasChanged value to
      the ItemChange enum. QQuickItem::itemChange(ItemEnabledHasChanged) gets
      called when the item's effective enabled state has changed. The new
      enabled state is stored in ItemChangeData::boolValue.
      
      Change-Id: Iae96ec21f2b94f453632282473decd1c66097a75
      Reviewed-by: default avatarMitch Curtis <mitch.curtis@qt.io>
      Reviewed-by: default avatarRobin Burchell <robin.burchell@crimson.no>
      286f14f1