00001 //--- < SCENE.H > ---------------| ViewGraph - A Flexible Graph view Framework | 00002 // 00003 // This is the base class in a scene tree. 00004 // Scene nodes can either be drawn 00005 // or may modify the display/appearance of drawable 00006 // nodes. Some nodes may do nothing but cache 00007 // some important data and this is ok as well. 00008 // 00009 // 00010 // $Author: botik32 $ 00011 // $Revision: 1.1.1.1 $ 00012 // $Date: 2004/03/26 10:50:24 $ 00013 //-----------------------------------------------------------------------------/ 00014 00015 #ifndef SCENE_H 00016 #define SCENE_H 00017 00018 #include <cZUI/context.h> 00019 00020 class Scene : public Context 00021 { 00022 }; 00023 00024 #endif 00025 00026 /// $Log: scene.h,v $ 00027 /// Revision 1.1.1.1 2004/03/26 10:50:24 botik32 00028 /// Initial release 00029 /// 00030 /// Revision 1.1.1.1 2004/03/26 08:53:33 botik 00031 /// initial import 00032 /// 00033 /// 00034 /// Revision 1.2 2003/12/02 14:39:37 botik 00035 /// Changed the repaint strategy to always repaint the scene 00036 /// Added Context class to handle context-related data for 00037 /// scene nodes 00038 /// Added get_surfacerect() to ScrollableView 00039 /// Camera, Scene and GraphWindow now inherit from Context 00040 /// Changed activeleaf to use Scene context to store hover 00041 /// status 00042 ///