Quantum Fog  0.9.3
C_BI_ND_PROBS_MARGIN.h
1 #pragma once
2 #include "C_TOP_PTRS.h"
3 
4 enum MARGIN_SIDE{top_sd, left_sd};
5 //******************************************
6 class C_BI_ND_PROBS_MARGIN : public LTableView, public C_TOP_PTRS
7 {
8 
9 protected:
10  USHORT its_bi_nd_id;
11  MARGIN_SIDE its_side;
12 
13 public:
14  C_BI_ND_PROBS_MARGIN(LStream * inStream);
16  virtual ~C_BI_ND_PROBS_MARGIN();
17 
18  VOID DrawCell(
19  const STableCell & inCell,
20  const Rect & inLocalRect);
21  BOOLEAN get_touched_cell(STableCell & t_cell);
22 
23  VOID set_side(MARGIN_SIDE side);
24  VOID set_bi_nd_always(USHORT new_id);
25 
26 };
27 #pragma mark -
28 
29 
30 //******************************************
31 inline
32 VOID C_BI_ND_PROBS_MARGIN::set_side(
33 MARGIN_SIDE side) //in
34 {
35  its_side = side;
36 }
37 
Definition: C_TOP_PTRS.h:7
Definition: C_BI_ND_PROBS_MARGIN.h:6