// MainFrm.h : CMainFrame Ŭ·¡½ºÀÇ ÀÎÅÍÆäÀ̽º // #pragma once #include "afxext.h" #include "QuickMenuDlgBar.h" #include "AdminStoreDlgBar.h" class CItemQuantityControlDlg; class CInterestedUserDlg; class CMainFrame : public CMDIFrameWnd { DECLARE_DYNAMIC(CMainFrame) public: CMainFrame(); // Ư¼º public: // ÀÛ¾÷ public: // ÀçÁ¤ÀÇ public: virtual BOOL PreCreateWindow(CREATESTRUCT& cs); // ±¸Çö public: virtual ~CMainFrame(); #ifdef _DEBUG virtual void AssertValid() const; virtual void Dump(CDumpContext& dc) const; #endif protected: afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct); DECLARE_MESSAGE_MAP() virtual BOOL DestroyWindow(); virtual BOOL PreTranslateMessage(MSG* pMsg); private: CStatusBar m_wndStatusBar; // »óÅ ǥ½ÃÁÙ CToolBar m_wndToolBar; // ±âº» Åø¹Ù CQuickMenuDlgBar m_wndQuickMenuDlgBar; // Äü ¸Þ´º ´ÙÀ̾ó·Î±× ¹Ù CAdminStoreDlgBar m_wndAdminStoreDlgBar; // ¿î¿µ â°í ´ÙÀ̾ó·Î±× ¹Ù bool m_bIsPushCtrl; BOOL m_bIsShowBottomBar; BOOL m_bIsShowRightBar; afx_msg BOOL OnSetCursor(CWnd* pWnd, UINT nHitTest, UINT message); afx_msg void OnBnClickedCharsearch(); afx_msg void OnUpdateViewAdminstorebar(CCmdUI *pCmdUI); afx_msg void OnViewAdminstorebar(); afx_msg void OnUpdateViewQuickmenubar(CCmdUI *pCmdUI); afx_msg void OnViewQuickmenubar(); afx_msg void OnRButtonDown(UINT nFlags, CPoint point); afx_msg void OnEditPaste(); afx_msg void OnItemdropcontorol(); afx_msg void OnUserbillinglog(); afx_msg void OnBnClickedConnectallserverzBtn(); afx_msg void OnBnClickedRefreshconnectedlistBtn(); afx_msg void OnInteresteduserManage(); afx_msg void OnBnClickedConnectionchkBtn(); afx_msg void OnLbnDblclkConnectedUserList(); afx_msg void OnDuplicateditem(); afx_msg void OnCreateitem(); afx_msg void OnCancelgrabitem(); afx_msg void OnGuildmanage(); afx_msg void OnUnifiedcharinfo(); afx_msg void OnUnifiedguildinfo(); afx_msg void OnRestoreguild(); afx_msg void On32997(); afx_msg void OnCampInfo(); afx_msg void OnCastleSearch(); public: enum SEARCH_TYPE { SEARCH_ACCOUNT = 0, SEARCH_CHARACTER = 1, SEARCH_UID = 2, SEARCH_CID = 3, SEARCH_EOF, }; CItemQuantityControlDlg* m_lpItemQtyControlDlg; };