www.pudn.com > partsumhist.rar > cred.cpp
// cred.cpp : implementation file
//
#include "stdafx.h"
#include "practice.h"
#include "cred.h"
#include "HSI.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
extern RGB* g_pImgBuffer;
extern int g_nMapHeight;
extern int g_nMapWidth;
extern FLAGS* g_pFlags;
/////////////////////////////////////////////////////////////////////////////
// cred dialog
cred::cred(CWnd* pParent /*=NULL*/)
: CDialog(cred::IDD, pParent)
{
//{{AFX_DATA_INIT(cred)
// NOTE: the ClassWizard will add member initialization here
//}}AFX_DATA_INIT
}
void cred::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(cred)
// NOTE: the ClassWizard will add DDX and DDV calls here
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(cred, CDialog)
//{{AFX_MSG_MAP(cred)
ON_BN_CLICKED(IDC_RADIO1, Onred)
ON_BN_CLICKED(IDC_RADIO2, Ongreen)
ON_BN_CLICKED(IDC_RADIO3, Onblue)
ON_BN_CLICKED(IDC_RADIO4, Onmean)
ON_BN_CLICKED(IDC_RADIO5, Onsumhist)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// cred message handlers
void cred::Onred()
{
// TODO: Add your control notification handler code here
}
void cred::Ongreen()
{
// TODO: Add your control notification handler code here
}
void cred::Onblue()
{
// TODO: Add your control notification handler code here
}
void cred::Onmean()
{
// TODO: Add your control notification handler code here
}
void cred::Onsumhist()
{
// TODO: Add your control notification handler code here
}