![]() |
2011-01-01
, 22:10
|
Posts: 2,225 |
Thanked: 3,822 times |
Joined on Jun 2010
@ Florida
|
#152
|
![]() |
2011-01-01
, 22:14
|
Posts: 2,225 |
Thanked: 3,822 times |
Joined on Jun 2010
@ Florida
|
#153
|
![]() |
2011-01-01
, 23:30
|
|
Posts: 133 |
Thanked: 140 times |
Joined on Feb 2010
@ Bristol, UK
|
#154
|
![]() |
2011-01-02
, 00:28
|
Posts: 21 |
Thanked: 9 times |
Joined on Apr 2010
|
#155
|
![]() |
2011-01-02
, 02:22
|
Posts: 671 |
Thanked: 1,630 times |
Joined on Aug 2010
|
#156
|
import cairo from datetime import datetime import gtk import math import pango import clock def get_name(): return "ISO_8601 Clock" class ISO_8601_Clock(clock.Clock): def __init__(self, drawing_area): clock.Clock.__init__(self, drawing_area) def draw_clock(self): # Draw date.in ISO-8601 compliant self.context.set_font_size(20) self.context.move_to(2, 16) text = str(self.time.year) + "." + str(self.time.month).zfill(2) + "." + str(self.time.day).zfill(2) self.context.text_path(text) self.context.stroke() # Draw time. self.context.set_font_size(20) self.context.move_to(2, 35) text = str(self.time.hour).zfill(2) + ":" + str(self.time.minute).zfill(2) + ":" + str(self.time.second).zfill(2) self.context.text_path(text) self.context.stroke() def resize(self): self.drawing_area.set_size_request(110, 36)
The Following 3 Users Say Thank You to theonelaw For This Useful Post: | ||
![]() |
2011-01-02
, 06:31
|
Posts: 73 |
Thanked: 47 times |
Joined on Aug 2010
|
#157
|
The Following 2 Users Say Thank You to Duy2anh For This Useful Post: | ||
![]() |
2011-01-02
, 07:30
|
Posts: 671 |
Thanked: 1,630 times |
Joined on Aug 2010
|
#158
|
Hi,
Do I miss something? After a complete reflash of my N900, I installed the newest Advance clock Pluggin package from extras-devel today, it show up in setting/personalize area and hide the default clock on the status bar, but it did not show the new advanced clock on the bar.
I tried to change clocks, change font, change color, almost anything, even turned off the phone and turned on again, but still, it did not show up.
Do I need somthing else beside the package?
pkill -f /usr/bin/hildon-status-menu
The Following 3 Users Say Thank You to theonelaw For This Useful Post: | ||
![]() |
2011-01-02
, 08:06
|
|
Posts: 723 |
Thanked: 519 times |
Joined on Nov 2010
@ Kuching:Malaysia
|
#159
|
@ Hide-the-clock request: what would you actually use this for? If it's not something you're turning on-off often, it can easily be done with a clock style, if you'd like.
![]() |
2011-01-02
, 08:25
|
Posts: 671 |
Thanked: 1,630 times |
Joined on Aug 2010
|
#160
|
the reason why i ask the hide the clock request is so we can use other clock widgets on our phone....
there a few clock widgets that we can use on our N900...these widgets can be customize & resize so it can looks better....
it just an idea so its up to the developer if he want to implant the hide the clock request or not later...
The Following User Says Thank You to theonelaw For This Useful Post: | ||
i don't wear a watch. to know the time sometimes i press the on/off button to access the slide screen which shows the time. it would be helpful if it showed the time and the time of they next appointment; pulling the appointment time from the calendar. if i don't turn on the phone i can just slide the thing back in my pocket.
Last edited by jdr93; 2011-01-01 at 23:42. Reason: was i editing?