SDC C-Project CF Review 프로그램
KYH
2021-06-07 e21f80c0b3c303c8f38859cc7652822f2da2913c
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
#pragma once
#include "afxwin.h"
 
#include "ChartGlassData.h"
#include "ChartViewer.h"
#include "CHReviewResult/ReviewResult.h"
#include "CHEdgeTriangle/RecipeFormula.h"
#include "CHReviewResult/DefectResult.h"
#include <vector>
 
class CDlgResultGraph : public CDialog, public CChartGlassData
{
    DECLARE_DYNAMIC(CDlgResultGraph)
 
public:
    CDlgResultGraph(CWnd* pParent = NULL);   // Ç¥ÁØ »ý¼ºÀÚÀÔ´Ï´Ù.
    virtual ~CDlgResultGraph();
 
// ´ëÈ­ »óÀÚ µ¥ÀÌÅÍÀÔ´Ï´Ù.
    enum { IDD = IDD_DLG_RESULT_GRAPH };
 
protected:
    virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV Áö¿øÀÔ´Ï´Ù.
 
    DECLARE_MESSAGE_MAP()
public:
    virtual BOOL OnInitDialog();
    afx_msg void OnSize(UINT nType, int cx, int cy);
 
public:
    void UpdateGraphView(int nType);
    void InitGlassGraph();
    void DrawMeasureGraph(int nType, CGlassResult* pGlassResult);
 
    int                        m_nProcessStatus;
    int                        m_nGraphMode;
    CChartViewer            m_ctrlGraphView;
 
    CChartGlassData            a;
 
    int nGlassIndex;
    int nGlassID;
    int temp;
    int nMode;
};