mirror of
https://github.com/celisej567/source-engine.git
synced 2026-01-03 05:49:41 +03:00
1
This commit is contained in:
56
hammer/editpathnodedlg.cpp
Normal file
56
hammer/editpathnodedlg.cpp
Normal file
@@ -0,0 +1,56 @@
|
||||
//========= Copyright Valve Corporation, All rights reserved. ============//
|
||||
//
|
||||
// Purpose:
|
||||
//
|
||||
// $NoKeywords: $
|
||||
//
|
||||
//=============================================================================//
|
||||
// EditPathNodeDlg.cpp : implementation file
|
||||
//
|
||||
|
||||
#include "stdafx.h"
|
||||
#include "hammer.h"
|
||||
#include "EditPathNodeDlg.h"
|
||||
|
||||
// memdbgon must be the last include file in a .cpp file!!!
|
||||
#include <tier0/memdbgon.h>
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// CEditPathNodeDlg dialog
|
||||
|
||||
|
||||
CEditPathNodeDlg::CEditPathNodeDlg(CWnd* pParent /*=NULL*/)
|
||||
: CDialog(CEditPathNodeDlg::IDD, pParent)
|
||||
{
|
||||
//{{AFX_DATA_INIT(CEditPathNodeDlg)
|
||||
m_bRetrigger = FALSE;
|
||||
m_iSpeed = 0;
|
||||
m_iWait = 0;
|
||||
m_iYawSpeed = 0;
|
||||
m_strName = _T("");
|
||||
//}}AFX_DATA_INIT
|
||||
}
|
||||
|
||||
|
||||
void CEditPathNodeDlg::DoDataExchange(CDataExchange* pDX)
|
||||
{
|
||||
CDialog::DoDataExchange(pDX);
|
||||
//{{AFX_DATA_MAP(CEditPathNodeDlg)
|
||||
DDX_Check(pDX, IDC_RETRIGGER, m_bRetrigger);
|
||||
DDX_Text(pDX, IDC_SPEED, m_iSpeed);
|
||||
DDX_Text(pDX, IDC_PCWAIT, m_iWait);
|
||||
DDX_Text(pDX, IDC_YAWSPEED, m_iYawSpeed);
|
||||
DDX_Text(pDX, IDC_NAME, m_strName);
|
||||
DDV_MaxChars(pDX, m_strName, 64);
|
||||
//}}AFX_DATA_MAP
|
||||
}
|
||||
|
||||
|
||||
BEGIN_MESSAGE_MAP(CEditPathNodeDlg, CDialog)
|
||||
//{{AFX_MSG_MAP(CEditPathNodeDlg)
|
||||
// NOTE: the ClassWizard will add message map macros here
|
||||
//}}AFX_MSG_MAP
|
||||
END_MESSAGE_MAP()
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// CEditPathNodeDlg message handlers
|
||||
Reference in New Issue
Block a user