]> git.mxchange.org Git - flightgear.git/blob - src/Instrumentation/KLN89/kln89_page_alt.hxx
Make traffic take-off roll look a little better.
[flightgear.git] / src / Instrumentation / KLN89 / kln89_page_alt.hxx
1 // kln89_page_*.[ch]xx - this file is one of the "pages" that
2 //                       are used in the KLN89 GPS unit simulation. 
3 //
4 // Written by David Luff, started 2010.
5 //
6 // Copyright (C) 2010 - David C Luff - daveluff AT ntlworld.com
7 //
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.
12 //
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.
17 //
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.
21
22 #ifndef _KLN89_PAGE_ALT
23 #define _KLN89_PAGE_ALT
24
25 #include "kln89.hxx"
26
27 class KLN89AltPage : public KLN89Page {
28
29 public:
30         KLN89AltPage(KLN89* parent);
31         ~KLN89AltPage();
32         
33         void Update(double dt);
34         
35         //void AltPressed();
36         void CrsrPressed();
37         void EntPressed();
38         //void ClrPressed();
39         //void Knob1Left1();
40         //void Knob1Right1();
41         void Knob2Left1();
42         void Knob2Right1();
43         
44         void LooseFocus();
45 };
46
47 #endif  // _KLN89_PAGE_ALT