00001 //--- < SURFACECURSOR.H > -------| ViewGraph - A Flexible Graph view Framework | 00002 // 00003 // This is a base cursor class that can be 00004 // used together with the surface library 00005 // of your choice. 00006 // 00007 // Derive from the base surface cursor in your 00008 // surface driver. 00009 // 00010 // Cursors use XPM format files, just include 00011 // an .xpm file into your cpp module and use the 00012 // char* it provides. 00013 // 00014 // $Author: botik32 $ 00015 // $Revision: 1.1.1.1 $ 00016 // $Date: 2004/03/26 10:50:27 $ 00017 //-----------------------------------------------------------------------------/ 00018 00019 #ifndef SURFACECURSOR_H 00020 #define SURFACECURSOR_H 00021 00022 class SurfaceCursor 00023 { 00024 protected: 00025 // const char *image; 00026 public: 00027 //SurfaceCursor( const char * ); 00028 //~SurfaceCursor(); 00029 }; 00030 00031 #endif 00032 00033 /// $Log: surfacecursor.h,v $ 00034 /// Revision 1.1.1.1 2004/03/26 10:50:27 botik32 00035 /// Initial release 00036 /// 00037 /// Revision 1.1.1.1 2004/03/26 08:53:33 botik 00038 /// initial import 00039 /// 00040 /// 00041 /// Revision 1.1 2003/11/07 17:51:32 botik 00042 /// Added cursor support to surfacedriver. 00043 /// SetCursor does not work yet but should be 00044 /// piece of cake 00045 ///