forked from embeddedprogrammer/inspect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
VisualInspectionDlg.h
43 lines (35 loc) · 959 Bytes
/
VisualInspectionDlg.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
// VisualInspectionDlg.h : header file
//
#pragma once
#include "Hardware.h"
// CVisualInspectionDlg dialog
class CVisualInspectionDlg : public CDialogEx, public CTCSys
{
// Construction
public:
CVisualInspectionDlg(CWnd* pParent = NULL); // standard constructor
CBitmapButton m_Exit;
// Dialog Data
enum { IDD = IDD_VISUALINSPECTION_DIALOG };
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
// Implementation
protected:
HICON m_hIcon;
// Generated message map functions
virtual BOOL OnInitDialog();
afx_msg void OnPaint();
afx_msg HCURSOR OnQueryDragIcon();
DECLARE_MESSAGE_MAP()
public:
afx_msg void OnBnClickedLoadimg();
afx_msg void OnBnClickedSaveimg();
afx_msg void OnBnClickedStartinsp();
afx_msg void OnBnClickedUpdateimg();
afx_msg void OnBnClickedGrab();
afx_msg void OnBnClickedStop();
afx_msg void OnBnClickedExit();
afx_msg void OnDestroy();
BOOL m_UpdateImage;
BOOL m_Acquisition;
};