![]() |
2011-05-09
, 02:02
|
Posts: 466 |
Thanked: 661 times |
Joined on Jan 2009
|
#2
|
The Following User Says Thank You to jackburton For This Useful Post: | ||
![]() |
2011-05-09
, 02:04
|
Posts: 466 |
Thanked: 661 times |
Joined on Jan 2009
|
#3
|
![]() |
2011-05-09
, 07:46
|
Posts: 435 |
Thanked: 769 times |
Joined on Apr 2010
|
#4
|
Perhaps this thread has what you need and you should post there:
http://talk.maemo.org/showthread.php...ght=qtmobility
It shows how to use Qt Mobility in your Qt config for building apps.
![]() |
2011-05-09
, 17:46
|
Posts: 466 |
Thanked: 661 times |
Joined on Jan 2009
|
#5
|
![]() |
2011-05-17
, 16:16
|
Posts: 435 |
Thanked: 769 times |
Joined on Apr 2010
|
#6
|
![]() |
2011-05-17
, 18:53
|
|
Posts: 2,427 |
Thanked: 2,986 times |
Joined on Dec 2007
|
#7
|
Organizer module works well. Functionality is similar to contacts one, so there is a manager to query to get events from, filter classes and so on. I have not found any problem except one: I can't get birthdays calendar events. I can see as a collection, but it has 0 items. I guess it's because birthdays is an automatic calendar so physically it may not be stored in calendar sql db.
sqlite3 /home/user/.calendar/calendardb 'select * from Components;'
CREATE TABLE Components(Id INTEGER PRIMARY KEY AUTOINCREMENT,CalendarId INTEGER, ComponentType INTEGER, Flags INTEGER, DateStart INTEGER, DateEnd INTEGER, Summary TEXT, Location TEXT, Description TEXT, Status INTEGER,Uid TEXT , Until INTEGER,AllDay INTEGER,CreatedTime INTEGER,ModifiedTime INTEGER,Tzid TEXT, TzOffset INTEGER); CREATE INDEX IDX_COMPONENT on Components(Id,ComponentType,DateStart,DateEnd,status,Until,ModifiedTime); CREATE TRIGGER delete_component after delete on components begin delete from ComponentDetails where componentdetails.Id=OLD.Id; delete from Recursive where recursive.Id=OLD.Id; delete from Alarm where alarm.Id=OLD.Id; delete from Parameters where parameters.ComponentId=OLD.Id; delete from XProperties where xproperties.ComponentId=OLD.Id; delete from Instances where Instances.Id=OLD.Id; end;
There is organizer library in 1.1 and 1.2 mobility versions in extras-devel, so I may compile it on autobuilder, but I'd like to compile it directly on my own. Any hint?
Last edited by gionni88; 2011-05-09 at 07:47.