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.
29 lines
875 B
C++
29 lines
875 B
C++
#pragma once
|
|
#include <afxwin.h>
|
|
|
|
class HTrackerTransform;
|
|
class SelectedItemMotionGraphDrawer;
|
|
class TransformMotiveGraphDrawer
|
|
{
|
|
public:
|
|
TransformMotiveGraphDrawer();
|
|
void SetBoundRect(CRect & rect);
|
|
void SetSIMGDrawer(SelectedItemMotionGraphDrawer * drawer);
|
|
void CopyMatrix(Gdiplus::Matrix * matrix);
|
|
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 LButtonDown(int mouseX, int mouseY);
|
|
virtual void Erease(CDC * pDC);
|
|
protected:
|
|
void DrawBoundShape(CDC * pDC);
|
|
void TranslateBoundRect();
|
|
protected:
|
|
SelectedItemMotionGraphDrawer * m_pSIMGDrawer;
|
|
HTrackerTransform * m_trackerTransform;
|
|
Gdiplus::Matrix * m_matrix;
|
|
CRect m_boundRect;
|
|
POINT m_boundPoints[4];
|
|
COLORREF m_boundColor;
|
|
};
|
|
|