QueenPanel.h
上传用户:hncsjd
上传日期:2022-07-08
资源大小:3772k
文件大小:1k
源码类别:

其他智力游戏

开发平台:

Visual C++

  1. #if !defined(AFX_QUEENPANEL_H__A9B8D66C_5C62_445A_8FF1_F10F757293C3__INCLUDED_)
  2. #define AFX_QUEENPANEL_H__A9B8D66C_5C62_445A_8FF1_F10F757293C3__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // QueenPanel.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // QueenPanel window
  10. class QueenPanel : public CStatic
  11. {
  12. // Construction
  13. public:
  14. QueenPanel();
  15. QueenPanel(int size);
  16. // Attributes
  17. public:
  18. // Operations
  19. public:
  20. // Overrides
  21. // ClassWizard generated virtual function overrides
  22. //{{AFX_VIRTUAL(QueenPanel)
  23. //}}AFX_VIRTUAL
  24. // Implementation
  25. public:
  26. virtual ~QueenPanel();
  27. void SetSize(int size);
  28. void SetQueen(int *newq);
  29. void SetQueen(int row, int col);
  30. // Generated message map functions
  31. protected:
  32. //{{AFX_MSG(QueenPanel)
  33. afx_msg void OnPaint();
  34. //}}AFX_MSG
  35. DECLARE_MESSAGE_MAP()
  36. private:
  37. void DrawBoard(CDC *pDC, int size, int cell);
  38. int *queen;
  39. int n;
  40. HANDLE queen_mutex;
  41. };
  42. /////////////////////////////////////////////////////////////////////////////
  43. //{{AFX_INSERT_LOCATION}}
  44. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  45. #endif // !defined(AFX_QUEENPANEL_H__A9B8D66C_5C62_445A_8FF1_F10F757293C3__INCLUDED_)