Notices


Reply
Thread Tools
Posts: 100 | Thanked: 543 times | Joined on Jun 2010 @ Kiev, Ukraine
#1
Hi all,

there is a homescreen widget and standalone application for bringing Flip Clock to Maemo desktop.

Features:
* Homescreen widget for Maemo 5
* Scalable - you can set any size you want
* Fast and smooth animation
* Different animation types
* Skin themes are stored in human-readable (and editable) form - easy to edit/add new themes
* Configurable on-click action
* Fullscreen mode for standalone flipclock
* Standalone clock can keep backlight on
* Widget and standalone program pauses when phone is locked or homescreen is changing - saves power and cpu ticks.
* Localization support
* Written in C++/Qt4

Screenshots:


Install:

or
Update extras-devel repository and look for 'qflipclock' with your favourite package manager
or
apt-get update
apt-get install qflipclock

Maemo Package page: http://maemo.org/packages/view/qflipclock/

TODO:
* add portrait mode support
* add date text capability
* add raster images for background support
* add more gradient types (radial, etc)

FOLKS, feel free to create and post here:
a) themes for the flipclock
b) translations on your own language
I will include them into the next updates.

For those who wants to change/add themes - look in /usr/share/qflipclock/themes dir and take any theme as an example. The syntax should be self-explanatory.

THEME Customizing/Creating mini HOW-TO http://talk.maemo.org/showpost.php?p...84&postcount=7

Suggestions and comments are welcome.

Last edited by divan; 2011-06-05 at 21:37.
 

The Following 65 Users Say Thank You to divan For This Useful Post:
eefo's Avatar
Posts: 1,444 | Thanked: 461 times | Joined on Dec 2010 @ pakistan
#2
ammmmmmm , have you made these themes your self ?
or is there any source to get these themes ?
or
if you can explain abit about it , i can kick something in it myself too :P
__________________
Every hero becomes a bore at last.
www.itechiapk.com
 

The Following 4 Users Say Thank You to eefo For This Useful Post:
F2thaK's Avatar
Posts: 4,365 | Thanked: 2,467 times | Joined on Jan 2010 @ Australia Mate
#3
 
elie-7's Avatar
Posts: 968 | Thanked: 663 times | Joined on Jun 2010 @ Australia (Melbourne/vic) / Lebanon (Zgharta/north)
#4
this is sooo ****ing awesome, you are a legend mate, anyway just on request can we have a 12 hours clock mode ?
and for themes, well in my opinion the widget is a bit taller than it should be, it should be more rectangular,and head over the queen beecon flip clock widget thread tons of themes, and check the last post, Qosimo has state of the art icons ......
__________________
rolling down the street, smoking ENDO, sipping on gin and juice
laid back, with my mind on my money and my money on my mind .
 

The Following User Says Thank You to elie-7 For This Useful Post:
Posts: 100 | Thanked: 543 times | Joined on Jun 2010 @ Kiev, Ukraine
#5
> or is there any source to get these themes ?
eefo, there is no source - it's not an images or graphics. It's a mix of colors and gradients magic
All themes are placed in /usr/share/qflipclock/themes/

> and for themes, well in my opinion the widget is a bit taller than it should be
It could be edited in theme with "Aspect" key (now it's 1.2 by default).

> head over the queen beecon flip clock widget thread tons of themes, and check the last post, Qosimo has state of the art icons ......
Agaim, this program doesn't use images - it renders the gradients and colors with Qt routines. No static images is used, thus it's so scalable, fast and light.
Perhaps, later I will add support for static images in themes, but there will be some difficulties and limitations with it.
 

The Following 3 Users Say Thank You to divan For This Useful Post:
Posts: 1,163 | Thanked: 1,873 times | Joined on Feb 2011 @ The Netherlands
#6
Looking good so far

Suggestion: Would it be possible to make 4 panels instead of 2 containing 2 numbers, so every number has it's own panel
 
Posts: 100 | Thanked: 543 times | Joined on Jun 2010 @ Kiev, Ukraine
#7
So, there is a quick how to on theme editing.
All themes are located in /usr/share/qflipwidget/themes/ and can be edited/add/etc. Note, you'll need root access for that.
If you edited the theme or added new one, simply go to the widget settings, and it should pick up your changes.

So, the syntax is simple .ini file syntax.
=====================
[Theme]
Name="White Flip" <- Theme name used for selecting. Avoid duplicates.
Type=Native <- Currently only Native value is supported
Background=Color <- Color/Gradient. If Color, then the [Background_Color] group must exist. If Gradient, then [Background_Gradient] group must exist.
Sheet=Gradient <- the same (must be [Sheet_Gradient] group
Text=Gradient <- <- the same (must be [Text_Gradient] group
DrawEdge=true <- whether to draw 'sheet edge' on the top and bottom
EdgeColor=18, 18, 18, 255 <- color for sheet edge in (R, G, B, A) format
DrawMiddleLine=true <- whether to draw middle line
MiddleLineColor=159, 159, 159, 255 <- middle line color
AddZeroSign=true <- whether to add '0' for values<10
CornersRadius=15 <- corners radius use 0 to make square corners
Aspect=1.2 <- width/height aspect ratio
XPadding=0.1 <- padding (% of width) from left and right
Gap=0.15 <- padding between hour and minute (% of width), use 0 to remove gap between them

[Font] <- font settings
Family="Helvetica" <- Font family name
Scale=1.0 <- scale factor
IsBold=True <- isBold
IsItalic=false <- isItalic

[Sheet_Gradient] <- Gradient description for Sheet
Type=Linear <- Currently only Linear is supported so far
Vector=0, 0, 0, 1 <- Gradient direction (see QLinearGradient for more info). 0, 0, 0, 1 representes "from up to down" direction
ColorPoint1=0.00, 245, 245, 245, 255 <- ColorPoint: first real number is position in gradient(0.0 ... 1.0), other 4 numbers is Color value (R, G, B, A). You can as many color points as you want. Just name it properly.
ColorPoint2=0.49, 192, 192, 192, 255
ColorPoint3=0.51, 245, 245, 245, 255
ColorPoint4=1.00, 192, 192, 192, 255

[Text_Gradient] <- the same for text
Type=Linear
Vector=0, 0, 0, 1
ColorPoint1=0.00, 128, 128, 128, 255
ColorPoint2=0.49, 64, 64, 64, 255
ColorPoint3=0.51, 128, 128, 128, 255
ColorPoint4=1.00, 16, 16, 16, 255

[Background_Color]
Color=0, 0, 0, 128 <- color in (R, G, B, A) format
==============

Of course, it takes some time to prepare gradients values, but the result is selfexplanatory on screenshots.
 

The Following 4 Users Say Thank You to divan For This Useful Post:
Posts: 100 | Thanked: 543 times | Joined on Jun 2010 @ Kiev, Ukraine
#8
Originally Posted by mr_pingu View Post
Looking good so far

Suggestion: Would it be possible to make 4 panels instead of 2 containing 2 numbers, so every number has it's own panel
I thought about that, but need to change internal logic for that. Perhaps it will be added with some update.

nyway just on request can we have a 12 hours clock
Ok, I noted it. BTW, does people really use 12 hours mode in digital watches?
 
CasTTeLLo's Avatar
Posts: 335 | Thanked: 51 times | Joined on May 2010
#9
Originally Posted by divan View Post
I thought about that, but need to change internal logic for that. Perhaps it will be added with some update.


Ok, I noted it. BTW, does people really use 12 hours mode in digital watches?
yeap...i use it....it's a must...
__________________
Best Regard,

CasTTeLLo
 

The Following User Says Thank You to CasTTeLLo For This Useful Post:
stickymick's Avatar
Posts: 1,079 | Thanked: 1,019 times | Joined on Mar 2010
#10
All the digital watches I've had have the option to show 12hr/24hr. Even the N900s stock clock has the option.

I like this little clock though, saves messing about in Queenbeecon widget. (totally no disrespect to those that prefer to use Qbcon, of course).

A few peeps over on the N900 FB page are wondering if a weather widget could be added to make it look like the HTC clock.
__________________
Mick has just punched the cr@p out of the "Unlike" button on the Official Nokia Facebook Page.
 
Reply


 
Forum Jump


All times are GMT. The time now is 19:10.