1 // kln89_page_*.[ch]xx - this file is one of the "pages" that
2 // are used in the KLN89 GPS unit simulation.
4 // Written by David Luff, started 2005.
6 // Copyright (C) 2005 - David C Luff: daveluff --AT-- ntlworld --D0T-- com
8 // This program is free software; you can redistribute it and/or
9 // modify it under the terms of the GNU General Public License as
10 // published by the Free Software Foundation; either version 2 of the
11 // License, or (at your option) any later version.
13 // This program is distributed in the hope that it will be useful, but
14 // WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 // General Public License for more details.
18 // You should have received a copy of the GNU General Public License
19 // along with this program; if not, write to the Free Software
20 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
24 #ifndef _KLN89_PAGE_CAL
25 #define _KLN89_PAGE_CAL
29 class KLN89CalPage : public KLN89Page {
32 KLN89CalPage(KLN89* parent);
35 void Update(double dt);
45 unsigned int _nFp0; // flightplan no. displayed on page 1 (_subPage == 0).
46 double _ground_speed_ms; // Assumed ground speed for ete calc on page 1 (user can alter this).
51 // _alarmAnnotate shows that the alarm has been set at least once
52 // so the time should now be always annotated (there seems to be
53 // no way to remove it once set once!).
55 // _alarmSet indicates that the alarm has been changed by the user
56 // and should be set in the main unit when the page looses focus
57 // (I don't think the alarm goes off unless the user leaves the
58 // CAL3 page after setting it).
61 // Calculate the alarm time based on the alarm-in value
63 // Calculate alarm-in based on the alarm time.
66 // Calculate the difference between 2 hr:min times.
67 // It is assumed that the second time is always later than the first one
68 // ie. that the day has wrapped if the second one is less,
69 // but is limited to intervals of < 24hr.
70 void TimeDiff(int hr1, int min1, int hr2, int min2, int &hrDiff, int &minDiff);
74 inline ostream& operator<< (ostream& out, const ClockTime& t) {
75 return(out << t._hr << ':' << t._min);
78 #endif // _KLN89_PAGE_CAL