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
591 B
C++
29 lines
591 B
C++
#pragma once
|
|
|
|
#include "SigmaDoc.h"
|
|
#include "SigmaView.h"
|
|
#include "ItemSelect.h"
|
|
|
|
class CItemWellGroupEdit
|
|
: public CItemSelect
|
|
{
|
|
public:
|
|
CItemWellGroupEdit(CSigmaDoc * ppDoc);
|
|
virtual ~CItemWellGroupEdit(void);
|
|
|
|
COne *m_pWellGroupOne; //Ï൱ÓÚÁÙʱÏÔʾͼԪ
|
|
void SetData(BYTE* buffElement, int buffLen);
|
|
void SetBranchHorizonLength(double curveLength, POSITION pos);
|
|
|
|
int DeleteSelection(void) override;
|
|
|
|
virtual int OnMouseMove(CDC *pDC, UINT nFlags, CPoint point) override;
|
|
BOOL OnKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags) override;
|
|
private:
|
|
COne* CreateOne();
|
|
|
|
};
|
|
|
|
|
|
|