AutoupdateDlg.h
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:3k
源码类别:

模拟服务器

开发平台:

C/C++

  1. // AutoupdateDlg.h : header file
  2. //
  3. //{{AFX_INCLUDES()
  4. #include "webbrowser2.h"
  5. //}}AFX_INCLUDES
  6. #if !defined(AFX_AUTOUPDATEDLG_H__8ECBCF19_56D6_4317_855A_CF114C5A5647__INCLUDED_)
  7. #define AFX_AUTOUPDATEDLG_H__8ECBCF19_56D6_4317_855A_CF114C5A5647__INCLUDED_
  8. #if _MSC_VER > 1000
  9. #pragma once
  10. #endif // _MSC_VER > 1000
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CAutoupdateDlg dialog
  13. #include "afxhtml.h"
  14. #include "afxmt.h"
  15. #include<string>
  16. #include "AutoUpdateRes.h"
  17. #include "GameOptionPanel.h"
  18. #include "AnnuncePanel.h"
  19. #include "Hyperlinkstatic.h"
  20. using namespace std;
  21. #define ConnectionProgress 50
  22. void LoadBitMapRes(HBITMAP& BitMap, UINT BitMapRes,HINSTANCE AppHandle);
  23. class CAutoupdateDlg : public CDialog
  24. {
  25. // Construction
  26. public:
  27. CAutoupdateDlg(CWnd* pParent = NULL); // standard constructor
  28. ~CAutoupdateDlg();
  29. BOOL InitAutoUpdate();
  30. void UpdateFromCurrentHost();
  31. int m_nCurrentHost;
  32. // Dialog Data
  33. //{{AFX_DATA(CAutoupdateDlg)
  34. enum { IDD = IDD_AUTOUPDATE_DIALOG };
  35. CButton m_RetryButton;
  36. CHyperlinkStatic m_RegUserCtl;
  37. CHyperlinkStatic m_SinaCtl;
  38. CHyperlinkStatic m_17173Ctl;
  39. CHyperlinkStatic m_HomeCtl;
  40. CHyperlinkStatic m_JoyoCtl;
  41. CHyperlinkStatic m_CardCtl;
  42. CButton m_GameOption;
  43. CProgressCtrl m_progressCurrent;
  44. CProgressCtrl m_progress;
  45. CStatic m_DisplayProgressCtl;
  46. CStatic m_DisplayCurrentCtl;
  47. CStatic m_DisplayVersionCtl;
  48. CButton m_RegisterCtl;
  49. CButton m_InvestCtl;
  50. CButton m_CancelButton;
  51. CButton  m_EnterGameButton;
  52. CString m_strVersion;
  53. CString m_strProgress;
  54. CString m_strProgressCurrent;
  55. CWebBrowser2 m_web;
  56. int m_nConnectionStep;
  57. BOOL m_bEnableRun;
  58. //}}AFX_DATA
  59. // ClassWizard generated virtual function overrides
  60. //{{AFX_VIRTUAL(CAutoupdateDlg)
  61. protected:
  62. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  63. //}}AFX_VIRTUAL
  64. // Implementation
  65. public:
  66. HMODULE m_ResModule;
  67. HICON m_hIcon;
  68. // void OnRefresh(LPSTATUSINFO pInfo);
  69. CString m_strUpdateSelf;
  70. CString m_strWebURL;
  71. CString m_strRun;
  72. CString m_strSiteList;
  73. CStringArray m_strHosts;
  74. // Generated message map functions
  75. //{{AFX_MSG(CAutoupdateDlg)
  76. virtual BOOL OnInitDialog();
  77. afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
  78. afx_msg void OnPaint();
  79. afx_msg HCURSOR OnQueryDragIcon();
  80. virtual void OnCancel();
  81. virtual void OnOK();
  82. afx_msg void OnDestroy();
  83. afx_msg void OnRegister();
  84. afx_msg void OnInvest();
  85. afx_msg HBRUSH OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor);
  86. afx_msg void OnConfig();
  87. afx_msg void OnNavigateErrorExplorer1(LPDISPATCH pDisp, VARIANT FAR* URL, VARIANT FAR* Frame, VARIANT FAR* StatusCode, BOOL FAR* Cancel);
  88. afx_msg void OnRetry();
  89. DECLARE_EVENTSINK_MAP()
  90. //}}AFX_MSG
  91. DECLARE_MESSAGE_MAP()
  92. CBitmap m_bmTitle;      // 标题背景
  93. CBitmap m_bmInfoBack;   // 信息提示背景
  94.     
  95. private:
  96. void LoadBitMapFromInstance(CBitmap& Dest,HINSTANCE Hinstance,WORD  wResourceID);
  97. CPoint m_MouseClickPosition;
  98. };
  99. //{{AFX_INSERT_LOCATION}}
  100. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  101. #endif // !defined(AFX_AUTOUPDATEDLG_H__8ECBCF19_56D6_4317_855A_CF114C5A5647__INCLUDED_)