Organizer QML PluginOverviewThe identifying string for this component is "QtMobility.organizer". Use this in the QML import statement. The Organizer API enables a client to request calendar, schedule and personal data from local or remote backends. The QML Organizer Plugin delivers these capabilities in an easy to use form. Organizer ItemsThe OrganizerItem element provides a generic interface for accessing events, todos, journals and notes. To actually access specific fields of an item, convenience sub elements of OrganizerItem are offered. These are Event, Todo, Journal and Note. Additionally, EventOccurrence and TodoOccurrence can be used for manipulating occurrences of event or todos. Recurring ItemsA recurring item is an item that occurs more than once; for example, a meeting that occurs every week for the next 10 weeks. A recurring item is created by creating an Event or Todo and setting a RecurrenceRule on it to specify the rules for when it should recur. See Recurrence and RecurrenceRule for detail references. CollectionsEvery item stored in a organizer store belongs to exactly one collection. A collection can have properties such as a name, a "color", a specified icon, a description, and so on. Collections may be added or removed if the backend store supports those operations, or modified. There will always be at least one collection in an organizer, and the organizer manager will always have a default collection into which items are saved if no other collection is specified. Organizer Item DetailsSeveral sub elements of ItemDetail are provided as part of the Qt Mobility Organizer API. They are general in design but are intended to fulfill specific use-cases. Please note that certain backends may choose not to support one or more of these elements as they appear here; they may offer their own which provide similar functionality. Organizer FiltersThe Organizer QML plugin supplies filters to search for organizer items with particular values for various properties in the organizer item details. Times in OrganizerAll time type properties in QML Organizer such as OrganizerItem.itemEndTime etc are returned in local time. But when assign new values to these properties, the time specs remain the same while saving these values into backend organizer engines. Organizer ElementsNote: At the time of the Qt Mobility 1.1 release the QML support for the Organizer API is incomplete and likely to be refined and improved in the next patch release.
See also l, OrganizerItem::isFloatingTime, and .. X
|