Commit before breaking everything
[matches/honours.git] / research / transmission_spectroscopy / TOF / Win32++ / samples / DockTabbedMDI / src / Output.h
1 ///////////////////////////////////////////////////////\r
2 // Output.h - Declaration of the CViewOutput, CContainOutput, \r
3 //          and CDockOutput classes\r
4 \r
5 #ifndef OUTPUT_H\r
6 #define OUTPUT_H\r
7 \r
8 \r
9 #include <richedit.h>\r
10 \r
11 \r
12 // Declaration of the CViewText class\r
13 class CViewOutput : public CWnd\r
14 {\r
15 public:\r
16         CViewOutput();\r
17         virtual ~CViewOutput();\r
18 \r
19 protected:\r
20         virtual void PreCreate(CREATESTRUCT &cs); \r
21         virtual void OnInitialUpdate(); \r
22 \r
23 private:\r
24         HMODULE m_hRichEdit;\r
25         CFont m_Font;\r
26 };\r
27 \r
28 // Declaration of the CContainText class\r
29 class CContainOutput : public CDockContainer\r
30 {\r
31 public:\r
32         CContainOutput();\r
33         ~CContainOutput() {}\r
34 \r
35 private:\r
36         CViewOutput m_ViewOutput;\r
37 };\r
38 \r
39 // Declaration of the CDockText class\r
40 class CDockOutput : public CDocker\r
41 {\r
42 public:\r
43         CDockOutput();\r
44         virtual ~CDockOutput() {}\r
45         virtual void OnInitialUpdate();\r
46 \r
47 private:\r
48         CContainOutput m_View;\r
49 \r
50 };\r
51 \r
52 \r
53 #endif // OUTPUT_H\r
54 \r

UCC git Repository :: git.ucc.asn.au