File: IntensityDlg.cpp

package info (click to toggle)
paintlib 2.6.2-14
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 7,920 kB
  • ctags: 3,874
  • sloc: cpp: 25,209; sh: 10,605; ansic: 1,891; makefile: 120
file content (47 lines) | stat: -rw-r--r-- 1,083 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
// IntensityDlg.cpp : implementation file
//

#include "stdafx.h"
#include "piclook.h"
#include "IntensityDlg.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CIntensityDlg dialog


CIntensityDlg::CIntensityDlg(CWnd* pParent /*=NULL*/)
	: CDialog(CIntensityDlg::IDD, pParent)
{
	//{{AFX_DATA_INIT(CIntensityDlg)
	m_Exponent = 0.0;
	m_Intensity = 0.0;
	m_Offset = 0;
	//}}AFX_DATA_INIT
}


void CIntensityDlg::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CIntensityDlg)
	DDX_Text(pDX, IDC_EXPONENTEDIT, m_Exponent);
	DDX_Text(pDX, IDC_INTENSITYEDIT, m_Intensity);
	DDX_Text(pDX, IDC_OFFSETEDIT, m_Offset);
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(CIntensityDlg, CDialog)
	//{{AFX_MSG_MAP(CIntensityDlg)
		// NOTE: the ClassWizard will add message map macros here
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CIntensityDlg message handlers