2
* settings_major_mode.cc
4
* Copyright (C) 2011 Tim Marston <tim@ed.am> and Dan Marston.
6
* This file is part of propeller-clock (hereafter referred to as "this
7
* program"). See http://ed.am/dev/software/arduino/propeller-clock for more
10
* This program is free software: you can redistribute it and/or modify
11
* it under the terms of the GNU Lesser General Public License as published
12
* by the Free Software Foundation, either version 3 of the License, or
13
* (at your option) any later version.
15
* This program is distributed in the hope that it will be useful,
16
* but WITHOUT ANY WARRANTY; without even the implied warranty of
17
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18
* GNU Lesser General Public License for more details.
20
* You should have received a copy of the GNU Lesser General Public License
21
* along with this program. If not, see <http://www.gnu.org/licenses/>.
24
#include "settings_major_mode.h"
26
#include "text_renderer.h"
31
#define FONT_SET_IDX 0
32
#define TIME_SET_IDX 1
33
#define DATE_SET_IDX 2
36
SettingsMajorMode::SettingsMajorMode( Button &button )
43
void SettingsMajorMode::draw_reset()
45
bool flash = ( ::millis() % 1000 ) > 600;
46
PString str0( Text::_messages[ 0 ], MESSAGE_LEN * 2 );
51
if( _part == 0 && flash )
52
str0.print( ( Time::get_hours() % 12 ) < 10? " " : " " );
54
str0.format( "%d", Time::get_hours() % 12 );
56
if( _part == 1 && flash )
59
str0.format( "%02d", Time::get_minutes() );
61
if( _part == 2 && flash )
64
str0.format( "%02d", Time::get_seconds() );
66
if( _part == 0 && flash )
69
str0.print( Time::get_hours() > 11? "pm" : "am" );
73
if( _part == 0 && flash )
76
str0.format( "%04d", Time::get_year() );
78
if( _part == 1 && flash )
81
str0.format( "%02d", Time::get_month() );
83
if( _part == 2 && flash )
86
str0.format( "%02d", Time::get_day() );
90
str0.print( "font " );
94
str0.format( "%d", TextRenderer::get_font() );
98
Text::set_message_text( 0, str0 );
102
void SettingsMajorMode::activate()
108
_button.set_press_mode( false );
112
void SettingsMajorMode::deactivate()
114
_button.set_press_mode( true );
121
void SettingsMajorMode::press()
127
case 0: Time::inc_hours(); break;
128
case 1: Time::inc_minutes(); break;
129
case 2: Time::reset_seconds(); break;
134
case 0: Time::inc_year(); break;
135
case 1: Time::inc_month(); break;
136
case 2: Time::inc_day(); break;
140
TextRenderer::inc_font();
146
void SettingsMajorMode::long_press()
148
// how many parts does this item have?
151
case DATE_SET_IDX: // fall through
152
case TIME_SET_IDX: max = 3; break;
156
if( ++_part >= max ) {
166
void SettingsMajorMode::reset_messages()
170
Text::set_up_message( 0, Text::MODE_TOP | Text::MODE_ALL );