SDC C-Project CF Review 프로그램
kojingeun
2023-11-24 c112cf54a238afa473e7eb0ea6298e06f4957658
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#pragma once
 
 
class CNetworkInfo;
 
interface IDialogLogo2Parent
{
    virtual const    CNetworkInfo*            IDL2P_System_GetNetworkInfo() = 0;
    virtual void    IDL2P_DisplayMessage(const TCHAR* lpstrFormat, ...) = 0;
    virtual void   IDL2P_OpenOffSetTool() = 0;
    virtual void   IDL2P_OpenHistoryTool() = 0;
    /*< LYW 20211112 - #3708 ADD Start >*/
    virtual void   IDL2P_OpenHWSettingTool() = 0;
    /*< LYW 20211112 - #3708 ADD End >*/
    //is manual Mode?
    virtual BOOL    IDL2P_IsManualProcessMode() = 0;
};
 
interface
{
 
};
// CDlgLogo ´ëÈ­ »óÀÚÀÔ´Ï´Ù.
 
class CDlgLogo : public CDialog
{
    DECLARE_DYNAMIC(CDlgLogo)
 
public:
    CDlgLogo(CWnd* pParent = NULL);   // Ç¥ÁØ »ý¼ºÀÚÀÔ´Ï´Ù.
    virtual ~CDlgLogo();
    void SetDL2P(IDialogLogo2Parent* pDL2P)        { m_pDL2P = pDL2P; }
 
// ´ëÈ­ »óÀÚ µ¥ÀÌÅÍÀÔ´Ï´Ù.
    enum { IDD = IDD_DLG_LOGO };
 
public:
    BOOL    m_bRClicked;
 
    void    ShowControls( BOOL bCheck );
    void    MoveMainWindow( int nIdx );
 
 
protected:
    IDialogLogo2Parent* m_pDL2P;
 
    CRect    m_rtOriginal;
 
protected:
    virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV Áö¿øÀÔ´Ï´Ù.
 
    DECLARE_MESSAGE_MAP()
public:
    afx_msg void OnBnClickedOk();
    afx_msg void OnBnClickedCancel();
    afx_msg void OnRButtonDblClk(UINT nFlags, CPoint point);
    virtual BOOL OnInitDialog();
    CStatic m_stLogo;
//    afx_msg void OnStnDblclickStaticLogo();
    virtual BOOL PreTranslateMessage(MSG* pMsg);
    CButton m_btnCenter;
    CButton m_btnLeft;
    CButton m_btnReduce;
    CButton m_btnRight;
    afx_msg void OnBnClickedButtonReduce();
    afx_msg void OnBnClickedButtonLeft();
    afx_msg void OnBnClickedButtonCenter();
    afx_msg void OnBnClickedButtonRight();
    CButton m_chkReduce;
    afx_msg BOOL OnEraseBkgnd(CDC* pDC);
    afx_msg HBRUSH OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor);
    afx_msg void OnStnClickedStaticLogo();
    afx_msg void OnBnClickedButton5();
    afx_msg void OnClickedButton6();
    CButton m_ctrlHistory;
    afx_msg void OnBnClickedButtonHwSettingMode();
};