20
20
* You should have received a copy of the GNU Lesser General Public License
21
21
* along with this program. If not, see <http://www.gnu.org/licenses/>.
23
#include "digital_clock.h"
23
#include "digital_clock_mode.h"
26
25
#include "text_renderer.h"
32
static int _flavour = 0;
35
static void reset_messages()
40
Text::reset_message( 0, Text::MODE_TOP | Text::MODE_ALL,
44
Text::reset_message( 0, Text::MODE_HSCROLL | Text::MODE_TOP |
45
Text::MODE_THREEQUARTERS );
51
void digital_clock_press()
61
void digital_clock_draw( int segment )
63
Text::draw( 0, segment );
64
Text::draw( 1, segment );
68
void digital_clock_draw_reset()
70
PString str0( Text::_messages[ 0 ], MESSAGE_LEN * 4 );
76
str0.format( "%d%c%02d %s", Time::get_hours() % 12,
77
::millis() % 1000 < 500? ':' : '.',
79
Time::get_hours() >= 12? "pm" : "am" );
82
str0.format( "%d%s %s, %d", Time::get_day(),
83
Time::get_day_suffix(),
84
Time::get_month_name(), Time::get_year() );
88
Text::set_message( 0, str0 );
92
void digital_clock_activate()
28
DigitalClockMode::DigitalClockMode()
35
void DigitalClockMode::draw( int segment )
37
TextRenderer text = TextRenderer::get_instance();
38
text.draw_scroll( segment );
42
void DigitalClockMode::press()
50
void DigitalClockMode::activate()
52
MinorMode::activate();
60
void DigitalClockMode::set_message()
62
TextRenderer text = TextRenderer::get_instance();
63
PString &str = text.get_pstring();
66
str.print( get_flavour() );