1 //////////////////////////////////////////////////////
\r
3 // Declaration of the CView class
\r
14 class CView : public CWnd
\r
21 virtual void OnDraw(CDC* pDC);
\r
22 virtual LRESULT WndProc(UINT uMsg, WPARAM wParam, LPARAM lParam);
\r
32 void DrawLine(int x, int y);
\r
33 void OnLButtonDown(LPARAM lParam);
\r
34 void OnLButtonUp(LPARAM lParam);
\r
35 void OnMouseMove(WPARAM wParam, LPARAM lParam);
\r
36 void StorePoint(int x, int y, bool PenDown);
\r
38 vector<PlotPoint> m_points; // Points of lines to draw
\r