Move the sources to trunk
[opencv] / apps / Hawk / HawkDoc.h
1 /*M///////////////////////////////////////////////////////////////////////////////////////
2 //
3 //  IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.
4 //
5 //  By downloading, copying, installing or using the software you agree to this license.
6 //  If you do not agree to this license, do not download, install,
7 //  copy or use the software.
8 //
9 //
10 //                        Intel License Agreement
11 //                For Open Source Computer Vision Library
12 //
13 // Copyright (C) 2000, Intel Corporation, all rights reserved.
14 // Third party copyrights are property of their respective owners.
15 //
16 // Redistribution and use in source and binary forms, with or without modification,
17 // are permitted provided that the following conditions are met:
18 //
19 //   * Redistribution's of source code must retain the above copyright notice,
20 //     this list of conditions and the following disclaimer.
21 //
22 //   * Redistribution's in binary form must reproduce the above copyright notice,
23 //     this list of conditions and the following disclaimer in the documentation
24 //     and/or other materials provided with the distribution.
25 //
26 //   * The name of Intel Corporation may not be used to endorse or promote products
27 //     derived from this software without specific prior written permission.
28 //
29 // This software is provided by the copyright holders and contributors "as is" and
30 // any express or implied warranties, including, but not limited to, the implied
31 // warranties of merchantability and fitness for a particular purpose are disclaimed.
32 // In no event shall the Intel Corporation or contributors be liable for any direct,
33 // indirect, incidental, special, exemplary, or consequential damages
34 // (including, but not limited to, procurement of substitute goods or services;
35 // loss of use, data, or profits; or business interruption) however caused
36 // and on any theory of liability, whether in contract, strict liability,
37 // or tort (including negligence or otherwise) arising in any way out of
38 // the use of this software, even if advised of the possibility of such damage.
39 //
40 //M*/// HawkDoc.h : interface of the CHawkDoc class
41 //
42 /////////////////////////////////////////////////////////////////////////////
43
44 #if !defined(AFX_HAWKDOC_H__6FFD53AF_939A_11D3_AE7E_00A0C9989BC6__INCLUDED_)
45 #define AFX_HAWKDOC_H__6FFD53AF_939A_11D3_AE7E_00A0C9989BC6__INCLUDED_
46
47 #if _MSC_VER > 1000
48 #pragma once
49 #endif // _MSC_VER > 1000
50
51 class CDSWnd;
52 class CHawkView;
53 class CLogView;
54 class CHawkDoc : public CDocument
55 {
56 friend unsigned long __stdcall _StopDS(void* doc);
57
58 protected: // create from serialization only
59         CHawkDoc();
60         DECLARE_DYNCREATE(CHawkDoc)
61
62 // Attributes
63 public:
64
65 // Operations
66 public:
67
68 // Overrides
69         // ClassWizard generated virtual function overrides
70         //{{AFX_VIRTUAL(CHawkDoc)
71         public:
72         virtual BOOL OnNewDocument();
73         virtual void Serialize(CArchive& ar);
74         virtual BOOL CanCloseFrame(CFrameWnd* pFrame);
75     virtual BOOL IsModified();
76         virtual BOOL OnOpenDocument(LPCTSTR lpszPathName);
77         //}}AFX_VIRTUAL
78
79 // Implementation
80 public:
81         BOOL m_dsSimpleMode;
82         HANDLE m_readMutex;
83         BOOL IsRunning();
84         void ClearTransformFunction();
85         BOOL ParseTransformFunction();
86         HANDLE m_hThread;
87     HANDLE m_hScriptExec;
88     HANDLE m_hScriptMutex;
89     volatile BOOL m_execState;
90         BOOL Initialize();
91         CLogView* GetLogView();
92         char* m_pScript;
93         CStringArray m_parsedStrings;
94         CHawkView* GetHawkView();
95         virtual ~CHawkDoc();
96         void ParseString();
97 #ifdef _DEBUG
98         virtual void AssertValid() const;
99         virtual void Dump(CDumpContext& dc) const;
100 #endif
101
102 protected:
103
104 // Generated message map functions
105 protected:
106         //{{AFX_MSG(CHawkDoc)
107         afx_msg void OnRun();
108         afx_msg void OnUpdateRun(CCmdUI* pCmdUI);
109         afx_msg void OnRunds();
110         afx_msg void OnUpdateRunds(CCmdUI* pCmdUI);
111         afx_msg void OnStopds();
112         afx_msg void OnUpdateStopds(CCmdUI* pCmdUI);
113         afx_msg void OnOptionsConfiguration();
114         afx_msg void OnOptionsColors();
115         afx_msg void OnUpdateOptionsColors(CCmdUI* pCmdUI);
116         afx_msg void OnFileClose();
117         afx_msg void OnUpdateFileClose(CCmdUI* pCmdUI);
118         afx_msg void OnFileSave();
119         afx_msg void OnFileSaveAs();
120         afx_msg void OnEicQwatch();
121         //}}AFX_MSG
122         DECLARE_MESSAGE_MAP()
123 private:
124         CString m_tempName;
125 //      CDSWnd* m_DSWnd;
126         CHawkView* m_pHawkView;
127         CLogView* m_pLogView;
128
129 };
130
131 /////////////////////////////////////////////////////////////////////////////
132
133 //{{AFX_INSERT_LOCATION}}
134 // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
135
136 #endif // !defined(AFX_HAWKDOC_H__6FFD53AF_939A_11D3_AE7E_00A0C9989BC6__INCLUDED_)