2002-04-07 21:13:56 +00:00
|
|
|
// FGMagRibbon.hxx - Built-in layer for the magnetic compass ribbon layer.
|
|
|
|
//
|
|
|
|
// Written by David Megginson, started January 2000.
|
|
|
|
//
|
|
|
|
// This program is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU General Public License as
|
|
|
|
// published by the Free Software Foundation; either version 2 of the
|
|
|
|
// License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful, but
|
|
|
|
// WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
// General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this program; if not, write to the Free Software
|
|
|
|
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
//
|
|
|
|
// $Id$
|
|
|
|
|
|
|
|
#ifndef __FG_MAG_RIBBON_HXX
|
|
|
|
#define __FG_MAG_RIBBON_HXX
|
|
|
|
|
2003-01-26 15:56:30 +00:00
|
|
|
#include <Main/fg_props.hxx>
|
2002-04-07 21:13:56 +00:00
|
|
|
#include "../panel.hxx"
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
// Built-in layer for the magnetic compass ribbon layer.
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
class FGMagRibbon : public FGTexturedLayer
|
|
|
|
{
|
|
|
|
public:
|
2003-01-26 15:56:30 +00:00
|
|
|
FGMagRibbon (int w, int h);
|
|
|
|
virtual ~FGMagRibbon () {}
|
2002-04-07 21:13:56 +00:00
|
|
|
|
2003-01-26 15:56:30 +00:00
|
|
|
virtual void draw ();
|
|
|
|
|
|
|
|
private:
|
|
|
|
SGPropertyNode_ptr _magcompass_node;
|
2002-04-07 21:13:56 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // __FG_MAG_RIBBON_HXX
|
|
|
|
|
|
|
|
// end of FGMagRibbon.hxx
|