2003-11-27 23:41:00 +00:00
|
|
|
// AirportList.hxx - scrolling list of airports.
|
|
|
|
|
|
|
|
#ifndef __AIRPORTLIST_HXX
|
|
|
|
|
|
|
|
#include <plib/pu.h>
|
|
|
|
|
|
|
|
#include "puList.hxx"
|
|
|
|
|
|
|
|
class FGAirportList;
|
|
|
|
|
|
|
|
class AirportList : public puList
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
AirportList (int x, int y, int width, int height);
|
|
|
|
virtual ~AirportList ();
|
|
|
|
|
|
|
|
// FIXME: add other string value functions
|
2005-01-31 10:36:59 +00:00
|
|
|
virtual char * getListStringValue ();
|
2003-11-27 23:41:00 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
FGAirportList * _airports;
|
|
|
|
int _nAirports;
|
|
|
|
char ** _content;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // __AIRPORTLIST_HXX
|
|
|
|
|
|
|
|
// end of AirportList.hxx
|