You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kev/Drawer/Module/GeoSigmaDraw/PanMotionGraphDrawer.h

15 lines
418 B
C

1 month ago
#pragma once
#include "TransformMotiveGraphDrawer.h"
#include "RubberLine.h"
class PanMotionGraphDrawer : public TransformMotiveGraphDrawer
{
public:
virtual void FirstDraw(CDC * pDC, Gdiplus::Matrix * matrix, int mouseX, int mouseY);
virtual void Draw(CDC * pDC, Gdiplus::Matrix * matrix, int mouseX, int mouseY);
virtual void Erease(CDC * pDC); //TODO:virutal <20>ij<EFBFBD>override
private:
RubberLine m_rubberLine;
};