PointerSelectObjectDlg.h 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. #ifndef POINTERSELECTOBJECTDLG_H
  2. #define POINTERSELECTOBJECTDLG_H
  3. /*************************************************************************************************\
  4. PointerSelectObjectDlg.h : Interface for the PointerSelectObjectDlg component.
  5. //---------------------------------------------------------------------------//
  6. // Copyright (C) Microsoft Corporation. All rights reserved. //
  7. //===========================================================================//
  8. \*************************************************************************************************/
  9. #include "resource.h"
  10. #include "Objective.h"
  11. #include "stdafx.h"
  12. class PointerSelectObjectDlg: public CDialog
  13. {
  14. private:
  15. bool m_bTimerIsReset;
  16. public:
  17. PointerSelectObjectDlg();
  18. PointerSelectObjectDlg(int x, int y);
  19. virtual ~PointerSelectObjectDlg();
  20. BOOL OnCommand(WPARAM wParam, LPARAM lParam); // called by child controls to inform of an event
  21. virtual BOOL OnWndMsg( UINT message, WPARAM wParam, LPARAM lParam, LRESULT* pResult );
  22. BOOL OnInitDialog();
  23. UINT OnNcHitTest( CPoint point );
  24. private:
  25. typedef CDialog inherited;
  26. // suppressing these
  27. //inline PointerSelectObjectDlg();
  28. PointerSelectObjectDlg& operator=( const PointerSelectObjectDlg& lgUnitPtr );
  29. CButton *m_pButton;
  30. };
  31. //*************************************************************************************************
  32. #endif // end of file ( PointerSelectObjectDlg.h )