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.
21 lines
439 B
C++
21 lines
439 B
C++
#include <QPainter>
|
|
|
|
//#include "ZxBaseUtil.h"
|
|
|
|
#include "nmObjPointWell.h"
|
|
#include "nmObjPointWellTool.h"
|
|
|
|
nmObjPointWellTool::nmObjPointWellTool()
|
|
{
|
|
setText(tr("nObjPointWellTool"));
|
|
m_oNot = NOT_Point_Well;
|
|
}
|
|
|
|
bool nmObjPointWellTool::onLeftDoubleClick(const QPointF &pt)
|
|
{
|
|
nmObjPointTool::onLeftDoubleClick(pt);
|
|
nmObjPointWell* pObj = dynamic_cast<nmObjPointWell*>(m_pObj);
|
|
pObj->editWell();
|
|
return true;
|
|
}
|