This commit is contained in:
Daveo 2001-03-13 21:00:34 +00:00
parent 425713a3aa
commit c1309c1c96
44 changed files with 2193 additions and 1452 deletions

View file

@ -0,0 +1,47 @@
// GUIResize.cpp : implementation file
//
#include "stdafx.h"
#include "mapedit.h"
#include "GUIResize.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CGUIResize dialog
CGUIResize::CGUIResize(CWnd* pParent /*=NULL*/)
: CDialog(CGUIResize::IDD, pParent)
{
//{{AFX_DATA_INIT(CGUIResize)
m_Height = 0;
m_Width = 0;
//}}AFX_DATA_INIT
}
void CGUIResize::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CGUIResize)
DDX_Text(pDX, IDC_MAPSIZE_HEIGHT, m_Height);
DDV_MinMaxUInt(pDX, m_Height, 34, 1024);
DDX_Text(pDX, IDC_MAPSIZE_WIDTH, m_Width);
DDV_MinMaxUInt(pDX, m_Width, 24, 1024);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CGUIResize, CDialog)
//{{AFX_MSG_MAP(CGUIResize)
// NOTE: the ClassWizard will add message map macros here
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CGUIResize message handlers