Adding event to native calender application on Meego Harmattan using QOrganizer API
vineet.jain
(Talk | contribs) (Vineet.jain - - →Summary) |
hamishwillee
(Talk | contribs) m (Text replace - "<code cpp>" to "<code cpp-qt>") |
||
| (12 intermediate revisions by 6 users not shown) | |||
| Line 1: | Line 1: | ||
| − | [[Category: | + | [[Category:Qt Mobility]][[Category:Code Snippet]][[Category:MeeGo Harmattan]][[Category:PIM]] |
| − | {{Abstract|The code snippet shows how we can add an event to the native calender application on | + | {{Abstract|The code snippet shows how we can add an event to the native calender application on MeeGo Harmattan device using the QOrganizer API.}} |
| − | + | ||
{{ArticleMetaData | {{ArticleMetaData | ||
| − | |sourcecode= | + | |sourcecode= [[Media:AddToCalender.zip]] |
|installfile= <!-- Link to installation file (e.g. [[Media:The Installation File.sis]]) --> | |installfile= <!-- Link to installation file (e.g. [[Media:The Installation File.sis]]) --> | ||
|devices= N9,N950 | |devices= N9,N950 | ||
| Line 20: | Line 19: | ||
|update-timestamp=<!-- After significant update: YYYYMMDD --> | |update-timestamp=<!-- After significant update: YYYYMMDD --> | ||
|creationdate=20111207 | |creationdate=20111207 | ||
| − | |author= | + | |author= [[User:vineet.jain]] |
}} | }} | ||
| − | + | == Headers == | |
| − | == | + | <code cpp-qt> |
| − | + | ||
| − | + | ||
| − | <code cpp> | + | |
#include <qorganizerevent.h> | #include <qorganizerevent.h> | ||
#include <qorganizermanager.h> | #include <qorganizermanager.h> | ||
| Line 36: | Line 32: | ||
In the .pro file, add the following lines: | In the .pro file, add the following lines: | ||
| − | <code cpp> | + | <code cpp-qt> |
CONFIG += mobility | CONFIG += mobility | ||
MOBILITY += organizer | MOBILITY += organizer | ||
</code> | </code> | ||
| − | + | == Source == | |
| − | <code cpp> | + | <code cpp-qt> |
bool Cyourclass::addEventToCalender(const QString& alabeltext,const QString& aStartDateTime,const QString aEndDateTime) | bool Cyourclass::addEventToCalender(const QString& alabeltext,const QString& aStartDateTime,const QString aEndDateTime) | ||
{ | { | ||
Latest revision as of 04:23, 11 October 2012
The code snippet shows how we can add an event to the native calender application on MeeGo Harmattan device using the QOrganizer API.
Article Metadata
Code Example
Source file: Media:AddToCalender.zip
Tested with
SDK: Nokia Qt SDK 1.1.3
Devices(s): N9,N950
Article
Keywords: QOrganizerManager, QOrganizerEvent,QOrganizerItem
Created: vineet.jain
(07 Dec 2011)
Last edited: hamishwillee
(11 Oct 2012)
Headers
#include <qorganizerevent.h>
#include <qorganizermanager.h>
#include <qorganizeritem>
In the .pro file, add the following lines:
CONFIG += mobility
MOBILITY += organizer
Source
bool Cyourclass::addEventToCalender(const QString& alabeltext,const QString& aStartDateTime,const QString aEndDateTime)
{
QOrganizerManager m_manager;
QOrganizerEvent m_organizerEvent;
QDateTime startdatetime = QDateTime::fromString(aStartDateTime, "yyyy-MM-ddTHH:mm");
QDateTime enddatetime = QDateTime::fromString(aEndDateTime, "yyyy-MM-ddTHH:mm");
if (startdatetime > enddatetime ) {
return false;
}
m_organizerEvent.setDisplayLabel(alabeltext);
m_organizerEvent.setStartDateTime(startdatetime );
m_organizerEvent.setEndDateTime(enddatetime );
// similarly more fields can be added to the event
m_manager.saveItem(&m_organizerEvent);
return true;
}

