wxWidgets wxTextCtrl在删除时崩溃

时间:2013-03-17 22:32:31

标签: c++ visual-studio-2010 wxwidgets

wxTextCtrl在尝试删除或更改值时会导致一些内存分配问题。以下是一些代码洞察:

    wxTextCtrl* s = new wxTextCtrl(...);
    s->SetValue("abc");//crash
    delete s//crash

就像它的所有成员都是const一样。以下是VisualStudio崩溃时所说的内容:

    An unhandled exception of type 'System.AccessViolationException' 
    occurred in Unknown Module.

    Additional information: Attempted to read or write protected memory. 
    This is often an indication that other memory is corrupt.

即使我尝试wxWidgets默认销毁:

    parent->DestroyChildren(); //ofc the parent is wxPane passed in constructor of s

任何帮助将不胜感激。

这是来自调用wxTextCtrl的唯一函数的一些实际代码:

  void AddButton::OnAction(wxSize* frame){

if ( !DoAction ){
    if ( ! thy )
    {

        thy = new wxPanel
            (mParent, -1, 
            wxPoint(0, 0),
            wxSize(PanelWidth, mParent->GetSize().GetHeight()), 
            wxBORDER_NONE | wxFRAME_FLOAT_ON_PARENT );
        thy->SetBackgroundColour(wxColor(30,30,30));
        thy->Show();
        if ( ! AddPanelDialog ){
            //AddPanelDialog = (new _Text
                //(this, thy, "add link...", wxPoint(1, 30), wxSize(PanelWidth - 30, 20),
                //wxBORDER_NONE | wxTE_PROCESS_ENTER ));
            wxTextCtrl* s = new wxTextCtrl(thy, -1, "", wxPoint(1, 30), wxSize(PanelWidth - 30, 20),
                wxBORDER_NONE | wxTE_PROCESS_ENTER );
            s->Connect(wxEVT_COMMAND_TEXT_ENTER, wxCommandEventHandler(_Text::OnEnter));
            s->Show();
        }
        if ( !ConfirmPanel ){
            ConfirmPanel = new wxPanel
                (thy, -1, wxPoint(PanelWidth - 28, 30), wxSize(27, 20), 
                wxBORDER_NONE | wxFRAME_FLOAT_ON_PARENT );
            ConfirmPanel->SetBackgroundColour(wxColor(38, 145, 232));
            ConfirmPanel->Show();
        }

    }
    else {
        thy->Show();
    }
    gui* rmd = (gui*)mParent;
    rmd->LeftPanelActivate();
    rmd->SetNewPositions(rmd->GetParent()->GetSize());
    Button::Update();
    helper::SendRedrawEvent(mParent);
    DoAction = true; // indicates action activated
}
else{
    thy->Hide();
    gui* rmd = (gui*)mParent;
    rmd->LeftPanelActivate(false);
    rmd->SetNewPositions(rmd->GetParent()->GetSize());
    Button::Update();
    helper::SendRedrawEvent(mParent);
    DoAction = false; // indicates action activated
}
    }

和调用SetValue()

的函数
   void AddButton::OnEnter(wxCommandEvent& event)//enter button handler
   {
       wxTextCtrl* _t = (wxTextCtrl*)this;
       _Clear();
       *_t<<"sup";
   }

2 个答案:

答案 0 :(得分:1)

你确定你真的需要删除wxTextCtrl吗?如果将此文本控件放入sizer中,则sizer负责它并在需要时将其销毁。您可能需要从sizer中分离文本控件,然后将其删除。 另外,您应该使用Destroy()方法而不是delete运算符。这在文档中有清楚的解释。

至于SetValue()来电崩溃:您是否尝试使用wxT("abc")?您还在使用什么版本的wxWidgets,OS和编译器? wxWidgets根本没有遇到过这样的问题。也许你可以发布一些有用的代码来帮助识别问题?

答案 1 :(得分:1)

我认为您对Connect()的理解存在问题。如果您使用它连接到不同对象的方法,则必须将指向此对象的指针作为最后一个参数(在the documentation中称为eventSink)。你的方法几乎肯定是在错误的对象指针上调用的。

你绝对不应该像this一样投射OnEnter()