mrDarker
2025-08-22 04d89bc9216553adcd0df87985a7665882924093
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
 
// MainFrm.h : CMainFrame Å¬·¡½ºÀÇ ÀÎÅÍÆäÀ̽º
//
 
#pragma once
 
class CMainFrame : public CFrameWndEx
{
    
protected: // serialization¿¡¼­¸¸ ¸¸µé¾îÁý´Ï´Ù.
    CMainFrame();
    DECLARE_DYNCREATE(CMainFrame)
 
// Æ¯¼ºÀÔ´Ï´Ù.
public:
 
// ÀÛ¾÷ÀÔ´Ï´Ù.
public:
 
// ÀçÁ¤ÀÇÀÔ´Ï´Ù.
public:
    virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
    virtual BOOL LoadFrame(UINT nIDResource, DWORD dwDefaultStyle = WS_OVERLAPPEDWINDOW | FWS_ADDTOTITLE, CWnd* pParentWnd = NULL, CCreateContext* pContext = NULL);
 
// ±¸ÇöÀÔ´Ï´Ù.
public:
    virtual ~CMainFrame();
#ifdef _DEBUG
    virtual void AssertValid() const;
    virtual void Dump(CDumpContext& dc) const;
#endif
 
protected:  // ÄÁÆ®·Ñ ¸ðÀ½ÀÌ Æ÷ÇԵȠ¸â¹öÀÔ´Ï´Ù.
    CMFCMenuBar       m_wndMenuBar;
    CMFCToolBar       m_wndToolBar;
    CMFCStatusBar     m_wndStatusBar;
    CMFCToolBarImages m_UserImages;
 
// »ý¼ºµÈ ¸Þ½ÃÁö ¸Ê ÇÔ¼ö
protected:
    afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
    afx_msg void OnViewCustomize();
    afx_msg LRESULT OnToolbarCreateNew(WPARAM wp, LPARAM lp);
    afx_msg LRESULT OnTray(WPARAM wParam, LPARAM lParam);
    afx_msg void OnApplicationLook(UINT id);
    afx_msg void OnUpdateApplicationLook(CCmdUI* pCmdUI);
    DECLARE_MESSAGE_MAP()
 
public:
    void GotoTray(void);
    afx_msg void OnDestroy();
    afx_msg void OnClose();
    afx_msg void OnAppExit();
    afx_msg void OnAppShowapplication();
};