DlgTeapotSet.cpp
上传用户:eehhbb
上传日期:2022-08-03
资源大小:2550k
文件大小:2k
源码类别:

OpenGL

开发平台:

Visual C++

  1. // DlgTeapotSet.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "jhy3d.h"
  5. #include "DlgTeapotSet.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CDlgTeapotSet dialog
  13. CDlgTeapotSet::CDlgTeapotSet(CWnd* pParent /*=NULL*/)
  14. : CDialog(CDlgTeapotSet::IDD, pParent)
  15. {
  16. //{{AFX_DATA_INIT(CDlgTeapotSet)
  17. m_dlg_Ambient0 = _T("0.5");
  18. m_dlg_Ambient1 = _T("0");
  19. m_dlg_Ambient2 = _T("0");
  20. m_dlg_Diffuse0 = _T("0.8");
  21. m_dlg_Diffuse1 = _T("0");
  22. m_dlg_Diffuse2 = _T("0");
  23. m_dlg_Specular0 = _T("0");
  24. m_dlg_Specular1 = _T("0");
  25. m_dlg_Specular2 = _T("0");
  26. m_dlg_Emission0 = _T("0.5");
  27. m_dlg_Emission1 = _T("0");
  28. m_dlg_Emission2 = _T("0");
  29. m_dlg_Shininess = _T("0");
  30. m_teapot_tx = 0.0f;
  31. m_teapot_ty = 0.0f;
  32. m_teapot_tz = 0.0f;
  33. m_teapot_radius = 0.5f;
  34. //}}AFX_DATA_INIT
  35. }
  36. void CDlgTeapotSet::DoDataExchange(CDataExchange* pDX)
  37. {
  38. CDialog::DoDataExchange(pDX);
  39. //{{AFX_DATA_MAP(CDlgTeapotSet)
  40. DDX_CBString(pDX, IDC_COMBO1, m_dlg_Ambient0);
  41. DDX_CBString(pDX, IDC_COMBO2, m_dlg_Ambient1);
  42. DDX_CBString(pDX, IDC_COMBO3, m_dlg_Ambient2);
  43. DDX_CBString(pDX, IDC_COMBO5, m_dlg_Diffuse0);
  44. DDX_CBString(pDX, IDC_COMBO6, m_dlg_Diffuse1);
  45. DDX_CBString(pDX, IDC_COMBO7, m_dlg_Diffuse2);
  46. DDX_CBString(pDX, IDC_COMBO9, m_dlg_Specular0);
  47. DDX_CBString(pDX, IDC_COMBO10, m_dlg_Specular1);
  48. DDX_CBString(pDX, IDC_COMBO11, m_dlg_Specular2);
  49. DDX_CBString(pDX, IDC_COMBO13, m_dlg_Emission0);
  50. DDX_CBString(pDX, IDC_COMBO14, m_dlg_Emission1);
  51. DDX_CBString(pDX, IDC_COMBO15, m_dlg_Emission2);
  52. DDX_CBString(pDX, IDC_COMBO17, m_dlg_Shininess);
  53. DDX_Text(pDX, IDC_EDIT1, m_teapot_tx);
  54. DDX_Text(pDX, IDC_EDIT2, m_teapot_ty);
  55. DDX_Text(pDX, IDC_EDIT3, m_teapot_tz);
  56. DDX_Text(pDX, IDC_EDIT4, m_teapot_radius);
  57. //}}AFX_DATA_MAP
  58. }
  59. BEGIN_MESSAGE_MAP(CDlgTeapotSet, CDialog)
  60. //{{AFX_MSG_MAP(CDlgTeapotSet)
  61. // NOTE: the ClassWizard will add message map macros here
  62. //}}AFX_MSG_MAP
  63. END_MESSAGE_MAP()
  64. /////////////////////////////////////////////////////////////////////////////
  65. // CDlgTeapotSet message handlers