Fix line endings
This commit is contained in:
parent
99ab44427a
commit
578ee0229d
2 changed files with 298 additions and 298 deletions
|
@ -1,205 +1,205 @@
|
||||||
// kln89_page.cxx - base class for the "pages" that
|
// kln89_page.cxx - base class for the "pages" that
|
||||||
// are used in the KLN89 GPS unit simulation.
|
// are used in the KLN89 GPS unit simulation.
|
||||||
//
|
//
|
||||||
// Written by David Luff, started 2005.
|
// Written by David Luff, started 2005.
|
||||||
//
|
//
|
||||||
// Copyright (C) 2005 - David C Luff - david.luff@nottingham.ac.uk
|
// Copyright (C) 2005 - David C Luff - david.luff@nottingham.ac.uk
|
||||||
//
|
//
|
||||||
// This program is free software; you can redistribute it and/or
|
// This program is free software; you can redistribute it and/or
|
||||||
// modify it under the terms of the GNU General Public License as
|
// modify it under the terms of the GNU General Public License as
|
||||||
// published by the Free Software Foundation; either version 2 of the
|
// published by the Free Software Foundation; either version 2 of the
|
||||||
// License, or (at your option) any later version.
|
// License, or (at your option) any later version.
|
||||||
//
|
//
|
||||||
// This program is distributed in the hope that it will be useful, but
|
// This program is distributed in the hope that it will be useful, but
|
||||||
// WITHOUT ANY WARRANTY; without even the implied warranty of
|
// WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
// General Public License for more details.
|
// General Public License for more details.
|
||||||
//
|
//
|
||||||
// You should have received a copy of the GNU General Public License
|
// You should have received a copy of the GNU General Public License
|
||||||
// along with this program; if not, write to the Free Software
|
// along with this program; if not, write to the Free Software
|
||||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
//
|
//
|
||||||
// $Id$
|
// $Id$
|
||||||
|
|
||||||
#include "kln89_page.hxx"
|
#include "kln89_page.hxx"
|
||||||
#include <Main/fg_props.hxx>
|
#include <Main/fg_props.hxx>
|
||||||
|
|
||||||
KLN89Page::KLN89Page(KLN89* parent)
|
KLN89Page::KLN89Page(KLN89* parent)
|
||||||
: GPSPage(parent) {
|
: GPSPage(parent) {
|
||||||
_kln89 = (KLN89*)parent;
|
_kln89 = (KLN89*)parent;
|
||||||
_entInvert = false;
|
_entInvert = false;
|
||||||
_to_flag = true;
|
_to_flag = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
KLN89Page::~KLN89Page() {
|
KLN89Page::~KLN89Page() {
|
||||||
}
|
}
|
||||||
|
|
||||||
void KLN89Page::Update(double dt) {
|
void KLN89Page::Update(double dt) {
|
||||||
bool crsr = (_kln89->_mode == KLN89_MODE_CRSR ? true : false);
|
bool crsr = (_kln89->_mode == KLN89_MODE_CRSR ? true : false);
|
||||||
bool nav1 = (_name == "NAV" && _subPage == 0);
|
bool nav1 = (_name == "NAV" && _subPage == 0);
|
||||||
bool nav4 = (_name == "NAV" && _subPage == 3);
|
bool nav4 = (_name == "NAV" && _subPage == 3);
|
||||||
// The extra level of check for the ACT page is necessary since
|
// The extra level of check for the ACT page is necessary since
|
||||||
// ACT is implemented by using the other waypoint pages as
|
// ACT is implemented by using the other waypoint pages as
|
||||||
// appropriate.
|
// appropriate.
|
||||||
bool act = (_kln89->_activePage->GetName() == "ACT");
|
bool act = (_kln89->_activePage->GetName() == "ACT");
|
||||||
_kln89->DrawDivider();
|
_kln89->DrawDivider();
|
||||||
if(crsr) {
|
if(crsr) {
|
||||||
if(!nav4) _kln89->DrawText("*CRSR*", 1, 0, 0);
|
if(!nav4) _kln89->DrawText("*CRSR*", 1, 0, 0);
|
||||||
if(_uLinePos == 0) _kln89->Underline(1, 3, 1, 3);
|
if(_uLinePos == 0) _kln89->Underline(1, 3, 1, 3);
|
||||||
} else {
|
} else {
|
||||||
if(!nav4) {
|
if(!nav4) {
|
||||||
if(act) {
|
if(act) {
|
||||||
_kln89->DrawText("ACT", 1, 0, 0);
|
_kln89->DrawText("ACT", 1, 0, 0);
|
||||||
} else {
|
} else {
|
||||||
_kln89->DrawText(_name, 1, 0, 0);
|
_kln89->DrawText(_name, 1, 0, 0);
|
||||||
}
|
}
|
||||||
if(_name == "DIR") {
|
if(_name == "DIR") {
|
||||||
// Don't draw a subpage number
|
// Don't draw a subpage number
|
||||||
} else if(_name == "USR" || _name == "FPL") {
|
} else if(_name == "USR" || _name == "FPL") {
|
||||||
// Zero-based
|
// Zero-based
|
||||||
_kln89->DrawText(GPSitoa(_subPage), 1, 4, 0);
|
_kln89->DrawText(GPSitoa(_subPage), 1, 4, 0);
|
||||||
} else {
|
} else {
|
||||||
// One-based
|
// One-based
|
||||||
_kln89->DrawText(GPSitoa(_subPage+1), 1, 4, 0);
|
_kln89->DrawText(GPSitoa(_subPage+1), 1, 4, 0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if(crsr && _uLinePos == 0 && _kln89->_blink) {
|
if(crsr && _uLinePos == 0 && _kln89->_blink) {
|
||||||
// Don't draw
|
// Don't draw
|
||||||
} else {
|
} else {
|
||||||
if(_kln89->_obsMode) {
|
if(_kln89->_obsMode) {
|
||||||
_kln89->DrawText(GPSitoa(_kln89->_obsHeading), 1, 3, 1);
|
_kln89->DrawText(GPSitoa(_kln89->_obsHeading), 1, 3, 1);
|
||||||
} else {
|
} else {
|
||||||
_kln89->DrawText("Leg", 1, 3, 1);
|
_kln89->DrawText("Leg", 1, 3, 1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
_kln89->DrawText((_kln89->GetDistVelUnitsSI() ? "km" : "nm"), 1, 4, 3);
|
_kln89->DrawText((_kln89->GetDistVelUnitsSI() ? "km" : "nm"), 1, 4, 3);
|
||||||
GPSWaypoint* awp = _parent->GetActiveWaypoint();
|
GPSWaypoint* awp = _parent->GetActiveWaypoint();
|
||||||
if(_kln89->_navFlagged) {
|
if(_kln89->_navFlagged) {
|
||||||
_kln89->DrawText("--.-", 1, 0 ,3);
|
_kln89->DrawText("--.-", 1, 0 ,3);
|
||||||
// Only nav1 still gets speed drawn if nav is flagged - not ACT
|
// Only nav1 still gets speed drawn if nav is flagged - not ACT
|
||||||
if(!nav1) _kln89->DrawText("------", 1, 0, 2);
|
if(!nav1) _kln89->DrawText("------", 1, 0, 2);
|
||||||
} else {
|
} else {
|
||||||
char buf[8];
|
char buf[8];
|
||||||
float f = _parent->GetDistToActiveWaypoint() * (_kln89->GetDistVelUnitsSI() ? 0.001 : SG_METER_TO_NM);
|
float f = _parent->GetDistToActiveWaypoint() * (_kln89->GetDistVelUnitsSI() ? 0.001 : SG_METER_TO_NM);
|
||||||
snprintf(buf, 5, (f >= 100.0 ? "%4.0f" : "%4.1f"), f);
|
snprintf(buf, 5, (f >= 100.0 ? "%4.0f" : "%4.1f"), f);
|
||||||
string s = buf;
|
string s = buf;
|
||||||
_kln89->DrawText(s, 1, 4 - s.size(), 3, true);
|
_kln89->DrawText(s, 1, 4 - s.size(), 3, true);
|
||||||
// Draw active waypoint ID, except for
|
// Draw active waypoint ID, except for
|
||||||
// nav1, act, and any waypoint pages matching
|
// nav1, act, and any waypoint pages matching
|
||||||
// active waypoint that need speed drawn instead.
|
// active waypoint that need speed drawn instead.
|
||||||
if(act || nav1 || (awp && awp->id == _id)) {
|
if(act || nav1 || (awp && awp->id == _id)) {
|
||||||
_kln89->DrawSpeed(_kln89->_groundSpeed_kts, 1, 5, 2);
|
_kln89->DrawSpeed(_kln89->_groundSpeed_kts, 1, 5, 2);
|
||||||
} else {
|
} else {
|
||||||
if(!(_kln89->_waypointAlert && _kln89->_blink)) _kln89->DrawText(awp->id, 1, 0, 2);
|
if(!(_kln89->_waypointAlert && _kln89->_blink)) _kln89->DrawText(awp->id, 1, 0, 2);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
/*
|
/*
|
||||||
if(_noNrst) {
|
if(_noNrst) {
|
||||||
_kln89->DrawText(" No ", 1, 0, 1, false, 99);
|
_kln89->DrawText(" No ", 1, 0, 1, false, 99);
|
||||||
_kln89->DrawText(" Nrst ", 1, 0, 0, false, 99);
|
_kln89->DrawText(" Nrst ", 1, 0, 0, false, 99);
|
||||||
}
|
}
|
||||||
*/
|
*/
|
||||||
if(_scratchpadMsg) {
|
if(_scratchpadMsg) {
|
||||||
_kln89->DrawText(_scratchpadLine1, 1, 0, 1, false, 99);
|
_kln89->DrawText(_scratchpadLine1, 1, 0, 1, false, 99);
|
||||||
_kln89->DrawText(_scratchpadLine2, 1, 0, 0, false, 99);
|
_kln89->DrawText(_scratchpadLine2, 1, 0, 0, false, 99);
|
||||||
_scratchpadTimer += dt;
|
_scratchpadTimer += dt;
|
||||||
if(_scratchpadTimer > 4.0) {
|
if(_scratchpadTimer > 4.0) {
|
||||||
_scratchpadMsg = false;
|
_scratchpadMsg = false;
|
||||||
_scratchpadTimer = 0.0;
|
_scratchpadTimer = 0.0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void KLN89Page::ShowScratchpadMessage(const string& line1, const string& line2) {
|
void KLN89Page::ShowScratchpadMessage(const string& line1, const string& line2) {
|
||||||
_scratchpadLine1 = line1;
|
_scratchpadLine1 = line1;
|
||||||
_scratchpadLine2 = line2;
|
_scratchpadLine2 = line2;
|
||||||
_scratchpadTimer = 0.0;
|
_scratchpadTimer = 0.0;
|
||||||
_scratchpadMsg = true;
|
_scratchpadMsg = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
void KLN89Page::Knob1Left1() {
|
void KLN89Page::Knob1Left1() {
|
||||||
if(_kln89->_mode == KLN89_MODE_CRSR) {
|
if(_kln89->_mode == KLN89_MODE_CRSR) {
|
||||||
if(_uLinePos > 0) _uLinePos--;
|
if(_uLinePos > 0) _uLinePos--;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void KLN89Page::Knob1Right1() {
|
void KLN89Page::Knob1Right1() {
|
||||||
if(_kln89->_mode == KLN89_MODE_CRSR) {
|
if(_kln89->_mode == KLN89_MODE_CRSR) {
|
||||||
if(_uLinePos < _maxULinePos) _uLinePos++;
|
if(_uLinePos < _maxULinePos) _uLinePos++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void KLN89Page::Knob2Left1() {
|
void KLN89Page::Knob2Left1() {
|
||||||
if(_kln89->_mode != KLN89_MODE_CRSR && !fgGetBool("/instrumentation/kln89/scan-pull")) {
|
if(_kln89->_mode != KLN89_MODE_CRSR && !fgGetBool("/instrumentation/kln89/scan-pull")) {
|
||||||
GPSPage::Knob2Left1();
|
GPSPage::Knob2Left1();
|
||||||
} else {
|
} else {
|
||||||
if(_uLinePos == 0 && _kln89->_obsMode) {
|
if(_uLinePos == 0 && _kln89->_obsMode) {
|
||||||
_kln89->_obsHeading--;
|
_kln89->_obsHeading--;
|
||||||
if(_kln89->_obsHeading < 0) {
|
if(_kln89->_obsHeading < 0) {
|
||||||
_kln89->_obsHeading += 360;
|
_kln89->_obsHeading += 360;
|
||||||
}
|
}
|
||||||
_kln89->SetOBSFromWaypoint();
|
_kln89->SetOBSFromWaypoint();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void KLN89Page::Knob2Right1() {
|
void KLN89Page::Knob2Right1() {
|
||||||
if(_kln89->_mode != KLN89_MODE_CRSR && !fgGetBool("/instrumentation/kln89/scan-pull")) {
|
if(_kln89->_mode != KLN89_MODE_CRSR && !fgGetBool("/instrumentation/kln89/scan-pull")) {
|
||||||
GPSPage::Knob2Right1();
|
GPSPage::Knob2Right1();
|
||||||
} else {
|
} else {
|
||||||
if(_uLinePos == 0 && _kln89->_obsMode) {
|
if(_uLinePos == 0 && _kln89->_obsMode) {
|
||||||
_kln89->_obsHeading++;
|
_kln89->_obsHeading++;
|
||||||
if(_kln89->_obsHeading > 359) {
|
if(_kln89->_obsHeading > 359) {
|
||||||
_kln89->_obsHeading -= 360;
|
_kln89->_obsHeading -= 360;
|
||||||
}
|
}
|
||||||
_kln89->SetOBSFromWaypoint();
|
_kln89->SetOBSFromWaypoint();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void KLN89Page::CrsrPressed() {
|
void KLN89Page::CrsrPressed() {
|
||||||
// Stick some sensible defaults in
|
// Stick some sensible defaults in
|
||||||
if(_kln89->_obsMode) {
|
if(_kln89->_obsMode) {
|
||||||
_uLinePos = 0;
|
_uLinePos = 0;
|
||||||
} else {
|
} else {
|
||||||
_uLinePos = 1;
|
_uLinePos = 1;
|
||||||
}
|
}
|
||||||
_maxULinePos = 1;
|
_maxULinePos = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
void KLN89Page::EntPressed() {}
|
void KLN89Page::EntPressed() {}
|
||||||
void KLN89Page::ClrPressed() {}
|
void KLN89Page::ClrPressed() {}
|
||||||
void KLN89Page::DtoPressed() {}
|
void KLN89Page::DtoPressed() {}
|
||||||
void KLN89Page::NrstPressed() {}
|
void KLN89Page::NrstPressed() {}
|
||||||
void KLN89Page::AltPressed() {}
|
void KLN89Page::AltPressed() {}
|
||||||
|
|
||||||
void KLN89Page::OBSPressed() {
|
void KLN89Page::OBSPressed() {
|
||||||
if(_kln89->_obsMode) {
|
if(_kln89->_obsMode) {
|
||||||
// If ORS2 and not slaved to gps
|
// If ORS2 and not slaved to gps
|
||||||
_uLinePos = 0;
|
_uLinePos = 0;
|
||||||
} else {
|
} else {
|
||||||
// Don't leave the cursor on in the leg position.
|
// Don't leave the cursor on in the leg position.
|
||||||
if(_uLinePos == 0) {
|
if(_uLinePos == 0) {
|
||||||
_kln89->_mode = KLN89_MODE_DISP;
|
_kln89->_mode = KLN89_MODE_DISP;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void KLN89Page::MsgPressed() {}
|
void KLN89Page::MsgPressed() {}
|
||||||
|
|
||||||
void KLN89Page::CleanUp() {
|
void KLN89Page::CleanUp() {
|
||||||
_kln89->_cleanUpPage = -1;
|
_kln89->_cleanUpPage = -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
void KLN89Page::LooseFocus() {
|
void KLN89Page::LooseFocus() {
|
||||||
_entInvert = false;
|
_entInvert = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
void KLN89Page::SetId(const string& s) {
|
void KLN89Page::SetId(const string& s) {
|
||||||
_id = s;
|
_id = s;
|
||||||
}
|
}
|
||||||
|
|
||||||
const string& KLN89Page::GetId() {
|
const string& KLN89Page::GetId() {
|
||||||
return(_id);
|
return(_id);
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,93 +1,93 @@
|
||||||
// kln89_page.hxx - base class for the "pages" that
|
// kln89_page.hxx - base class for the "pages" that
|
||||||
// are used in the KLN89 GPS unit simulation.
|
// are used in the KLN89 GPS unit simulation.
|
||||||
//
|
//
|
||||||
// Written by David Luff, started 2005.
|
// Written by David Luff, started 2005.
|
||||||
//
|
//
|
||||||
// Copyright (C) 2005 - David C Luff - david.luff@nottingham.ac.uk
|
// Copyright (C) 2005 - David C Luff - david.luff@nottingham.ac.uk
|
||||||
//
|
//
|
||||||
// This program is free software; you can redistribute it and/or
|
// This program is free software; you can redistribute it and/or
|
||||||
// modify it under the terms of the GNU General Public License as
|
// modify it under the terms of the GNU General Public License as
|
||||||
// published by the Free Software Foundation; either version 2 of the
|
// published by the Free Software Foundation; either version 2 of the
|
||||||
// License, or (at your option) any later version.
|
// License, or (at your option) any later version.
|
||||||
//
|
//
|
||||||
// This program is distributed in the hope that it will be useful, but
|
// This program is distributed in the hope that it will be useful, but
|
||||||
// WITHOUT ANY WARRANTY; without even the implied warranty of
|
// WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
// General Public License for more details.
|
// General Public License for more details.
|
||||||
//
|
//
|
||||||
// You should have received a copy of the GNU General Public License
|
// You should have received a copy of the GNU General Public License
|
||||||
// along with this program; if not, write to the Free Software
|
// along with this program; if not, write to the Free Software
|
||||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
//
|
//
|
||||||
// $Id$
|
// $Id$
|
||||||
|
|
||||||
#ifndef _KLN89_PAGE_HXX
|
#ifndef _KLN89_PAGE_HXX
|
||||||
#define _KLN89_PAGE_HXX
|
#define _KLN89_PAGE_HXX
|
||||||
|
|
||||||
#include <Instrumentation/dclgps.hxx>
|
#include <Instrumentation/dclgps.hxx>
|
||||||
#include "kln89.hxx"
|
#include "kln89.hxx"
|
||||||
|
|
||||||
class KLN89;
|
class KLN89;
|
||||||
|
|
||||||
class KLN89Page : public GPSPage {
|
class KLN89Page : public GPSPage {
|
||||||
|
|
||||||
public:
|
public:
|
||||||
KLN89Page(KLN89* parent);
|
KLN89Page(KLN89* parent);
|
||||||
virtual ~KLN89Page();
|
virtual ~KLN89Page();
|
||||||
virtual void Update(double dt);
|
virtual void Update(double dt);
|
||||||
virtual void Knob1Left1();
|
virtual void Knob1Left1();
|
||||||
virtual void Knob1Right1();
|
virtual void Knob1Right1();
|
||||||
virtual void Knob2Left1();
|
virtual void Knob2Left1();
|
||||||
virtual void Knob2Right1();
|
virtual void Knob2Right1();
|
||||||
virtual void CrsrPressed();
|
virtual void CrsrPressed();
|
||||||
virtual void EntPressed();
|
virtual void EntPressed();
|
||||||
virtual void ClrPressed();
|
virtual void ClrPressed();
|
||||||
// Even though some/all of the buttons below aren't processed directly by the current page,
|
// Even though some/all of the buttons below aren't processed directly by the current page,
|
||||||
// the current page often needs to save or change some state when they are pressed, and
|
// the current page often needs to save or change some state when they are pressed, and
|
||||||
// hence should provide a function to handle them.
|
// hence should provide a function to handle them.
|
||||||
virtual void DtoPressed();
|
virtual void DtoPressed();
|
||||||
virtual void NrstPressed();
|
virtual void NrstPressed();
|
||||||
virtual void AltPressed();
|
virtual void AltPressed();
|
||||||
virtual void OBSPressed();
|
virtual void OBSPressed();
|
||||||
virtual void MsgPressed();
|
virtual void MsgPressed();
|
||||||
|
|
||||||
// See base class comments for this.
|
// See base class comments for this.
|
||||||
virtual void CleanUp();
|
virtual void CleanUp();
|
||||||
|
|
||||||
// ditto
|
// ditto
|
||||||
virtual void LooseFocus();
|
virtual void LooseFocus();
|
||||||
|
|
||||||
inline void SetEntInvert(bool b) { _entInvert = b; }
|
inline void SetEntInvert(bool b) { _entInvert = b; }
|
||||||
|
|
||||||
// Get / Set a waypoint id, NOT the page name!
|
// Get / Set a waypoint id, NOT the page name!
|
||||||
virtual void SetId(const string& s);
|
virtual void SetId(const string& s);
|
||||||
virtual const string& GetId();
|
virtual const string& GetId();
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
KLN89* _kln89;
|
KLN89* _kln89;
|
||||||
|
|
||||||
// Underline position in cursor mode is not persistant when subpage is changed - hence we only need one variable per page for it.
|
// Underline position in cursor mode is not persistant when subpage is changed - hence we only need one variable per page for it.
|
||||||
// Note that pos 0 is special - this is the leg pos in field 1, so pos will normally be set to 1 when crsr is pressed.
|
// Note that pos 0 is special - this is the leg pos in field 1, so pos will normally be set to 1 when crsr is pressed.
|
||||||
// Also note that in general it doesn't seem to wrap.
|
// Also note that in general it doesn't seem to wrap.
|
||||||
unsigned int _uLinePos;
|
unsigned int _uLinePos;
|
||||||
unsigned int _maxULinePos;
|
unsigned int _maxULinePos;
|
||||||
|
|
||||||
// This is NOT the main gps to/from flag - derived page classes can use this flag
|
// This is NOT the main gps to/from flag - derived page classes can use this flag
|
||||||
// for any purpose, typically whether a radial bearing should be displayed to or from.
|
// for any purpose, typically whether a radial bearing should be displayed to or from.
|
||||||
bool _to_flag; // true for TO, false for FROM
|
bool _to_flag; // true for TO, false for FROM
|
||||||
|
|
||||||
// Invert ID and display ENT in field 1
|
// Invert ID and display ENT in field 1
|
||||||
bool _entInvert;
|
bool _entInvert;
|
||||||
|
|
||||||
string _id; // The ID of the waypoint that the page is displaying.
|
string _id; // The ID of the waypoint that the page is displaying.
|
||||||
// Doesn't make sense for all pages, but does for all the data pages.
|
// Doesn't make sense for all pages, but does for all the data pages.
|
||||||
|
|
||||||
void ShowScratchpadMessage(const string& line1, const string& line2);
|
void ShowScratchpadMessage(const string& line1, const string& line2);
|
||||||
|
|
||||||
bool _scratchpadMsg; // Set true when there is a scratchpad message to display
|
bool _scratchpadMsg; // Set true when there is a scratchpad message to display
|
||||||
double _scratchpadTimer; // Used for displaying the scratchpad messages for the right amount of time.
|
double _scratchpadTimer; // Used for displaying the scratchpad messages for the right amount of time.
|
||||||
string _scratchpadLine1;
|
string _scratchpadLine1;
|
||||||
string _scratchpadLine2;
|
string _scratchpadLine2;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // _KLN89_PAGE_HXX
|
#endif // _KLN89_PAGE_HXX
|
||||||
|
|
Loading…
Reference in a new issue