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++

#pragma once
#include "CurveEditorBase.h"
namespace NItem
{
/*
* ???????????????????
*
* ???????
* 1. ???????????????????Śś???
* 2. ???????????ŚĹ???????????????
* 3. ???????????????
*/
class CurveEditorDefault : public CurveEditorBase
{
public:
CurveEditorDefault(CSigmaDoc* pDoc)
: CurveEditorBase(pDoc) {}
virtual ~CurveEditorDefault(void) {}
protected:
// ========== ?????2???????????? ==========
// ??????????????????ڞ?????????????????
void OnDrawDragPreview() override;
// ========== ?????3?????????§š?? ==========
// ???????????????????
void OnCalculateDragEffect(CPointList* pList) override;
};
};