| Commit message (Collapse) | Author | Age | Files | Lines |
|\ |
|
| |\ |
|
| | |\ |
|
| | | | |
|
| | | | |
|
| | |/
| |/| |
|
| | | |
|
| | |
| | |
| | |
| | | |
By allocating memory internally we improve the opportunity for optimization.
|
| |/ |
|
| | |
|
| |\ |
|
| | | |
|
| | |\ |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | |/
| |/| |
|
| | |
| | |
| | |
| | | |
This reverts commit d4abbfdd1959a65ecfb997c962aa8ea132c77eaf.
|
| | | |
|
| |/
| |
| |
| | |
This functionality is now built in to RotationAnimation.
|
| |
| |
| |
| |
| |
| | |
Done with Roberto.
Reviewed-by: Roberto Raggi
|
| |\
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
* '4.7' of scm.dev.nokia.troll.no:qt/qt-qml: (57 commits)
Crash
Cosmetic tweaks
no need to include this private header
fix particles plugin
Update QmlChanges.txt
Replace QDeclarativeContext::addDefaultObject() -> setContextObject()
Fix test, fix warning consistency.
Improve value type binding behavior
Truncate title at right if too long (cannot currently ElideRight and center).
Minor construction optimizations.
Don't export symbols in webkit plugin.
Move particles in their own plugin (Qt.labs.particles)
Add a positioning 'mode' to positionViewAtIndex()
Compile fix after e5922ab126f3532483b18720ce893d6be826d50e
Add AnchorAnimation for animating AnchorChanges.
Remove more accidentally submitted code
Comment out unused method.
Document - and use - the qmlRegisterXXX template functions
when loading debug import plugins on Mac, try with _debug.dylib suffix
fix inclusion of qt_targets.pri in qimportbase.pri
...
|
| | |\
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
* '4.7' of scm.dev.nokia.troll.no:qt/qt-qml: (57 commits)
Crash
Cosmetic tweaks
no need to include this private header
fix particles plugin
Update QmlChanges.txt
Replace QDeclarativeContext::addDefaultObject() -> setContextObject()
Fix test, fix warning consistency.
Improve value type binding behavior
Truncate title at right if too long (cannot currently ElideRight and center).
Minor construction optimizations.
Don't export symbols in webkit plugin.
Move particles in their own plugin (Qt.labs.particles)
Add a positioning 'mode' to positionViewAtIndex()
Compile fix after e5922ab126f3532483b18720ce893d6be826d50e
Add AnchorAnimation for animating AnchorChanges.
Remove more accidentally submitted code
Comment out unused method.
Document - and use - the qmlRegisterXXX template functions
when loading debug import plugins on Mac, try with _debug.dylib suffix
fix inclusion of qt_targets.pri in qimportbase.pri
...
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | |\ |
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | | |
It is faster and easier to use to just support a single context object.
|
| | | | |\ |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Changing value type bindings in state changes, and implicitly removing
them on property assignment was not reliable. Internally the system
considered a binding on "font" and one on "font.x" as a binding on two
separate properties, even though the "font" binding completely
overrides the "font.x" property.
Following this change a binding to "font.x" creates a proxy binding object
on the "font" property in addition to the "font.x" binding itself. This
allows behavior to be consistent across all operations.
QT-2920
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
address.com must really get sick of test robots.
|
| | | | | | |
|
| | | | |/
| | | |/| |
|
| | | | | |
|
| | | |\ \ |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Task-number: QT-2846
|
| |\ \ \ \ \
| | |/ / / /
| |/| | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
4.7-integration
* '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-2:
Fixed problem displaying half width character as full width
make it possible to use sse2 with mingw
QTreeView: Optimize by avoiding calling detach
Cleaning commit 7baaea978200c82fdf65e3934cfa373edeca6524
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
There is the problem that Qt displays half width character
(e.g. alphabet) as full width. This is reported in #QTBUG-1726.
This occurs in the following fonts.
- Monospace font
- Selif font
- IPA font (Ver.0301)
- NSimSun
In Cario and fontconfig, the FT_LOAD_IGNORE_GLOBAL_ADVANCE_WIDTH
is specified as flag of FT_Load_Glyph function to solve this problem.
According to the document of freetype, this flag exists to support
buggy CJK fonts.
So this flag is specified as default flag of QFontEngineFT.
Merge-request: 2319
Reviewed-by: Eskil Abrahamsen Blomfeldt <eskil.abrahamsen-blomfeldt@nokia.com>
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
All the windows callback functions need an attribute to force the
alignment of the arg pointer.
Reviewed-by: Benjamin Poulain
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
QVector::operator[] calls detach. and we should avoid calling it
in a loop.
QVector::at() cannot be used here because we need a non const reference.
Reviewed-by: Gabriel
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Reviewed-by: Trust me
|
| |\ \ \ \ \
| | |/ / / /
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
4.7-integration
* '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-2:
Fixed rounded SVG rectangles when 'rx' or 'ry' is 0.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Task-number: QTBUG-8264
Reviewed-by: Trond
|
| |_|_|/ /
|/| | | | |
|
| |_|/ /
|/| | |
| | | |
| | | | |
Provides more control over where and how the view is positioned.
|
|\ \ \ \ |
|
| |\ \ \ \
| | | |_|/
| | |/| | |
|
| | |\ \ \
| | | |/ /
| | |/| |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
* '4.7' of scm.dev.nokia.troll.no:qt/qt-qml: (42 commits)
Remove more accidentally submitted code
Comment out unused method.
Document - and use - the qmlRegisterXXX template functions
when loading debug import plugins on Mac, try with _debug.dylib suffix
fix inclusion of qt_targets.pri in qimportbase.pri
Use TARGETPATH instead of hardcoding locations
Fix location in which webkit import is stored in builddir
Oooops --- revert wrong commit
Doc
Remove accidentally submitted code
Ensure currentIndex NOTIFY is emitted when currentIndex changes due to model change.
Unify binding optimizer and QtScript binding signal management logic
Schedule view relayout after itemsInserted/Removed()
Use no-version-specified to mean any version (used to work, fixed again,
URL redirection for font loader
URL redirection for AnimatedImage
Technically, Location can be relative (never is though...)
URL redirection for normal images.
URL redirection for components resources.
URL redirects for border image.
...
|