sizecbar_demo.zip
SCBDemo
res
SCBDemo.ico
SCBDemoDoc.ico
Toolbar.bmp
SCBDemo.dsp
SCBDemo.dsw
SCBDemo2
res
SCBDemo.ico
SCBDemoDoc.ico
Toolbar.bmp
toolbar1.bmp
SCBDemo.dsp
SCBDemo.dsw
sizecbar_src.zip
Demo1
Demo1.dsp
Demo1.dsw
res
Demo1.ico
Demo1Doc.ico
Toolbar.bmp
Demo2
Demo2.dsp
Demo2.dsw
res
Demo2.ico
Demo2Doc.ico
Toolbar.bmp
toolbar1.bmp
src
|
// Demo2View.cpp : implementation of the CDemo2View class
//
#include "stdafx.h"
#include "Demo2.h"
#include "Demo2Doc.h"
#include "Demo2View.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CDemo2View
IMPLEMENT_DYNCREATE(CDemo2View, CEditView)
BEGIN_MESSAGE_MAP(CDemo2View, CEditView)
//{{AFX_MSG_MAP(CDemo2View)
// NOTE - the ClassWizard will add and remove mapping macros here.
// DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG_MAP
// Standard printing commands
ON_COMMAND(ID_FILE_PRINT, CEditView::OnFilePrint)
ON_COMMAND(ID_FILE_PRINT_DIRECT, CEditView::OnFilePrint)
ON_COMMAND(ID_FILE_PRINT_PREVIEW, CEditView::OnFilePrintPreview)
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CDemo2View construction/destruction
CDemo2View::CDemo2View()
{
// TODO: add construction code here
}
CDemo2View::~CDemo2View()
{
}
BOOL CDemo2View::PreCreateWindow(CREATESTRUCT& cs)
{
// TODO: Modify the Window class or styles here by modifying
// the CREATESTRUCT cs
BOOL bPreCreated = CEditView::PreCreateWindow(cs);
cs.style &= ~(ES_AUTOHSCROLL|WS_HSCROLL); // Enable word-wrapping
return bPreCreated;
}
/////////////////////////////////////////////////////////////////////////////
// CDemo2View drawing
void CDemo2View::OnDraw(CDC* pDC)
{
CDemo2Doc* pDoc = GetDocument();
ASSERT_VALID(pDoc);
// TODO: add draw code for native data here
}
/////////////////////////////////////////////////////////////////////////////
// CDemo2View printing
BOOL CDemo2View::OnPreparePrinting(CPrintInfo* pInfo)
{
// default CEditView preparation
return CEditView::OnPreparePrinting(pInfo);
}
void CDemo2View::OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo)
{
// Default CEditView begin printing.
CEditView::OnBeginPrinting(pDC, pInfo);
}
void CDemo2View::OnEndPrinting(CDC* pDC, CPrintInfo* pInfo)
{
// Default CEditView end printing
CEditView::OnEndPrinting(pDC, pInfo);
}
/////////////////////////////////////////////////////////////////////////////
// CDemo2View diagnostics
#ifdef _DEBUG
void CDemo2View::AssertValid() const
{
CEditView::AssertValid();
}
void CDemo2View::Dump(CDumpContext& dc) const
{
CEditView::Dump(dc);
}
CDemo2Doc* CDemo2View::GetDocument() // non-debug version is inline
{
ASSERT(m_pDocument->IsKindOf(RUNTIME_CLASS(CDemo2Doc)));
return (CDemo2Doc*)m_pDocument;
}
#endif //_DEBUG
/////////////////////////////////////////////////////////////////////////////
// CDemo2View message handlers
|
By viewing downloads associated with this article you agree to the Terms of use 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.
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