HSpheresView.h

Go to the documentation of this file.
00001 // HSpheresView.h : interface of the HSpheresView class, derived from HBaseView
00002 // Adds application-specific data and members for each view
00003 
00004 #ifndef _HSpheresView_H
00005 #define _HSpheresView_H
00006 
00007 #include "HBaseView.h"
00008 #include "HUtility.h"
00009 
00010 class HSelectionSet;
00011 
00012 
00013 class HSpheresView : public HBaseView
00014 {
00015 
00016 public:
00017 
00018     HSpheresView(   HBaseModel *model,
00019                             const char *    alias = 0,  
00020                             const char *    driver_type = 0,
00021                             const char *    instance_name = 0,
00022                             void *          window_handle = 0,
00023                             void *          colormap = 0,
00024                             void *          clip_override = 0);
00025     ~HSpheresView();
00026 
00027     void    Init();
00028     void    ChangeMaterial();
00029     int     OnLButtonDblClk(HEventInfo &event){return HLISTENER_PASS_EVENT;};
00030 };
00031 
00032 #endif 
00033 
00034 
00035 
00036