gpt4 book ai didi

c++ - wxWidgets: 不能从 wxListCtrl 继承

转载 作者:行者123 更新时间:2023-11-27 23:21:04 26 4
gpt4 key购买 nike

我有以下代码的卡住问题:(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 文件。 header :

#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 构造函数的“短调用”。任何帮助表示赞赏。感谢您的支持

最佳答案

您在构造函数中为 wxListCtrl 提供了一个指向自身作为父窗口的指针:

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

尝试:

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

并将其创建为:

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

关于c++ - wxWidgets: 不能从 wxListCtrl 继承,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12997366/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com