Update-Installer/external/win32cpp/tutorials/Tutorial5/View.cpp
Robert Knight d16da069e9 Add Win++ library to external
This is a thin wrapper around the Win32 API used in the Win32
Updater Dialog implementation.
2011-08-23 19:54:52 +01:00

101 lines
1.9 KiB
C++

//////////////////////////////////////////////
// View.cpp
// Definitions for the CView class
#include "view.h"
#include "resource.h"
CView::CView()
{
}
void CView::DrawLine(int x, int y)
{
CClientDC dcClient(this);
dcClient.MoveTo(m_points.back().x, m_points.back().y);
dcClient.LineTo(x, y);
}
void CView::OnDraw(CDC* pDC)
{
if (m_points.size() > 0)
{
bool bDraw = false; //Start with the pen up
for (unsigned int i = 0 ; i < m_points.size(); i++)
{
if (bDraw) pDC->LineTo(m_points[i].x, m_points[i].y);
else pDC->MoveTo(m_points[i].x, m_points[i].y);
bDraw = m_points[i].PenDown;
}
}
}
void CView::StorePoint(int x, int y, bool PenDown)
{
PlotPoint P1;
P1.x = x;
P1.y = y;
P1.PenDown = PenDown;
m_points.push_back(P1); //Add the point to the vector
}
void CView::OnLButtonDown(LPARAM lParam)
{
// Capture mouse input.
SetCapture();
StorePoint(GET_X_LPARAM(lParam), GET_Y_LPARAM(lParam), true);
}
void CView::OnLButtonUp(LPARAM lParam)
{
{
//Release the capture on the mouse
ReleaseCapture();
StorePoint(GET_X_LPARAM(lParam), GET_Y_LPARAM(lParam), false);
}
}
void CView::OnMouseMove(WPARAM wParam, LPARAM lParam)
{
// hold down the left mouse button and move mouse to draw lines.
if ( (wParam & MK_LBUTTON) && (GetCapture() == this) )
{
DrawLine(GET_X_LPARAM(lParam), GET_Y_LPARAM(lParam));
StorePoint(GET_X_LPARAM(lParam), GET_Y_LPARAM(lParam), true);
}
}
LRESULT CView::WndProc(UINT uMsg, WPARAM wParam, LPARAM lParam)
{
switch (uMsg)
{
case WM_LBUTTONDOWN:
OnLButtonDown(lParam);
break;
case WM_MOUSEMOVE:
OnMouseMove(wParam, lParam);
break;
case WM_LBUTTONUP:
OnLButtonUp(lParam);
break;
// Note: No need to handle WM_DESTROY. The frame does this for us.
// case WM_DESTROY:
// ::PostQuitMessage(0);
// break;
}
//Use the default message handling for remaining messages
return WndProcDefault(uMsg, wParam, lParam);
}