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 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233
|
// vtkMFCRenderView.cpp : implementation file
//
#include "stdafx.h"
#include "vtkMFCRenderView.h"
#include "vtkMFCDocument.h"
#include "vtkRenderer.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// vtkMFCRenderView
IMPLEMENT_DYNCREATE(vtkMFCRenderView, vtkMFCView)
vtkMFCRenderView::vtkMFCRenderView()
{
this->Renderer = vtkRenderer::New();
this->RenderWindow = vtkWin32OpenGLRenderWindow::New();
this->RenderWindow->AddRenderer(this->Renderer);
this->Interactor = vtkWin32RenderWindowInteractor::New();
}
vtkMFCRenderView::~vtkMFCRenderView()
{
if (this->Interactor)
{
this->Interactor->Delete();
}
if (this->Renderer)
{
this->Renderer->SetRenderWindow(NULL);
}
if (this->RenderWindow)
{
this->RenderWindow->Delete();
}
if (this->Renderer)
{
this->Renderer->Delete();
}
}
BEGIN_MESSAGE_MAP(vtkMFCRenderView, vtkMFCView)
//{{AFX_MSG_MAP(vtkMFCRenderView)
ON_WM_CREATE()
ON_WM_SIZE()
//}}AFX_MSG_MAP
ON_COMMAND(ID_FILE_PRINT, vtkMFCRenderView::OnFilePrint)
ON_COMMAND(ID_FILE_PRINT_DIRECT, vtkMFCRenderView::OnFilePrint)
ON_COMMAND(ID_FILE_PRINT_PREVIEW, vtkMFCRenderView::OnFilePrintPreview)
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// vtkMFCRenderView drawing
void vtkMFCRenderView::OnDraw(CDC* pDC)
{
CDocument* pDoc = GetDocument();
ASSERT_VALID(pDoc);
if (!this->Interactor->GetInitialized())
{
this->Interactor->SetRenderWindow(this->RenderWindow);
WNDPROC OldProc = (WNDPROC)vtkGetWindowLong(this->m_hWnd,vtkGWL_WNDPROC);
this->Interactor->Initialize();
vtkSetWindowLong(this->m_hWnd,vtkGWL_WNDPROC,(vtkLONG)OldProc);
}
// TODO: add draw code for native data here
if (pDC->IsPrinting())
{
int size[2];
float scale;
BeginWaitCursor();
memcpy(size,this->RenderWindow->GetSize(),sizeof(int)*2);
int cxDIB = size[0]; // Size of DIB - x
int cyDIB = size[1]; // Size of DIB - y
CRect rcDest;
// get size of printer page (in pixels)
int cxPage = pDC->GetDeviceCaps(HORZRES);
int cyPage = pDC->GetDeviceCaps(VERTRES);
// get printer pixels per inch
int cxInch = pDC->GetDeviceCaps(LOGPIXELSX);
int cyInch = pDC->GetDeviceCaps(LOGPIXELSY);
scale = cxInch/this->GetPrintDPI();
//
// Best Fit case -- create a rectangle which preserves
// the DIB's aspect ratio, and fills the page horizontally.
//
// The formula in the "->bottom" field below calculates the Y
// position of the printed bitmap, based on the size of the
// bitmap, the width of the page, and the relative size of
// a printed pixel (cyInch / cxInch).
//
rcDest.bottom = rcDest.left = 0;
if (((float)cyDIB*(float)cxPage/(float)cxInch) >
((float)cxDIB*(float)cyPage/(float)cyInch))
{
rcDest.top = cyPage;
rcDest.right = ((float)(cyPage*cxInch*cxDIB)) /
((float)(cyInch*cyDIB));
}
else
{
rcDest.right = cxPage;
rcDest.top = ((float)(cxPage*cyInch*cyDIB)) /
((float)(cxInch*cxDIB));
}
CRect rcDestLP(rcDest);
pDC->DPtoLP(rcDestLP);
int DPI = this->RenderWindow->GetDPI();
this->RenderWindow->SetupMemoryRendering(rcDest.right/scale,
rcDest.top/scale,
pDC->m_hAttribDC);
this->RenderWindow->Render();
pDC->SetStretchBltMode(HALFTONE);
StretchBlt(pDC->GetSafeHdc(),0,0,
rcDest.right, rcDest.top,
this->RenderWindow->GetMemoryDC(),
0, 0, rcDest.right/scale, rcDest.top/scale, SRCCOPY);
this->RenderWindow->ResumeScreenRendering();
EndWaitCursor();
}
else
{
this->RenderWindow->Render();
}
CView::OnDraw(pDC);
}
/////////////////////////////////////////////////////////////////////////////
// vtkMFCRenderView diagnostics
#ifdef _DEBUG
void vtkMFCRenderView::AssertValid() const
{
CView::AssertValid();
}
void vtkMFCRenderView::Dump(CDumpContext& dc) const
{
CView::Dump(dc);
}
#endif //_DEBUG
/////////////////////////////////////////////////////////////////////////////
// vtkMFCRenderView message handlers
int vtkMFCRenderView::OnCreate(LPCREATESTRUCT lpCreateStruct)
{
if (vtkMFCView::OnCreate(lpCreateStruct) == -1)
return -1;
// TODO: Add your specialized creation code here
this->RenderWindow->SetParentId(lpCreateStruct->hwndParent);
return 0;
}
void vtkMFCRenderView::OnInitialUpdate()
{
vtkMFCView::OnInitialUpdate();
// TODO: Add your specialized creation code here
this->RenderWindow->SetWindowId(this->m_hWnd);
this->RenderWindow->WindowInitialize();
}
// Define our own event handler here
LRESULT vtkMFCRenderView::WindowProc(UINT message, WPARAM wParam, LPARAM lParam)
{
switch (message)
{
//case WM_PAINT:
case WM_LBUTTONDOWN:
case WM_LBUTTONUP:
case WM_MBUTTONDOWN:
case WM_MBUTTONUP:
case WM_RBUTTONDOWN:
case WM_RBUTTONUP:
case WM_MOUSEMOVE:
case WM_MOUSEWHEEL:
case WM_CHAR:
case WM_TIMER:
if (this->Interactor->GetInitialized())
{
return vtkHandleMessage2(this->m_hWnd, message, wParam, lParam,
this->Interactor);
}
break;
}
return vtkMFCView::WindowProc(message, wParam, lParam);
}
void vtkMFCRenderView::OnSize(UINT nType, int cx, int cy)
{
vtkMFCView::OnSize(nType, cx, cy);
// TODO: Add your message handler code here
if (this->Interactor->GetInitialized())
{
this->Interactor->SetSize(cx,cy);
}
}
BOOL vtkMFCRenderView::OnPreparePrinting(CPrintInfo* pInfo)
{
// TODO: call DoPreparePrinting to invoke the Print dialog box
// default preparation
pInfo->SetMinPage(1);
pInfo->SetMaxPage(1);
return DoPreparePrinting(pInfo);
}
|