HSpheresView.h
Go to the documentation of this file.
1 // HSpheresView.h : interface of the HSpheresView class, derived from HBaseView
2 // Adds application-specific data and members for each view
3 
4 #ifndef _HSpheresView_H
5 #define _HSpheresView_H
6 
7 #include "HBaseView.h"
8 #include "HUtility.h"
9 
10 class HSelectionSet;
11 
12 
13 class HSpheresView : public HBaseView
14 {
15 
16 public:
17 
18  HSpheresView( HBaseModel *model,
19  const char * alias = 0,
20  const char * driver_type = 0,
21  const char * instance_name = 0,
22  void * window_handle = 0,
23  void * colormap = 0,
24  void * clip_override = 0);
25  ~HSpheresView();
26 
27  void Init();
28  void ChangeMaterial();
29  int OnLButtonDblClk(HEventInfo &event){return HLISTENER_PASS_EVENT;};
30 };
31 
32 #endif
33 
34 
35 
36 
Definition: HSpheresView.h:13
void ChangeMaterial()
int OnLButtonDblClk(HEventInfo &event)
Definition: HSpheresView.h:29
HSpheresView(HBaseModel *model, const char *alias=0, const char *driver_type=0, const char *instance_name=0, void *window_handle=0, void *colormap=0, void *clip_override=0)