MainFrm.h
上传用户:wpp2016
上传日期:2010-02-01
资源大小:1250k
文件大小:3k
源码类别:

Telnet服务器

开发平台:

Visual C++

  1. // MainFrm.h : interface of the CMainFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_MAINFRM_H__42C9BC6A_EF6C_11D3_9E45_00A0C936C4B3__INCLUDED_)
  5. #define AFX_MAINFRM_H__42C9BC6A_EF6C_11D3_9E45_00A0C936C4B3__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "visualfx.h"//自定义的框架类
  10. //#include "MyBarBottom.h"//下面的状态蓝
  11. //#include "msgman.h"
  12. #include "ooextoolbar.hpp"
  13. #ifndef MFCX_PROJ
  14. #define MFCX_PROJ
  15. #define AUTO_SUBCLASS
  16. #include <cj60lib.h>
  17. #endif
  18. //class CMsgman;
  19. //#define WM_SETACTIVE WM_USER+100
  20. class CAnywhereDoc;
  21. //class CTalkSocket;
  22. class CMainFrame : public CFrameWnd
  23. {
  24. protected: // create from serialization only
  25. CMainFrame();
  26. DECLARE_DYNCREATE(CMainFrame)
  27. // Attributes
  28. public:
  29.    TVisualFramework m_Framework;
  30.    TVisualObject *pObject;
  31.    CAnywhereDoc *m_pDoc;
  32.  
  33.    //CAnywhereDoc *
  34. // Operations
  35. public:
  36. // Overrides
  37. // ClassWizard generated virtual function overrides
  38. //{{AFX_VIRTUAL(CMainFrame)
  39. public:
  40. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  41. virtual void ActivateFrame(int nCmdShow = -1);
  42. protected:
  43. virtual BOOL OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext);
  44. //}}AFX_VIRTUAL
  45. // Implementation
  46. public:
  47. void Msginit();
  48. virtual ~CMainFrame();
  49. #ifdef _DEBUG
  50. virtual void AssertValid() const;
  51. virtual void Dump(CDumpContext& dc) const;
  52. #endif
  53. protected:  // control bar embedded members
  54. CStatusBar  m_wndStatusBar;
  55. //CToolBar    m_wndToolBar;
  56. COOBmpToolBar m_wndToolBar;
  57. CReBar      m_wndReBar;
  58. CDialogBar      m_wndDlgBar;
  59.     CTabCtrlBar m_wndWorkspace;
  60. CImageList m_ImageList;
  61. CImageList m_TabImageList;
  62. //CMyBarBottom  m_wndOutput;
  63. CFont m_Font;
  64. BOOL bFirst;
  65. // Generated message map functions
  66. protected:
  67. int Respones(CString &text);
  68. //{{AFX_MSG(CMainFrame)
  69. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  70. afx_msg void OnDestroy();
  71. afx_msg LRESULT OnSetActive(WPARAM wParam,LPARAM lParam);
  72. afx_msg void OnViewscr();
  73. afx_msg void OnGetinfo();
  74. afx_msg void OnOption();
  75. afx_msg void OnSitebook();
  76. afx_msg void OnDisconnect();
  77. afx_msg void OnUpdateDisconnect(CCmdUI* pCmdUI);
  78. afx_msg void OnUpdateGetinfo(CCmdUI* pCmdUI);
  79. afx_msg void OnUpdateListfile(CCmdUI* pCmdUI);
  80. afx_msg void OnUpdateViewscr(CCmdUI* pCmdUI);
  81. afx_msg void OnClose();
  82. afx_msg void OnUpdateOption(CCmdUI* pCmdUI);
  83. //}}AFX_MSG
  84. DECLARE_MESSAGE_MAP()
  85. };
  86. /////////////////////////////////////////////////////////////////////////////
  87. //{{AFX_INSERT_LOCATION}}
  88. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  89. #endif // !defined(AFX_MAINFRM_H__42C9BC6A_EF6C_11D3_9E45_00A0C936C4B3__INCLUDED_)