Introduction

Getting Started

Programming Guides

API Reference

Additional Resources

HSoccerView.h
Go to the documentation of this file.
1 // HSoccerView.h : interface of the HSoccerView class, derived from HBaseView
2 // Adds application-specific data and members for each view
3 
4 #ifndef _HSoccerView_H
5 #define _HSoccerView_H
6 
7 #include "HBaseView.h"
8 #include "HUtility.h"
9 #include "HSnapGrid.h"
10 
11 class HSelectionSet;
12 
13 
14 class HSoccerView : public HBaseView
15 {
16 
17 public:
18 
19  HSoccerView( HBaseModel *model,
20  const char * alias = 0,
21  const char * driver_type = 0,
22  const char * instance_name = 0,
23  void * window_handle = 0,
24  void * colormap = 0,
25  void * clip_override = 0);
26  ~HSoccerView();
27 
28  void Init();
29 
31  void ProcessText();
32 
34  void DeleteLayers();
35 
37  HSnapGrid * GetSnapGrid() {return (m_pSnapGrid);}
38 
40  bool GetSnap() {return (m_bSnap);}
41 
43  void SetSnap(bool snap) {m_bSnap = snap;}
44 
45 protected:
46 
48  HSnapGrid * m_pSnapGrid;
49 
51  bool m_bSnap;
52 };
53 
54 #endif
55 
56 
57 
58 
HSnapGrid * GetSnapGrid()
Definition: HSoccerView.h:37
void DeleteLayers()
HSnapGrid * m_pSnapGrid
Definition: HSoccerView.h:48
bool m_bSnap
Definition: HSoccerView.h:51
Definition: HSoccerView.h:14
void ProcessText()
void SetSnap(bool snap)
Definition: HSoccerView.h:43
HSoccerView(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)
bool GetSnap()
Definition: HSoccerView.h:40