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

OpenGL

开发平台:

Visual C++

  1. /////////////////////////////////////////////////////////////////////////////
  2. // CMyTreeDlgBar.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. /////////////////////////////////////////////////////////////////////////////
  18. // CMyTreeDlgBar dialog
  19. class CMyTreeDlgBar : public CDialogBar
  20. {
  21. // Construction
  22. public:
  23. BOOL Create( CWnd* pParentWnd, UINT nStyle, UINT nID, BOOL bChange = TRUE);
  24. // Operations
  25. public:
  26. void DisplayTree(C3dWorld* pWorld);
  27. void ClearTree();
  28. void InsertObject(C3dObject* pObject);
  29. HTREEITEM FindObject(C3dObject* pObject);
  30. void SelectItem(HTREEITEM hItem);
  31. void DisplaySelected(C3dObject* pObject);
  32. // Dialog Data
  33. //{{AFX_DATA(CMyTreeDlgBar)
  34. enum { IDD = IDD_DIALOG_TREE };
  35. //}}AFX_DATA
  36. // Attributes
  37. public:
  38. CMyTreeCtrl m_TreeCtrl;
  39. CSize m_sizeDocked;
  40. CSize m_sizeFloating;
  41. BOOL m_bChangeDockedSize; // Indicates whether to keep
  42. // a default size for docking
  43.  
  44. // Overrides
  45. // ClassWizard generated virtual function overrides
  46. //{{AFX_VIRTUAL(CMyTreeDlgBar)
  47. //}}AFX_VIRTUAL
  48. virtual CSize CalcDynamicLayout( int nLength, DWORD dwMode );
  49.  
  50. // Implementation
  51. private:
  52. // Generated message map functions
  53. protected:
  54.     //{{AFX_MSG(CMyTreeDlgBar)
  55. afx_msg void OnSize(UINT nType, int cx, int cy);
  56. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  57. afx_msg void OnDestroy();
  58. afx_msg void OnPaint();
  59. //}}AFX_MSG
  60.     DECLARE_MESSAGE_MAP()
  61. // User defined messages
  62. };
  63.