Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | demos/declarative/webbrowser example modifications | artoka | 2011-11-17 | 13 | -613/+0 |
| | | | | | | | | | Modified the example to use centralized qmlapplicationviewer, removed duplicate files and modified project files according to the changes. Merge-request: 2719 Reviewed-by: Casper van Donderen <casper.vandonderen@nokia.com> | ||||
* | Update licenseheader text in source files for qt4.8 | Jyri Tahtela | 2011-05-13 | 5 | -85/+85 |
| | | | | | | | Updated version of LGPL and FDL licenseheaders. Apply release phase licenseheaders for all source files. Reviewed-by: Trust Me | ||||
* | Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into qtquick11 | Martin Jones | 2011-01-19 | 5 | -5/+5 |
|\ | |||||
| * | Update copyright year to 2011. | Jason McDonald | 2011-01-10 | 5 | -5/+5 |
| | | | | | | | | Reviewed-by: Trust Me | ||||
* | | Fix zooming in declarative webbrowser demo | Joona Petrell | 2010-10-29 | 1 | -1/+1 |
|/ | | | | | Task-number: Reviewed-by: Martin Jones | ||||
* | Replace all occurances of "Qt 4.7" with "QtQuick 1.0" | Aaron Kennedy | 2010-09-29 | 5 | -5/+5 |
| | | | | | Task-number: QTBUG-13799 Reviewed-by: Martin Jones | ||||
* | Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7 | Yann Bodson | 2010-08-26 | 1 | -4/+26 |
|\ | |||||
| * | Add quit buttons to declarative demos | Joona Petrell | 2010-08-26 | 1 | -4/+26 |
| | | | | | | | | | | Task-number: QTBUG-13048 Reviewed-by: Martin Jones | ||||
* | | Make declarative examples a bit more qt-like. | Yann Bodson | 2010-08-26 | 4 | -0/+0 |
|/ | |||||
* | QML focus API updates. | Michael Brasser | 2010-07-21 | 1 | -1/+1 |
| | | | | | | | | | The wantsFocus property has been renamed to activeFocus, to better reflect its value. Reading and writing the focus property is also now consistent -- this property represents focus within a scope. Other small changes were made to keep things consistent with the new naming. Reviewed-by: Aaron Kennedy | ||||
* | Remove the old WebView element in src/import. The new one is in ↵ | Alexis Menard | 2010-06-18 | 1 | -3/+2 |
| | | | | | | | | | src/3rdparty/webkit Also change a bit the demo due to a little API change. The module is not org.webkit but QtWebKit now. Reviewed-by:simon hausmann | ||||
* | Add go button to webbrowser example. | Yann Bodson | 2010-06-10 | 4 | -4/+35 |
| | | | | Task-number: QTBUG-11310 | ||||
* | Accept enter key in the webbrower demo url input. | Martin Jones | 2010-06-07 | 1 | -0/+4 |
| | |||||
* | Fix some bugs in the QML Web Browser buttons | Alan Alpert | 2010-05-31 | 2 | -1/+2 |
| | | | | Now with fewer warnings! Also, the stop button works. | ||||
* | Fix zoom bug in QML Web Browser demo | Alan Alpert | 2010-05-31 | 1 | -2/+2 |
| | | | | Zooming out no longer zooms to smaller than the window size. | ||||
* | Add license headers for .qml files. | Jason McDonald | 2010-05-21 | 5 | -0/+205 |
| | | | | | | | Examples get the BSD license, while all other .qml files get the LGPL/tech-preview license. Reviewed-by: Trust Me | ||||
* | Removed dependency of QDeclarativeWebView to private Qt (Declarative) API | Simon Hausmann | 2010-05-13 | 1 | -22/+7 |
| | | | | | Exchanged the use of QDeclarativePaintedItem with the use of QGraphicsWebView and its tiled backing store. | ||||
* | Flickable small API changes. | Yann Bodson | 2010-05-12 | 1 | -1/+1 |
| | | | | | | | | | | - Split moving into movingHorizontally anf movingVertically - Split flicking into flickingHorizontally and flickingVertically - Rename flickDirection to flickableDirection - onMovementStarted, onMovementEnded, onFlickStarted and onFlickEnded signals removed Task-number: QTBUG-10572 Reviewed-by: Martin Jones | ||||
* | Expand if available space changes. | Warwick Allison | 2010-05-11 | 1 | -0/+6 |
| | | | | Task-number: QT-3175 | ||||
* | Cleanup and simplify the webbrowser demo. | Yann Bodson | 2010-05-11 | 35 | -331/+198 |
| | |||||
* | Cleanup | Yann Bodson | 2010-05-06 | 1 | -3/+3 |
| | |||||
* | Use enum rather than string for easing type. | Yann Bodson | 2010-05-05 | 1 | -1/+1 |
| | |||||
* | Don't use zoomfactor. | Warwick Allison | 2010-04-16 | 1 | -2/+2 |
| | | | | | It gives better resolution for text positioning, btu many web sites don't work well with it and WebKit. | ||||
* | Replace "import Qt 4.6" with "import Qt 4.7" | Michael Brasser | 2010-04-08 | 4 | -4/+4 |
| | |||||
* | Deprecate inline Script {} blocks | Aaron Kennedy | 2010-03-22 | 2 | -34/+28 |
| | | | | | | | | Inline blocks/includes have been replaced with an import syntax: import "foo.js" as Foo this gives better separation between QML and code. Imported script blocks also have a mandatory qualifier, which leads to better optimization potential. | ||||
* | Truncate title at right if too long (cannot currently ElideRight and center). | Warwick Allison | 2010-03-11 | 1 | -3/+1 |
| | |||||
* | Fix zooming (broke with transformOrigin default change). | Warwick Allison | 2010-03-02 | 1 | -0/+1 |
| | | | | Task-number: QTBUG-5845 | ||||
* | Move WebView to an extension plugin. | Warwick Allison | 2010-03-02 | 1 | -0/+1 |
| | | | | | | | | Using WebView now requires: import org.webkit 1.0 Task-number: QT-2995 | ||||
* | follow syntax change | Warwick Allison | 2010-03-02 | 1 | -1/+1 |
| | |||||
* | Test, demo, and work-around bug QTBUG-8535 | Warwick Allison | 2010-02-26 | 2 | -18/+28 |
| | |||||
* | Renamed Flickable viewportXXX properties contentXXX | Martin Jones | 2010-02-26 | 2 | -15/+15 |
| | | | | A viewport is the thing you look through, not what you look at. | ||||
* | Updates all qml examples/demos to use the easing curve value type syntax | Leonardo Sobral Cunha | 2010-02-23 | 2 | -4/+4 |
| | |||||
* | Rename MouseRegion -> MouseArea | Martin Jones | 2010-02-22 | 1 | -3/+3 |
| | |||||
* | Get rid of the matchProperties/properties distinction, as it | Michael Brasser | 2010-02-18 | 2 | -3/+3 |
| | | | | | | | | | | | has proven to be confusing in practice. property/target and properties/targets will be functionally equivilant (the only distinction being singular/plural). In a transition these properties can be used for both 'matching' and explicit animation based on whether a 'to' value is supplied. The documentation, tests, examples and demos have been updated as well. | ||||
* | Fix initial scaling. QWebPage::setPreferredSize doesn't really work. | Warwick Allison | 2009-12-02 | 1 | -3/+3 |
| | |||||
* | Restructure for easier re-use. | Warwick Allison | 2009-12-02 | 6 | -1/+430 |
| | |||||
* | lowercase ids | Yann Bodson | 2009-10-06 | 1 | -1/+1 |
| | |||||
* | Change .sci syntax to match BorderImage. | Yann Bodson | 2009-10-05 | 5 | -25/+25 |
| | |||||
* | BorderImage fix. | Tapani Mikola | 2009-08-13 | 1 | -2/+2 |
| | |||||
* | Move all QML types to Qt/4.6 namespace. | Warwick Allison | 2009-07-23 | 1 | -0/+2 |
| | | | | | Adjust examples and demos accordingly. As per QT-558 | ||||
* | Fix webbrowser demo | Yann Bodson | 2009-05-11 | 2 | -1/+7 |
| | |||||
* | Convert all examples and demos from XML format | Aaron Kennedy | 2009-04-30 | 1 | -10/+30 |
| | |||||
* | Rename the 'src' attribute 'source'. Don't need to be HTML-like anymore. | Yann Bodson | 2009-04-29 | 1 | -4/+4 |
| | |||||
* | Merge branch 'kinetic-declarativeui' of ↵ | Warwick Allison | 2009-04-24 | 9 | -0/+0 |
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui Conflicts: demos/declarative/webbrowser/WebBrowser.qml demos/declarative/webbrowser/content/pics/addressbar-filled.png demos/declarative/webbrowser/content/pics/addressbar.png demos/declarative/webbrowser/content/pics/back-disabled.png demos/declarative/webbrowser/content/pics/back.png demos/declarative/webbrowser/content/pics/footer.png demos/declarative/webbrowser/content/pics/forward-disabled.png demos/declarative/webbrowser/content/pics/forward.png demos/declarative/webbrowser/content/pics/header.png demos/declarative/webbrowser/content/pics/reload.png | ||||
| * | Cosmetic changes for the web browser demo. | Yann Bodson | 2009-04-23 | 9 | -0/+0 |
| | | |||||
* | | Nicer icons (KDE CrystalSVG) | Warwick Allison | 2009-04-23 | 14 | -6/+0 |
|/ | |||||
* | Initial import of kinetic-dui branch from the old kinetic | Michael Brasser | 2009-04-22 | 19 | -0/+38 |