mirror of
https://github.com/ptitSeb/Serious-Engine
synced 2024-11-22 18:30:27 +01:00
82 lines
2.0 KiB
C++
82 lines
2.0 KiB
C++
/* Copyright (c) 2002-2012 Croteam Ltd.
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of version 2 of the GNU General Public License as published by
|
|
the Free Software Foundation
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License along
|
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */
|
|
|
|
// DChooseAnim.cpp : implementation file
|
|
//
|
|
|
|
#include "stdafx.h"
|
|
|
|
#ifdef _DEBUG
|
|
#undef new
|
|
#define new DEBUG_NEW
|
|
#undef THIS_FILE
|
|
static char THIS_FILE[] = __FILE__;
|
|
#endif
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CDChooseAnim dialog
|
|
|
|
|
|
CDChooseAnim::CDChooseAnim(CAnimObject *pAO, CWnd* pParent /*=NULL*/)
|
|
: CDialog(CDChooseAnim::IDD, pParent)
|
|
{
|
|
m_pAnimObject = pAO;
|
|
}
|
|
|
|
|
|
void CDChooseAnim::DoDataExchange(CDataExchange* pDX)
|
|
{
|
|
CDialog::DoDataExchange(pDX);
|
|
|
|
//{{AFX_DATA_MAP(CDChooseAnim)
|
|
DDX_Control(pDX, IDC_LIST1, m_ListBox);
|
|
//}}AFX_DATA_MAP
|
|
|
|
// if initializing data
|
|
if (!pDX->m_bSaveAndValidate)
|
|
{
|
|
CAnimInfo aiInfo;
|
|
for( INDEX i=0; i<m_pAnimObject->GetAnimsCt(); i++)
|
|
{
|
|
m_pAnimObject->GetAnimInfo( i, aiInfo);
|
|
m_ListBox.AddString(CString(aiInfo.ai_AnimName));
|
|
}
|
|
}
|
|
else
|
|
{
|
|
int iSelection=m_ListBox.GetCurSel();
|
|
// if valid selection
|
|
if (iSelection!=LB_ERR)
|
|
{
|
|
m_pAnimObject->SetAnim( iSelection);
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
BEGIN_MESSAGE_MAP(CDChooseAnim, CDialog)
|
|
//{{AFX_MSG_MAP(CDChooseAnim)
|
|
ON_LBN_DBLCLK(IDC_LIST1, OnDblclkList1)
|
|
//}}AFX_MSG_MAP
|
|
END_MESSAGE_MAP()
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CDChooseAnim message handlers
|
|
|
|
void CDChooseAnim::OnDblclkList1()
|
|
{
|
|
CDialog::OnOK();
|
|
}
|