3dPageTranslate.cpp
资源名称:gloop.zip [点击查看]
上传用户:shxiangxiu
上传日期:2007-01-03
资源大小:1101k
文件大小:3k
源码类别:
OpenGL
开发平台:
Visual C++
- /////////////////////////////////////////////////////////////////////////////
- // 3dPageTranslate.cpp : implementation file
- //
- // glOOP (OpenGL Object Oriented Programming library)
- // Copyright (c) Craig Fahrnbach 1997, 1998
- //
- // OpenGL is a registered trademark of Silicon Graphics
- //
- //
- // This program is provided for educational and personal use only and
- // is provided without guarantee or warrantee expressed or implied.
- //
- // Commercial use is strickly prohibited without written permission
- // from ImageWare Development.
- //
- // This program is -not- in the public domain.
- //
- /////////////////////////////////////////////////////////////////////////////
- #include "stdafx.h"
- #include "glOOP.h"
- #include "3dObjectDialog.h"
- #ifdef _DEBUG
- #undef THIS_FILE
- static char BASED_CODE THIS_FILE[] = __FILE__;
- #endif
- //////////////////////////////////////////////////////////////////
- // C3dPageTranslate
- IMPLEMENT_DYNCREATE(C3dPageTranslate, CPropertyPage)
- /////////////////////////////////////////////////////////////////////////////
- // C3dPageTranslate dialog construction
- C3dPageTranslate::C3dPageTranslate()
- : CPropertyPage(C3dPageTranslate::IDD)
- {
- //{{AFX_DATA_INIT(C3dPageTranslate)
- m_fTranslateX = 0.0f;
- m_fTranslateY = 0.0f;
- m_fTranslateZ = 0.0f;
- //}}AFX_DATA_INIT
- }
- /////////////////////////////////////////////////////////////////////////////
- // C3dPageTranslate Destructor
- C3dPageTranslate::~C3dPageTranslate()
- {
- }
- void C3dPageTranslate::DoDataExchange(CDataExchange* pDX)
- {
- CPropertyPage::DoDataExchange(pDX);
- //{{AFX_DATA_MAP(C3dPageTranslate)
- DDX_Text(pDX, IDC_X_AXIS, m_fTranslateX);
- DDX_Text(pDX, IDC_Y_AXIS, m_fTranslateY);
- DDX_Text(pDX, IDC_Z_AXIS, m_fTranslateZ);
- //}}AFX_DATA_MAP
- }
- BEGIN_MESSAGE_MAP(C3dPageTranslate, CPropertyPage)
- //{{AFX_MSG_MAP(C3dPageTranslate)
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
- /////////////////////////////////////////////////////////////////////////////
- // C3dPageTranslate message handlers
- BOOL C3dPageTranslate::OnInitDialog()
- {
- // Set our local values to the Objects' values
- m_fTranslateX = m_pObject->m_fTranslate[0];
- m_fTranslateY = m_pObject->m_fTranslate[1];
- m_fTranslateZ = m_pObject->m_fTranslate[2];
- CPropertyPage::OnInitDialog(); // let the base class do the default work
- return TRUE; // return TRUE unless you set the focus to a control
- // EXCEPTION: OCX Property Pages should return FALSE
- }
- void C3dPageTranslate::OnOK()
- {
- // Dialog box is being initialized (FALSE)
- // or data is being retrieved (TRUE).
- UpdateData(TRUE);
- // Set the Objects Translate..
- m_pObject->m_fTranslate[0] = m_fTranslateX;
- m_pObject->m_fTranslate[1] = m_fTranslateY;
- m_pObject->m_fTranslate[2] = m_fTranslateZ;
- // Force the object to rebuild its' display list
- m_pObject->m_bBuildLists = TRUE;
- CPropertyPage::OnOK();
- }