// ====================================================================== // // T_appView.cpp : implementation of the CUsbappView class // #include "stdafx.h" #include "Test_app.h" #include "T_appDoc.h" #include "T_appView.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __FILE__; #endif // ======================================================================= // CUsbappView IMPLEMENT_DYNCREATE(CUsbappView, CView) BEGIN_MESSAGE_MAP(CUsbappView, CView) //{{AFX_MSG_MAP(CUsbappView) // 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, CView::OnFilePrint) ON_COMMAND(ID_FILE_PRINT_DIRECT, CView::OnFilePrint) ON_COMMAND(ID_FILE_PRINT_PREVIEW, CView::OnFilePrintPreview) END_MESSAGE_MAP() // ======================================================================= // CUsbappView construction/destruction CUsbappView::CUsbappView() { // TODO: add construction code here } CUsbappView::~CUsbappView() { } BOOL CUsbappView::PreCreateWindow(CREATESTRUCT& cs) { // TODO: Modify the Window class or styles here by modifying // the CREATESTRUCT cs return CView::PreCreateWindow(cs); } // ======================================================================= // CUsbappView drawing void CUsbappView::OnDraw(CDC* pDC) { CUsbappDoc* pDoc = GetDocument(); ASSERT_VALID(pDoc); // TODO: add draw code for native data here } // ======================================================================= // CUsbappView printing BOOL CUsbappView::OnPreparePrinting(CPrintInfo* pInfo) { // default preparation return DoPreparePrinting(pInfo); } void CUsbappView::OnBeginPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/) { // TODO: add extra initialization before printing } void CUsbappView::OnEndPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/) { // TODO: add cleanup after printing } // ======================================================================= // CUsbappView diagnostics #ifdef _DEBUG void CUsbappView::AssertValid() const { CView::AssertValid(); } void CUsbappView::Dump(CDumpContext& dc) const { CView::Dump(dc); } CUsbappDoc* CUsbappView::GetDocument() // non-debug version is inline { ASSERT(m_pDocument->IsKindOf(RUNTIME_CLASS(CUsbappDoc))); return (CUsbappDoc*)m_pDocument; } #endif //_DEBUG // ======================================================================= // CUsbappView message handlers