ChgPwd.h
上传用户:cydong117
上传日期:2009-11-10
资源大小:638k
文件大小:1k
源码类别:

模拟服务器

开发平台:

Visual C++

  1. // LoginProcess.h: interface for the CLoginProcess class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #ifndef _LOGIN_H
  5. #define _LOGIN_H
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class CLogin : public CBMWnd 
  10. {
  11. /////////////////////////////////////////////////////////////////////////////////////////
  12. // Functions
  13. public:
  14. CLogin();
  15. ~CLogin();
  16. virtual VOID Create(CWHWilImageData* pxImage);
  17. virtual HRESULT OnButtonDown(WPARAM wParam, LPARAM lParam);
  18. virtual HRESULT OnButtonDown(POINT ptMouse);
  19. virtual HRESULT OnButtonUp(WPARAM wParam, LPARAM lParam);
  20. virtual HRESULT OnButtonUp(POINT ptMouse);
  21. virtual HRESULT OnKeyDown(WPARAM wParam, LPARAM lParam);
  22. virtual LRESULT OnMouseMove(WPARAM wParam, LPARAM lParam);
  23. virtual VOID Render(INT nLoopTime);
  24. private:
  25. protected:
  26. VOID SetFocusBefore(VOID);
  27. VOID SetFocusAfter(VOID);
  28. /////////////////////////////////////////////////////////////////////////////////////////
  29. // Variable
  30. public:
  31. private:
  32. INPUTSTATE m_xInputState[2];
  33. _LOGINIMAGEINFO m_xInputImg[4]; // 捞固瘤 昏力 丑饶
  34. CMirButton m_xButtons[3];
  35. INT m_nUserState;
  36. BOOL m_fIsButtonDown;
  37. protected:
  38. CWHWilImageData *m_pxImage;
  39. CMirButton *m_pBtn;
  40. };
  41. #endif //_LOGIN_H