wxWidgets: 不能从 wxListCtrl 继承

wxWidgets: can't inherit from wxListCtrl

本文关键字:wxListCtrl 继承 不能 wxWidgets      更新时间:2023-10-16

我在以下代码中有一个冻结问题:( ebcframe是继承的类(wxframe)。查找" else"部分,谢谢)

void EBCFrame::OnOpen(wxCommandEvent& event)
{
    int error = 0;
    _window = new wxScrolledWindow(this, wxID_ANY, wxPoint(0, 0), wxSize(600, 400), wxVSCROLL|wxHSCROLL);
    wxFileDialog* fileDialog = new wxFileDialog(this, wxT("Select a file"), wxEmptyString, wxEmptyString, wxT("Event Bus configuration file (*.ebf)|*.ebf|Txt|*.txt|All|*"));
    if(fileDialog->ShowModal() == wxID_OK)
    {
        //taking the file's name we want to process
        wxString tempfilename;
        tempfilename += fileDialog->GetPath();
        //need to convert to const char*
        char* filename = new char[tempfilename.length()];
        strncpy(filename, (const char*)tempfilename.mb_str(wxConvUTF8), tempfilename.length() - 1);
        //done
        _handler->Read(filename);
        //processing it
        error = _handler->GetError();
        if(error != 0)  //an error has occoured
        {
            wxMessageDialog dialog( NULL,  wxT("An error has occoured: " + wxString::FromAscii(strerror(error))), wxT("Error"), wxOK|wxICON_ERROR);
            dialog.ShowModal();
        }
        else
        {
            // Create a list in report mode
            EBCList* list = new EBCList();
            // it works instead
            //wxListCtrl* list = new wxListCtrl(this, wxID_ANY, wxDefaultPosition, wxSize(400, 400),wxLC_REPORT|wxLC_SINGLE_SEL);
            // even if I delete the following code, and I leave only the first code line in the else section, it still freezes
            // Insert two columns
            wxListItem itemCol;
            itemCol.SetText(wxT("Param"));
            itemCol.SetImage(-1);
            itemCol.SetAlign(wxLIST_FORMAT_CENTRE);
            list->InsertColumn(0, itemCol);
            list->SetColumnWidth(0, wxLIST_AUTOSIZE );
            itemCol.SetText(wxT("Value"));
            itemCol.SetAlign(wxLIST_FORMAT_CENTRE);
            list->InsertColumn(1, itemCol);
            list->SetColumnWidth(1, wxLIST_AUTOSIZE );
            // Insert ten items
            for ( int i = 0; i < 5; i++ )
            {
                wxString buf;
                // Insert an item, with a string for column 0,
                buf.Printf(wxString::FromAscii(_handler->GetAttributeName(i + 1).c_str()), i);
                list->InsertItem(i, buf);
                // The item may change position due to e.g. sorting,
                // so store the original index in the item’s data
                list->SetItemData(i, i);
                // Set a string for column 1
                buf.Printf(wxString::FromAscii(_handler->GetAttribute(i + 1).c_str()), i);
                list->SetItem(i, 1, buf);
            }
        }
        _window->Show(true);
    }
}

这是EBCLIST类的标题和CPP文件。标题:

#ifndef EBCLIST_H
#define EBCLIST_H
#include <wx/listctrl.h>
#include <wx/menu.h>
enum LIST_ENUM
{
    wxLIST_CTRL = 1000,
    wxLIST_CTRL_EDIT
};
class EBCList : public wxListCtrl
{
    public:
        EBCList();
        ~EBCList();
        void OnActivated(wxListEvent& event);
        void OnRightClick(wxMouseEvent& event);
    private:
    // This class handles events
    DECLARE_EVENT_TABLE()
};
#endif // EBCLIST_H

cpp:

#include "EBCList.h"
EBCList::EBCList() : wxListCtrl(this, wxID_ANY, wxDefaultPosition, wxSize(400, 400),wxLC_REPORT|wxLC_SINGLE_SEL)
{
}
EBCList::~EBCList()
{
}
void EBCList::OnActivated(wxListEvent& event)
{
}
void EBCList::OnRightClick(wxMouseEvent& event)
{
    int flags;
    long subitem;           /* used by HitTest */
    long key = HitTest(event.GetPosition(), flags, &subitem);
    wxMenu menu;
    wxPoint pos;
    pos = event.GetPosition();
    menu.Append(wxLIST_CTRL_EDIT, _T("&Edit"));
    PopupMenu(&menu, pos.x, pos.y);
}
BEGIN_EVENT_TABLE(EBCList, wxListCtrl)
    EVT_LIST_ITEM_ACTIVATED(wxLIST_CTRL, EBCList::OnActivated)
    EVT_RIGHT_DOWN(EBCList::OnRightClick)
END_EVENT_TABLE()

我无法理解为什么该程序会冻结,因为我声明EBCLIST的构建器的方式基本上就像WXLISTCTRL Coftructor的"短期发动"。任何帮助都将受到赞赏。谢谢您的支持

您正在向wxlistctrl喂食构造函数中的父窗口的指针:

EBCList::EBCList() : wxListCtrl(this, ...
//                              ^^^^

尝试:

EBCList::EBCList(wxWindow* parent) : wxListCtrl(parent, ...

并将其创建为:

EBCList* list = new EBCList(this); // EBCFrame as parent