00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015 #if !defined( __STARSYSTEMOBJECT_H__ )
00016 #define __STARSYSTEMOBJECT_H__
00017
00018 class StarSystemObject : public XImage {
00019 private:
00020
00021 StarSystem *curSS;
00022
00023 public:
00024
00025 StarSystemObject( void );
00026
00027 virtual ~StarSystemObject( void );
00028
00029 protected:
00030
00031 virtual const bool SetupWindow( const Message &msg );
00032 virtual const bool evMouseMove( const MouseMessage &msg );
00033 virtual const bool evMouseLClick( const CtrlMessage &msg );
00034 virtual const bool evValueChange( const CtrlMessage &msg );
00035 virtual void Draw( void );
00036 };
00037
00038 #endif