3dPageScale.cpp
资源名称:gloop.zip [点击查看]
上传用户:shxiangxiu
上传日期:2007-01-03
资源大小:1101k
文件大小:3k
源码类别:
OpenGL
开发平台:
Visual C++
- /////////////////////////////////////////////////////////////////////////////
- // 3dPageScale.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
- //////////////////////////////////////////////////////////////////
- // C3dPageScale
- IMPLEMENT_DYNCREATE(C3dPageScale, CPropertyPage)
- /////////////////////////////////////////////////////////////////////////////
- // C3dPageScale dialog construction
- C3dPageScale::C3dPageScale()
- : CPropertyPage(C3dPageScale::IDD)
- {
- //{{AFX_DATA_INIT(C3dPageScale)
- m_fScaleX = 0.0f;
- m_fScaleY = 0.0f;
- m_fScaleZ = 0.0f;
- //}}AFX_DATA_INIT
- }
- /////////////////////////////////////////////////////////////////////////////
- // C3dPageScale Destructor
- C3dPageScale::~C3dPageScale()
- {
- }
- void C3dPageScale::DoDataExchange(CDataExchange* pDX)
- {
- CPropertyPage::DoDataExchange(pDX);
- //{{AFX_DATA_MAP(C3dPageScale)
- DDX_Text(pDX, IDC_X_AXIS, m_fScaleX);
- DDX_Text(pDX, IDC_Y_AXIS, m_fScaleY);
- DDX_Text(pDX, IDC_Z_AXIS, m_fScaleZ);
- //}}AFX_DATA_MAP
- }
- BEGIN_MESSAGE_MAP(C3dPageScale, CPropertyPage)
- //{{AFX_MSG_MAP(C3dPageScale)
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
- /////////////////////////////////////////////////////////////////////////////
- // C3dPageScale message handlers
- BOOL C3dPageScale::OnInitDialog()
- {
- // Set our local values to the Objects' values
- m_fScaleX = m_pObject->m_fScale[0];
- m_fScaleY = m_pObject->m_fScale[1];
- m_fScaleZ = m_pObject->m_fScale[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 C3dPageScale::OnOK()
- {
- // Dialog box is being initialized (FALSE)
- // or data is being retrieved (TRUE).
- UpdateData(TRUE);
- // Set the Objects Scale..
- m_pObject->m_fScale[0] = m_fScaleX;
- m_pObject->m_fScale[1] = m_fScaleY;
- m_pObject->m_fScale[2] = m_fScaleZ;
- // Force the object to rebuild its' display list
- m_pObject->m_bBuildLists = TRUE;
- CPropertyPage::OnOK();
- }