Click here to Skip to main content
15,878,953 members
Articles / Desktop Programming / MFC

StL Data File Viewer

Rate me:
Please Sign up or sign in to vote.
4.87/5 (43 votes)
5 Mar 2003CPOL2 min read 508.1K   14.7K   60  
A simple StereoLithography data file viewer.
// MaterialDlg.cpp : implementation file
//

#include "stdafx.h"
#include "StLViewer.h"
#include "MaterialDlg.h"

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

/////////////////////////////////////////////////////////////////////////////
// CMaterialDlg dialog


CMaterialDlg::CMaterialDlg(CWnd* pParent /*=NULL*/)
	: CDialog(CMaterialDlg::IDD, pParent)
{
	//{{AFX_DATA_INIT(CMaterialDlg)
		// NOTE: the ClassWizard will add member initialization here
	//}}AFX_DATA_INIT
}


void CMaterialDlg::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CMaterialDlg)
		// NOTE: the ClassWizard will add DDX and DDV calls here
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(CMaterialDlg, CDialog)
	//{{AFX_MSG_MAP(CMaterialDlg)
		// NOTE: the ClassWizard will add message map macros here
		ON_COMMAND_EX_RANGE(IDC_ALUM,IDC_BRUBBER, OnMaterial)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CMaterialDlg message handlers

void CMaterialDlg::OnMaterial(UINT nID)
{
	switch(nID)
	{
	case IDC_ALUM :
		m_Matl = ALUMINIUM;
		break;
	case IDC_BRASS :
		m_Matl = BRASS;
		break;
	case IDC_PBRONZE :
		m_Matl = P_BRONZE;
		break;
	case IDC_CHROME :
		m_Matl = CHROME;
		break;
	case IDC_PCOPPER :
		m_Matl = P_COPPER;
		break;
	case IDC_GOLD :
		m_Matl = GOLD;
		break;
	case IDC_PEWTER :
		m_Matl = PEWTER;
		break;
	case IDC_SILVER :
		m_Matl = SILVER;
		break;
	case IDC_STEEL :
		m_Matl = STEEL;
		break;
	case IDC_EMERALD :
		m_Matl = EMERALD;
		break;
	case IDC_OBSIDIAN :
		m_Matl = OBSIDIAN;
		break;
	case IDC_PEARL :
		m_Matl = PEARL;
		break;
	case IDC_TURQUOISE :
		m_Matl = TURQUOISE;
		break;
	case IDC_BPLASTIC :
		m_Matl = PLASTIC;
		break;
	case IDC_BRONZE :
		m_Matl = BRONZE;
		break;
	case IDC_COPPER :
		m_Matl = COPPER;
		break;
	case IDC_PGOLD :
		m_Matl = P_GOLD;
		break;
	case IDC_PSILVER :
		m_Matl = P_SILVER;
		break;
	case IDC_JADE :
		m_Matl = JADE;
		break;
	case IDC_RUBY :
		m_Matl = RUBY;
		break;
	case IDC_BRUBBER :
		m_Matl = RUBBER;
		break;
	default:
		m_Matl = JADE;
		break;
	}
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Product Manager Mahindra & Mahindra
India India
Sharjith is a Mechanical Engineer with strong passion for Automobiles, Aircrafts and Software development.

Comments and Discussions