khanat-opennel-code/code/nel/tools/3d/object_viewer/edit_follow_path.cpp

74 lines
2 KiB
C++
Raw Normal View History

2010-05-06 00:08:41 +00:00
// edit_follow_path.cpp : implementation file
//
#include "std_afx.h"
#include "object_viewer.h"
#include "edit_follow_path.h"
#include "popup_notify.h"
#include "nel/3d/ps_plane_basis_maker.h"
/////////////////////////////////////////////////////////////////////////////
// CEditFollowPath dialog
CEditFollowPath::CEditFollowPath(NL3D::CPSPlaneBasisFollowSpeed *pbfs, CParticleWorkspace::CNode *ownerNode, CWnd* pParent, IPopupNotify *pn)
: CDialog(CEditFollowPath::IDD, pParent), _Node(ownerNode), _PN(pn)
{
nlassert(pbfs);
_FollowPath = pbfs;
//{{AFX_DATA_INIT(CEditFollowPath)
// NOTE: the ClassWizard will add member initialization here
//}}AFX_DATA_INIT
}
void CEditFollowPath::init(CWnd *pParent)
{
CDialog::Create(CEditFollowPath::IDD, pParent);
ShowWindow(SW_SHOW);
}
void CEditFollowPath::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CEditFollowPath)
// NOTE: the ClassWizard will add DDX and DDV calls here
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CEditFollowPath, CDialog)
//{{AFX_MSG_MAP(CEditFollowPath)
ON_WM_CLOSE()
ON_CBN_SELCHANGE(IDC_PROJECTION_MODE, OnSelchangeProjectionMode)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CEditFollowPath message handlers
BOOL CEditFollowPath::OnInitDialog()
{
CDialog::OnInitDialog();
nlassert(_FollowPath);
((CComboBox *) GetDlgItem(IDC_PROJECTION_MODE))->SetCurSel((int) _FollowPath->getProjectionPlane());
return TRUE; // return TRUE unless you set the focus to a control
// EXCEPTION: OCX Property Pages should return FALSE
}
void CEditFollowPath::OnClose()
{
CDialog::OnClose();
if (_PN) _PN->childPopupClosed(this);
}
void CEditFollowPath::OnSelchangeProjectionMode()
{
nlassert(_FollowPath);
int index= ((CComboBox *) GetDlgItem(IDC_PROJECTION_MODE))->GetCurSel();
_FollowPath->setProjectionPlane((NL3D::CPSPlaneBasisFollowSpeed::TProjectionPlane) index);
if (_Node) _Node->setModified(true);
}