如何在MFC单文档中存储坐标?

时间:2013-09-08 13:48:42

标签: c++ mfc

我正在做一个绘图工具的小项目。

我使用线条绘制多边形,因此我使用CList<CPoint,CPoint> m_Points来存储每条线的终点。

这是我的代码:

void CDrawToolView::OnLButtonUp(UINT nFlags, CPoint point)
{
   .
   .
   .
   CList<CPoint,CPoint> m_Points; 
   m_Points.AddTail(point);
   . 
   .
   .
}

我想将这些要点传递给对话。在调用函数中:

void CDrawToolView::OnEditProperty()
{
    CPropertyDlg dlg;  
    dlg.Points = m_Points;
    if (dlg.DoModal() == IDOK)
    {   
        m_Points = dlg.Points;
    }
}

然后在对话框中,单击“确定”时,从CList<CPoint,CPoint> Points

中读取所有点
void CPropertyDlg::OnBnClickedOk()
{
    CList<CPoint,CPoint> Points; 
    Points.AddTail(polypoint);
    POSITION pos = Points.GetHeadPosition();
    while( pos != NULL )
    {
       int i = 0;
       element = Points.GetNext(pos);
       polygon_x[i] = element.x;
       polygon_y[i] = element.y;
       i ++;
    }
}

运行程序CObject::operator =' : cannot access private member declared in class 'CObject'时,如何解决该问题?

此外,我可以使用此方法将点传递给对话框吗?

1 个答案:

答案 0 :(得分:0)

将CPropertyDlg的m_Points成员声明为CList<CPoint,CPoint>*并将指针传递给此对话框:

void CDrawToolView::OnEditProperty()
{
    CPropertyDlg dlg;  
    dlg.Points = &m_Points;
    if (dlg.DoModal() == IDOK)
    {   
        //m_Points = dlg.Points;   // not necessary because Points is changed in-place
    }
}

现有代码中的问题是,您尝试按值传递CList,这需要复制整个对象。 MFC作者不允许operator=私有。

顺便说一句,如果您正在尝试实现绘图功能,请查看MFC示例DRAWCLI。