3dPageHSpline.cpp
资源名称:gloop.zip [点击查看]
上传用户:shxiangxiu
上传日期:2007-01-03
资源大小:1101k
文件大小:3k
源码类别:
OpenGL
开发平台:
Visual C++
- /////////////////////////////////////////////////////////////////////////////
- // 3dPageHSpline.cpp : implementation file
- //
- // glOOP (OpenGL Object Oriented Programming library)
- // Copyright (c) Craig Fahrnbach 1997, 1998
- //
- // OpenGL is a registered trademark of Silicon Graphics
- //
- //
- // HSplines by Joe Dart, 1999
- //
- // ???? this ok? ** Modify as necessary **
- //
- // 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
- //////////////////////////////////////////////////////////////////
- // C3dPageHSpline
- IMPLEMENT_DYNCREATE(C3dPageHSpline, CPropertyPage)
- /////////////////////////////////////////////////////////////////////////////
- // C3dPageHSpline dialog construction
- C3dPageHSpline::C3dPageHSpline()
- : CPropertyPage(C3dPageHSpline::IDD)
- {
- //{{AFX_DATA_INIT(C3dPageHSpline)
- m_szName = _T("");
- //}}AFX_DATA_INIT
- }
- /////////////////////////////////////////////////////////////////////////////
- // C3dPageHSpline Destructor
- C3dPageHSpline::~C3dPageHSpline()
- {
- }
- void C3dPageHSpline::DoDataExchange(CDataExchange* pDX)
- {
- CPropertyPage::DoDataExchange(pDX);
- //{{AFX_DATA_MAP(C3dPageHSpline)
- DDX_Text(pDX, IDC_NAME, m_szName);
- DDV_MaxChars(pDX, m_szName, 40);
- //}}AFX_DATA_MAP
- }
- BEGIN_MESSAGE_MAP(C3dPageHSpline, CPropertyPage)
- //{{AFX_MSG_MAP(C3dPageHSpline)
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
- /////////////////////////////////////////////////////////////////////////////
- // C3dPageHSpline message handlers
- BOOL C3dPageHSpline::OnInitDialog()
- {
- // Set our local values to the Objects' values
- m_szName = m_pObject->m_szName;
- //****************************************************
- // Add your property page initialization here
- //****************************************************
- 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 C3dPageHSpline::OnOK()
- {
- // Dialog box is being initialized (FALSE)
- // or data is being retrieved (TRUE).
- UpdateData(TRUE);
- // Set our Objects' values to the local values
- m_pObject->m_szName = m_szName;
- //****************************************************
- // Add your code to save the property sheet variables
- // back to the object here
- //****************************************************
- // Force the object to rebuild its' display list
- m_pObject->m_bBuildLists = TRUE;
- CPropertyPage::OnOK();
- }