mycoorddlgbar.h
上传用户:cding2008
上传日期:2007-01-03
资源大小:1812k
文件大小:2k
源码类别:

OpenGL

开发平台:

Visual C++

  1. /////////////////////////////////////////////////////////////////////////////
  2. // CMyCoordDlgBar.h : header file; interface of the CMyDoc class
  3. //
  4. // ModelMagic 3D and 'glOOP' (OpenGL Object Oriented Programming library)
  5. // Copyright (c) Craig Fahrnbach 1997, 1999
  6. //
  7. // OpenGL is a registered trademark of Silicon Graphics
  8. //
  9. //
  10. // This program is provided for educational and personal use only and
  11. // is provided without guarantee or warrantee expressed or implied.
  12. //
  13. // Commercial use is strickly prohibited without written permission
  14. // from ImageWare Development.
  15. //
  16. /////////////////////////////////////////////////////////////////////////////
  17. #include "MyCoordPagePosition.h"
  18. #include "MyCoordPageRotation.h"
  19. #include "MyCoordPageTranslate.h"
  20. #include "MyCoordPageScale.h"
  21. #include "MyCoordPropSheet.h"
  22. /////////////////////////////////////////////////////////////////////////////
  23. // CMyCoordDlgBar dialog
  24. class CMyCoordDlgBar : public CDialogBar
  25. {
  26. // Construction
  27. public:
  28. void UpdateDialogData();
  29. CMyCoordDlgBar();
  30. ~CMyCoordDlgBar();
  31. BOOL Create( CWnd* pParentWnd, UINT nIDTemplate, UINT nStyle,
  32.  UINT nID, BOOL bChange);
  33. BOOL Create( CWnd* pParentWnd, LPCTSTR lpszTemplateName,
  34.  UINT nStyle, UINT nID, BOOL bChange);
  35. // Operations
  36. public:
  37. // Dialog Data
  38. //{{AFX_DATA(CMyCoordDlgBar)
  39. enum { IDD = IDD_DIALOG_COORDINATE };
  40. //}}AFX_DATA
  41. // Attributes
  42. public:
  43. CMyCoordPropSheet m_CoordPropSheet;
  44. CSize m_sizeDocked;
  45. CSize m_sizeFloating;
  46. BOOL m_bChangeDockedSize; // Indicates whether to keep
  47. // a default size for docking
  48.  
  49. // Overrides
  50. // ClassWizard generated virtual function overrides
  51. //{{AFX_VIRTUAL(CMyCoordDlgBar)
  52. //}}AFX_VIRTUAL
  53. virtual CSize CalcDynamicLayout( int nLength, DWORD dwMode );
  54.  
  55. // Implementation
  56. private:
  57. // Generated message map functions
  58. protected:
  59.     //{{AFX_MSG(CMyCoordDlgBar)
  60. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  61. afx_msg void OnDestroy();
  62. //}}AFX_MSG
  63.     DECLARE_MESSAGE_MAP()
  64. // User defined messages
  65. long OnChangeCoordPage(WPARAM wParam, LPARAM lParam);
  66. long OnUpdateCoordPage(WPARAM wParam, LPARAM lParam);
  67. };
  68.  
  69. /////////////////////////////////////////////////////////////////////////////