summaryrefslogtreecommitdiffstats
path: root/demos/declarative/contacts
Commit message (Collapse)AuthorAgeFilesLines
* Use new property nameAaron Kennedy2009-09-231-2/+2
|
* Remove KeyProxy in favour of the Keys.forwardTo attached property.Martin Jones2009-09-071-4/+2
|
* Flickable locked property changed to interactive.Martin Jones2009-09-021-1/+1
| | | | Note that the meaning of the property has been reversed.
* Make a number of Flickable API changes following review.Martin Jones2009-08-281-2/+2
|
* Rename positioners.Warwick Allison2009-08-241-1/+1
| | | | QFxBasePositioner still exists though.
* fromState -> from, toState -> to for Transition.Michael Brasser2009-08-245-14/+14
|
* Rename State change elements.Martin Jones2009-08-215-26/+26
| | | | | | SetProperties -> PropertyChanges RunScript -> StateChangeScript SetAnchors -> AnchorChanges
* Renaming: Bind -> BindingYann Bodson2009-08-211-4/+4
|
* Renaming Rect -> RectangleYann Bodson2009-08-195-6/+6
|
* Update demosAlan Alpert2009-08-191-2/+3
| | | | | | Remove uses of margin for positioners. Update MediaLineEdit to use a TextInput, in the process added a selectAll() slot to TextInput (like TextEdit has).
* Text-related API updates after reviewMichael Brasser2009-08-192-2/+2
| | | | | Rename LineEdit to TextInput; hAlign to horizontalAlignment; vAlign to verticalAlignment. Other assorted fixes.
* Missed converting demos when renaming layout->positionerAlan Alpert2009-08-131-1/+1
|
* Renaming: FocusRealm -> FocusScopeYann Bodson2009-08-031-2/+2
|
* Rename Rect.pen to Rect.borderMichael Brasser2009-07-311-1/+1
|
* Introduce Loader item.Michael Brasser2009-07-301-8/+8
| | | | | The Loader item takes the qml/qmlItem functionality from Item and moves it to a specialized subclass.
* Move all QML types to Qt/4.6 namespace.Warwick Allison2009-07-237-0/+14
| | | | | Adjust examples and demos accordingly. As per QT-558
* Add parameterized synthesized signalsAaron Kennedy2009-07-023-3/+3
| | | | Also changed syntax for emitting a signal to be consistent with normal QtScript.
* Merge branch 'kinetic-declarativeui' of ↵Aaron Kennedy2009-06-265-10/+13
|\ | | | | | | | | | | | | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui Conflicts: examples/declarative/states/states.qml examples/declarative/states/transitions.qml examples/declarative/tutorials/helloworld/t3/tutorial3.qml src/declarative/util/qmlanimation.cpp
| * Color property is required to be explicity set (at least for now).Michael Brasser2009-06-262-0/+3
| |
| * Rename NumericAnimation -> NumberAnimationMichael Brasser2009-06-265-10/+10
| |
* | Update SetProperties to handle changing bindingsAaron Kennedy2009-06-265-78/+52
|/ | | | Also removed all uses of SetProperty
* Keyword name changeIan Walters2009-06-184-4/+4
| | | | | Behaviour was renamed Behavior. Was Australian spelling, now US spelling.
* fade text accross white to blackIan Walters2009-05-261-1/+20
| | | | | | | Prior to this change, when the highlight moved the text would blink from white to black. This was a little disconcerting. Add in a smooth blend for the color change.
* Current item highlightIan Walters2009-05-081-3/+19
| | | | | | Unfortunatley the color doesn't animate. A 'Behavior' doesn't work (still snaps) and using states and transitions causes a crash within the ListView code.
* Add the ability to remove whole contacts.Ian Walters2009-05-084-29/+70
|
* Focus handling for 'new' dialog.Ian Walters2009-05-073-8/+20
| | | | | Also field value propogation (really need aliases, they don't exist yet in QML.
* Use KeyProxyIan Walters2009-05-072-3/+7
| | | | | | Up and down keys should go to the list, text to the search bar. KeyProxy handles this by listing a set of items to attempt handling keys.
* Move 'final' contacts application to demos.Ian Walters2009-05-0715-0/+776
Will finish the applicaiton in this directory to fully functional. Missing features - removing contacts, clearing search, key only access Known bugs - Scroll crashes if data changes while scrolling, VerticalLayout doesn't align horizontally correctly when in ListView delegate. ListView only shows one element on startup, even though query consistently indicates 1000 items as count.