summaryrefslogtreecommitdiffstats
path: root/examples/declarative/webview/content/FieldText.qml
Commit message (Collapse)AuthorAgeFilesLines
* Restructure the examples. They are now organized into variousBea Lam2010-05-161-157/+0
| | | | | | subdirectories to make it easier to locate examples for certain features (e.g. animation) and to distinguish between different types of examples (e.g. very basic examples vs complex demo-like examples).
* Replace "import Qt 4.6" with "import Qt 4.7"Michael Brasser2010-04-081-1/+1
|
* Deprecate inline Script {} blocksAaron Kennedy2010-03-221-21/+17
| | | | | | | | 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.
* Move WebView to an extension plugin.Warwick Allison2010-03-021-1/+1
| | | | | | | | Using WebView now requires: import org.webkit 1.0 Task-number: QT-2995
* Rename MouseRegion -> MouseAreaMartin Jones2010-02-221-3/+3
|
* Get rid of the matchProperties/properties distinction, as itMichael Brasser2010-02-181-1/+1
| | | | | | | | | | | 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.
* Rename targets -> matchTargets and properties -> matchProperties.Michael Brasser2009-11-061-1/+1
|
* cleanupYann Bodson2009-10-281-1/+1
|
* Fix example errorsAaron Kennedy2009-10-091-2/+0
|
* Fix WebViewSettingsWarwick Allison2009-08-241-0/+163
More QML <-> JavaScript integration, with example. From Tapani Mikola