Serious-Engine/Sources/GameGUIMP/DlgEditButtonAction.cpp

82 lines
2.6 KiB
C++
Raw Normal View History

2016-03-12 01:20:51 +01:00
/* 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. */
2016-03-11 14:57:17 +01:00
// DlgEditButtonAction.cpp : implementation file
//
#include "stdafx.h"
#ifdef _DEBUG
#undef new
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CDlgEditButtonAction dialog
CDlgEditButtonAction::CDlgEditButtonAction(CButtonAction *pbaButtonAction,
CWnd* pParent /*=NULL*/)
: CDialog(CDlgEditButtonAction::IDD, pParent)
{
// remember button action that is edited
m_pbaButtonAction = pbaButtonAction;
//{{AFX_DATA_INIT(CDlgEditButtonAction)
m_strButtonActionName = _T("");
m_strButtonDownCommand = _T("");
m_strButtonUpCommand = _T("");
//}}AFX_DATA_INIT
}
void CDlgEditButtonAction::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
// if dialog is recieving data
if( pDX->m_bSaveAndValidate == FALSE)
{
m_strButtonActionName = m_pbaButtonAction->ba_strName;
m_strButtonDownCommand = m_pbaButtonAction->ba_strCommandLineWhenPressed;
m_strButtonUpCommand = m_pbaButtonAction->ba_strCommandLineWhenReleased;
}
//{{AFX_DATA_MAP(CDlgEditButtonAction)
DDX_Text(pDX, IDC_BUTTON_ACTION_NAME, m_strButtonActionName);
DDX_Text(pDX, IDC_BUTTON_DOWN_COMMAND, m_strButtonDownCommand);
DDX_Text(pDX, IDC_BUTTON_UP_COMMAND, m_strButtonUpCommand);
//}}AFX_DATA_MAP
// if dialog is giving data
if( pDX->m_bSaveAndValidate != FALSE)
{
m_pbaButtonAction->ba_strName = m_strButtonActionName;
m_pbaButtonAction->ba_strCommandLineWhenPressed = m_strButtonDownCommand;
m_pbaButtonAction->ba_strCommandLineWhenReleased = m_strButtonUpCommand;
}
}
BEGIN_MESSAGE_MAP(CDlgEditButtonAction, CDialog)
//{{AFX_MSG_MAP(CDlgEditButtonAction)
// NOTE: the ClassWizard will add message map macros here
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CDlgEditButtonAction message handlers