SDC C-Project CF Review 프로그램
SWK
2023-03-10 5ce2e7ca14f09da2138ea783ef16044a01423413
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
44
45
46
47
48
49
50
51
#pragma once
#include "afxwin.h"
#include "afxcmn.h"
 
 
// CDlgRecipeChange ´ëÈ­ »óÀÚÀÔ´Ï´Ù.
 
class CDlgRecipeChange : public CDialog
{
    DECLARE_DYNAMIC(CDlgRecipeChange)
 
public:
    CDlgRecipeChange(CWnd* pParent = NULL);   // Ç¥ÁØ »ý¼ºÀÚÀÔ´Ï´Ù.
    virtual ~CDlgRecipeChange();
 
// ´ëÈ­ »óÀÚ µ¥ÀÌÅÍÀÔ´Ï´Ù.
    enum { IDD = IDD_RECIPE_CHANGE };
 
protected:
    virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV Áö¿øÀÔ´Ï´Ù.
 
    DECLARE_MESSAGE_MAP()
public:
    afx_msg void OnBnClickedButton1();
    afx_msg void OnBnClickedAllCheck();
    CButton CB_AllCheck;
    CButton CB_ReviewCount;
    CButton CB_WsiCount;
    CButton CB_MagIndex;
    CButton CB_LightLevel;
    CButton CB_AfmOffMode;
    CButton CB_ALIGN_LIGHT_ON;
    CButton CB_ALIGN_LIGHT_OFF;
    CButton CB_PadCount;
    CButton CB_ALIGN_LIGHT_LEVEL;
    int m_nRecipeCount;
    int m_nWsiCount;
    int m_nMagIndex;
    int m_nLightLevel;
    int m_nAfmOffMode;
    afx_msg void OnEnChangeEditReviewCount();
    int m_nReviewCount;
    CProgressCtrl PG_RecipeChange;
    afx_msg void OnBnClickedAlginLightOn();
    int m_nPadCount;
    afx_msg void OnBnClickedAlginLightOff();
    int m_nFirstAlignLightLevel;
    int m_nSecondAlignLightLevel;
    
    virtual BOOL OnInitDialog();
};