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.
47 lines
1.2 KiB
C++
47 lines
1.2 KiB
C++
|
|
#ifndef INTRACKCYCLE_H
|
|
#define INTRACKCYCLE_H
|
|
#pragma once
|
|
#include "InTrackTextRange.h"
|
|
class AFX_EXT_CLASS CInTrackCycle : public CInTrackTextRange
|
|
{
|
|
|
|
public:
|
|
CInTrackCycle();
|
|
CInTrackCycle(const CRect8& position);
|
|
virtual ~CInTrackCycle();
|
|
CLONE_WELLOBJECT(CInTrackCycle)
|
|
virtual void operator=(CInTrackCycle& object);
|
|
|
|
public:
|
|
|
|
// virtual void Draw(CXyDC* pDC);
|
|
|
|
public:
|
|
|
|
// virtual BOOL Intersects(const CRect8& rect, double dHandleSize);
|
|
virtual void Serialize(CArchive& ar, const short &ver);
|
|
//virtual void MoveHandleTo(int nHandle, CPoint2D point);
|
|
virtual void DrawRect(CXyDC *pDC, CRect8 trect);
|
|
virtual void Draw(CXyDC* pDC);
|
|
virtual bool CalcInclinedBorder();
|
|
public:
|
|
//double m_thickness;
|
|
//CString m_strMark; // 填充符号
|
|
CXy* m_pMarkThickness; // 砂岩厚度符号
|
|
protected:
|
|
void Init();
|
|
virtual void DrawInclined(CXyDC* pDC);
|
|
public:
|
|
virtual int ReadPCG_SelfData(CKXmlParse& xp, const short& ver, CTrackObj* pTrack);
|
|
virtual void WritePCG_SelfData(CFile &fw, int nBaseTabNum);
|
|
virtual void SetLogFont(LPVOID pLogFont);
|
|
|
|
//virtual void UpdateRowData();
|
|
|
|
//virtual void SetObjDataToRow(VARINTARR*pRow);
|
|
std::vector<CPoint2D> m_IncliedShowCurve; //显示斜井时的曲线样式
|
|
};
|
|
|
|
|
|
#endif |