DlgPgPosition.h 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. /* Copyright (c) 2002-2012 Croteam Ltd.
  2. This program is free software; you can redistribute it and/or modify
  3. it under the terms of version 2 of the GNU General Public License as published by
  4. the Free Software Foundation
  5. This program is distributed in the hope that it will be useful,
  6. but WITHOUT ANY WARRANTY; without even the implied warranty of
  7. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  8. GNU General Public License for more details.
  9. You should have received a copy of the GNU General Public License along
  10. with this program; if not, write to the Free Software Foundation, Inc.,
  11. 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */
  12. // DlgPgPosition.h : header file
  13. //
  14. #ifndef DLGPGPOSITION_H
  15. #define DLGPGPOSITION_H 1
  16. /////////////////////////////////////////////////////////////////////////////
  17. // CDlgPgPosition dialog
  18. class CDlgPgPosition : public CPropertyPage
  19. {
  20. DECLARE_DYNCREATE(CDlgPgPosition)
  21. // Construction
  22. public:
  23. CDlgPgPosition();
  24. ~CDlgPgPosition();
  25. BOOL OnIdle(LONG lCount);
  26. CUpdateableRT m_udSelection;
  27. // Dialog Data
  28. //{{AFX_DATA(CDlgPgPosition)
  29. enum { IDD = IDD_PG_POSITION };
  30. float m_fBanking;
  31. float m_fHeading;
  32. float m_fPitch;
  33. float m_fX;
  34. float m_fY;
  35. float m_fZ;
  36. //}}AFX_DATA
  37. // Overrides
  38. // ClassWizard generate virtual function overrides
  39. //{{AFX_VIRTUAL(CDlgPgPosition)
  40. public:
  41. virtual BOOL PreTranslateMessage(MSG* pMsg);
  42. protected:
  43. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  44. //}}AFX_VIRTUAL
  45. // Implementation
  46. protected:
  47. // Generated message map functions
  48. //{{AFX_MSG(CDlgPgPosition)
  49. // NOTE: the ClassWizard will add member functions here
  50. //}}AFX_MSG
  51. DECLARE_MESSAGE_MAP()
  52. };
  53. #endif // DLGPGPOSITION_H