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/CurveEditorDefault.h

34 lines
638 B
C

1 month ago
#pragma once
#include "CurveEditorBase.h"
namespace NItem
{
/*
* ???????????????????
*
* ???????
* 1. ???????????????????<EFBFBD><EFBFBD>???
* 2. ???????????<EFBFBD><EFBFBD>???????????????
* 3. ???????????????
*/
class CurveEditorDefault : public CurveEditorBase
{
public:
CurveEditorDefault(CSigmaDoc* pDoc)
: CurveEditorBase(pDoc) {}
virtual ~CurveEditorDefault(void) {}
protected:
// ========== ?????2???????????? ==========
// ??????????????????<3F><>?????????????????
void OnDrawDragPreview() override;
// ========== ?????3?????????<3F><>?? ==========
// ???????????????????
void OnCalculateDragEffect(CPointList* pList) override;
};
};