khanat-opennel-code/code/nel/tools/3d/tile_edit/Popup.cpp

47 lines
862 B
C++
Raw Normal View History

2010-05-06 00:08:41 +00:00
// Popup.cpp : implementation file
//
#include "stdafx.h"
#include "tile_edit.h"
#include "Popup.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// Popup
Popup::Popup()
{
}
Popup::~Popup()
{
}
LRESULT Popup::DefWindowProc(UINT message,WPARAM wParam,LPARAM lParam)
{
/* if (message==WM_INIT)
{
int toto = 0;
}*/
if (message==WM_PAINT)
{
int toto = 0;
}
return CWnd::DefWindowProc(message,wParam,lParam);
}
BEGIN_MESSAGE_MAP(Popup, CWnd)
//{{AFX_MSG_MAP(Popup)
// NOTE - the ClassWizard will add and remove mapping macros here.
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// Popup message handlers