Click here to Skip to main content
15,884,388 members
Articles / Programming Languages / C++

MyBasic - A Custom-BASIC language interpreter written in C++

Rate me:
Please Sign up or sign in to vote.
4.75/5 (18 votes)
12 Oct 2003 227.4K   4.5K   46  
A Custom-BASIC language interpreter written in C++
// MyBasicView.cpp : implementation of the CMyBasicView class
//

#include "stdafx.h"
#include "MyBasic.h"

#include "MyBasicDoc.h"
#include "MyBasicView.h"

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

/////////////////////////////////////////////////////////////////////////////
// CMyBasicView

IMPLEMENT_DYNCREATE(CMyBasicView, CHiliteEditView)

BEGIN_MESSAGE_MAP(CMyBasicView, CHiliteEditView)
	//{{AFX_MSG_MAP(CMyBasicView)
	//}}AFX_MSG_MAP
	// Standard printing commands
	ON_COMMAND(ID_FILE_PRINT, CHiliteEditView::OnFilePrint)
	ON_COMMAND(ID_FILE_PRINT_DIRECT, CHiliteEditView::OnFilePrint)
	ON_COMMAND(ID_FILE_PRINT_PREVIEW, CHiliteEditView::OnFilePrintPreview)
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CMyBasicView construction/destruction

CMyBasicView::CMyBasicView()
{
	// TODO: add construction code here

}

CMyBasicView::~CMyBasicView()
{
}

BOOL CMyBasicView::PreCreateWindow(CREATESTRUCT& cs)
{
	// TODO: Modify the Window class or styles here by modifying
	//  the CREATESTRUCT cs

	BOOL bPreCreated = CHiliteEditView::PreCreateWindow(cs);
	cs.style &= ~(ES_AUTOHSCROLL|WS_HSCROLL);	// Enable word-wrapping

	return bPreCreated;
}

/////////////////////////////////////////////////////////////////////////////
// CMyBasicView drawing

void CMyBasicView::OnDraw(CDC* pDC)
{
	CMyBasicDoc* pDoc = GetDocument();
	ASSERT_VALID(pDoc);
	// TODO: add draw code for native data here
}

/////////////////////////////////////////////////////////////////////////////
// CMyBasicView printing

BOOL CMyBasicView::OnPreparePrinting(CPrintInfo* pInfo)
{
	// default CHiliteEditView preparation
	return CHiliteEditView::OnPreparePrinting(pInfo);
}

void CMyBasicView::OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo)
{
	// Default CHiliteEditView begin printing.
	CHiliteEditView::OnBeginPrinting(pDC, pInfo);
}

void CMyBasicView::OnEndPrinting(CDC* pDC, CPrintInfo* pInfo)
{
	// Default CHiliteEditView end printing
	CHiliteEditView::OnEndPrinting(pDC, pInfo);
}

/////////////////////////////////////////////////////////////////////////////
// CMyBasicView diagnostics

#ifdef _DEBUG
void CMyBasicView::AssertValid() const
{
	CHiliteEditView::AssertValid();
}

void CMyBasicView::Dump(CDumpContext& dc) const
{
	CHiliteEditView::Dump(dc);
}

CMyBasicDoc* CMyBasicView::GetDocument() // non-debug version is inline
{
	ASSERT(m_pDocument->IsKindOf(RUNTIME_CLASS(CMyBasicDoc)));
	return (CMyBasicDoc*)m_pDocument;
}
#endif //_DEBUG

/////////////////////////////////////////////////////////////////////////////
// CMyBasicView message handlers

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 has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
China China
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions