maemo.org - Talk

maemo.org - Talk (https://talk.maemo.org/index.php)
-   Applications (https://talk.maemo.org/forumdisplay.php?f=41)
-   -   [Announce] MaeCalTasks (https://talk.maemo.org/showthread.php?t=86736)

jackburton 2012-11-11 14:33

Re: [Announce] MaeCalTasks
 
Almost got rotation working the way I want. Having trouble with the stacked windows, though.

It seems that the window attributes on the top window of this stack actually drives the rotation elements that are honored.
Code:

nav->setAttribute(Qt::WA_Maemo5StackedWindow);
I'm having trouble figuring out how to keep the pointer to the top window so I can just access it from anywhere in the window stack from any descendant window. I could use a global variable, but is that acceptable practice in C++?

jackburton 2012-11-12 01:06

Re: [Announce] MaeCalTasks
 
1 Attachment(s)
I've added rotation and a few other changes. This is the first of the 1.1.0 series. Please report bugs. The code is not clean yet.

I uploaded to extras-dev, but the autobuilder seems to be down (upload was succesful, though).

jackburton 2012-11-12 01:37

Re: [Announce] MaeCalTasks
 
Screenshots

http://farm9.staticflickr.com/8485/8...dea53fdea8.jpg
maecaltasks-rotation1 by brander snaxe, on Flickr

http://farm9.staticflickr.com/8066/8...485c58939c.jpg
maecaltasks-rotation2 by brander snaxe, on Flickr

http://farm9.staticflickr.com/8482/8...327b4f8b3a.jpg
maecaltasks-rotation3 by brander snaxe, on Flickr

http://farm9.staticflickr.com/8342/8...69c9bda590.jpg
maecaltasks-rotation5 by brander snaxe, on Flickr

caveman 2012-11-12 12:14

Re: [Announce] MaeCalTasks
 
I really enjoyed this application. Good job!

Any plans of building it for harmattan as well?

jackburton 2012-11-12 12:20

Re: [Announce] MaeCalTasks
 
Quote:

Originally Posted by caveman (Post 1293326)
I really enjoyed this application. Good job!

Any plans of building it for harmattan as well?

Yeah. that was a goal. I got the N950 in the competition. I personally rely on maecaltasks in my workflow now so moving to Harmattan i would need to port it.

The thing is, all the harmattan documentation and SDK are offline right now. I can't start to port until that is made available again somehow.

Next item for maecaltasks is alarm enablement...

jackburton 2012-11-15 03:13

Re: [Announce] MaeCalTasks
 
1 Attachment(s)
Here's a new build with alarms and some new icons.

http://farm9.staticflickr.com/8350/8...38f40eaced.jpg
maecaltasks_20121114 by brander snaxe, on Flickr

jackburton 2012-11-16 03:23

Re: [Announce] MaeCalTasks
 
1 Attachment(s)
New experimental build. I added the back-end for custom views. If you can write a sqlite WHERE clause then you can create your own view into maecaltasks (assuming the column is available).

I include a couple of sample views. To add more, insert into the Views tables in the ~/.calendar/calendardb file.

For date ranges, I used this reference:
http://www.sqlite.org/lang_datefunc.html

I hope this feature makes the tool customizable for any users who may want new "outlooks" on their agendas.

Here's some screenshots:
http://farm9.staticflickr.com/8067/8...5cdcd11887.jpg
maecaltasks_views by brander snaxe, on Flickr

http://farm9.staticflickr.com/8210/8...e8f0a48609.jpg
maecaltasks_views_portrait by brander snaxe, on Flickr

http://farm9.staticflickr.com/8486/8...93feb31658.jpg
maecaltasks_views__due_this_weekend by brander snaxe, on Flickr

http://farm9.staticflickr.com/8068/8...5e1dfbbe8b.jpg
maecaltasks_views__Thanksgiving by brander snaxe, on Flickr

jackburton 2012-11-16 03:29

Re: [Announce] MaeCalTasks
 
Let me know if you need help writing the SQL code for adding a new view.

jackburton 2012-11-16 13:56

Re: [Announce] MaeCalTasks
 
Here are some views I just created from the phone. Use this as an example.

Code:

INSERT INTO View (Summary,WhereClause,OrderBy)
VALUES
('Tasks Due Next 5 Days',
 'Type = ''2'' AND DateStart BETWEEN strftime(''%s'',''now'',''start of day'',''utc'') AND strftime(''%s'',''now'',''start of day'',''+4 day'',''utc'')',
 'status,DateStart'
);

INSERT INTO View (Summary,WhereClause,OrderBy)
VALUES
('Tasks Due Next 3 Days',
 'Type = ''2'' AND DateStart BETWEEN strftime(''%s'',''now'',''start of day'',''utc'') AND strftime(''%s'',''now'',''start of day'',''+2 day'',''utc'')',
 'status,DateStart'
);

http://farm9.staticflickr.com/8069/8...ffffb0d29d.jpg
maecaltasks_more_views by brander snaxe, on Flickr

vi_ 2012-11-16 14:54

Re: [Announce] MaeCalTasks
 
gzomfg, this is ace.


All times are GMT. The time now is 08:43.

vBulletin® Version 3.8.8