Update the changelog
[opencv] / apps / Hawk / MainFrm.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*/// MainFrm.h : interface of the CMainFrame class
41 //
42 /////////////////////////////////////////////////////////////////////////////
43
44 #if !defined(AFX_MAINFRM_H__6FFD53AB_939A_11D3_AE7E_00A0C9989BC6__INCLUDED_)
45 #define AFX_MAINFRM_H__6FFD53AB_939A_11D3_AE7E_00A0C9989BC6__INCLUDED_
46
47 #if _MSC_VER > 1000
48 #pragma once
49 #endif // _MSC_VER > 1000
50
51 #define SafeRelease(p) { if( (p) != 0 ) { (p)->Release(); (p)= 0; } }
52 #define WM_GRAPHNOTIFY  WM_USER+13 
53
54 #include <cvstreams.h>
55 #include <iProxyTrans.h>
56
57 class CHawkDoc;
58 class CMainFrame : public CMDIFrameWnd
59 {
60     DECLARE_DYNAMIC(CMainFrame)
61 public:
62     CMainFrame();
63
64 // Attributes
65 public:
66     CHawkDoc* m_pRunDoc;
67
68 private:
69     BOOL m_isDSRunning;
70     BOOL m_DSOn;
71     HWND m_DSWnd;
72
73 // Operations
74 public:
75
76 // Overrides
77     // ClassWizard generated virtual function overrides
78     //{{AFX_VIRTUAL(CMainFrame)
79     public:
80     virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
81     //}}AFX_VIRTUAL
82
83 // Implementation
84 public:
85     HWND GetDSHWND();
86     void RunDS(void (*cb)(void*), BOOL ret = TRUE);
87     BOOL IsDSRunning() {return m_isDSRunning;}
88     void SetDocRun(CHawkDoc* pDoc = NULL);
89     void SetIntRun(BOOL isRun);
90     BOOL IsIntRun();
91     void StartGraph(HWND hWnd);
92     void StopGraph();
93     void SetTransformCallback(void (*cb)(void*));
94     BOOL IsDirectShowOn();
95     BOOL CreateCamera();    
96     BOOL CreateFilterGraph();
97     void StartGraph(CWnd* pWnd);
98     void SetVideoWindowSize(HWND hWnd);
99     CRect GetVideoWindowSize(HWND hWnd);
100     CStatusBar* GetStatusBar();
101     virtual ~CMainFrame();
102 #ifdef _DEBUG
103     virtual void AssertValid() const;
104     virtual void Dump(CDumpContext& dc) const;
105 #endif
106
107 protected:  // control bar embedded members
108     CStatusBar  m_wndStatusBar;
109     CToolBar    m_wndToolBar;
110     CToolBar    m_eicToolBar;
111
112 // Generated message map functions
113 protected:
114     //{{AFX_MSG(CMainFrame)
115     afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
116     afx_msg void OnClose();
117     afx_msg void OnVideoPp();
118     afx_msg void OnUpdateVideoPp(CCmdUI* pCmdUI);
119     afx_msg void OnPinPp();
120     afx_msg void OnUpdatePinPp(CCmdUI* pCmdUI);
121     //}}AFX_MSG
122     DECLARE_MESSAGE_MAP()
123 private:
124     BOOL m_isIntRun;
125     IProxyTransform* m_ProxyTrans;
126     IBaseFilter* m_SourceFilter;
127     IGraphBuilder*  m_GraphBuilder;
128     IMediaControl*  m_MediaControl;
129     IVideoWindow*   m_VideoWindow;
130     IFilterGraph*   m_FilterGraph;
131     IMediaEventEx*  m_MediaEventEx;
132 };
133
134 /////////////////////////////////////////////////////////////////////////////
135
136 //{{AFX_INSERT_LOCATION}}
137 // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
138
139 #endif // !defined(AFX_MAINFRM_H__6FFD53AB_939A_11D3_AE7E_00A0C9989BC6__INCLUDED_)