注意:我完全修改了该问题,并将其变成了专门针对该问题的示例项目,因此Nicks的回答不再有意义。 wxQuestionMain.h和wxQuestionMain.cpp是经过轻微修改的wxWidget文件,由Code::Blocks自动生成。
当我单击“执行”按钮时,我希望“wxQuestionMain.cpp”中的按钮事件调用“otherFile.cpp”中的“somefunction()”。那很好。但是我然后想从“somefunction()”内部更改文本框“txtCtrl1”中的文本,这将不起作用,因为“somefunction()”不是wxWidget类的一部分,并且我不希望它成为。 wxwidget类在“wxQuestionMain.h”中创建。
wxQuestionMain.h->只创建类
#ifndef WXQUESTIONMAIN_H
#define WXQUESTIONMAIN_H
#define BOOST_FILESYSTEM_VERSION 2
#ifndef WX_PRECOMP
#include <wx/wx.h>
#endif
#include "wxQuestionApp.h"
#include <wx/button.h>
#include <wx/statline.h>
class wxQuestionDialog: public wxDialog
{
public:
wxQuestionDialog(wxDialog *dlg, const wxString& title);
~wxQuestionDialog();
protected:
enum
{
idBtnGo = 1000
};
wxStaticText* m_staticText1;
wxStaticLine* m_staticline1;
wxButton* BtnGo;
wxTextCtrl* textCtrl1;
private:
void OnClose(wxCloseEvent& event);
void OnGo(wxCommandEvent& event);
DECLARE_EVENT_TABLE()
};
void somefunction();
#endif // WXQUESTIONMAIN_H
wxQuestionMain.cpp->大量的yadda yadda,然后在最底部的是处理buttonclick事件的函数。
#ifdef WX_PRECOMP
#include "wx_pch.h"
#endif
#ifdef __BORLANDC__
#pragma hdrstop
#endif //__BORLANDC__
#include "wxQuestionMain.h"
//helper functions
enum wxbuildinfoformat {
short_f, long_f };
wxString wxbuildinfo(wxbuildinfoformat format)
{
wxString wxbuild(wxVERSION_STRING);
if (format == long_f )
{
#if defined(__WXMSW__)
wxbuild << _T("-Windows");
#elif defined(__WXMAC__)
wxbuild << _T("-Mac");
#elif defined(__UNIX__)
wxbuild << _T("-Linux");
#endif
#if wxUSE_UNICODE
wxbuild << _T("-Unicode build");
#else
wxbuild << _T("-ANSI build");
#endif // wxUSE_UNICODE
}
return wxbuild;
}
BEGIN_EVENT_TABLE(wxQuestionDialog, wxDialog)
EVT_CLOSE(wxQuestionDialog::OnClose)
EVT_BUTTON(idBtnGo, wxQuestionDialog::OnGo)
END_EVENT_TABLE()
wxQuestionDialog::wxQuestionDialog(wxDialog *dlg, const wxString &title)
: wxDialog(dlg, -1, title)
{
this->SetSizeHints(wxDefaultSize, wxDefaultSize);
wxBoxSizer* bSizer1;
bSizer1 = new wxBoxSizer(wxHORIZONTAL);
m_staticText1 = new wxStaticText(this, wxID_ANY, wxT("Welcome To\nwxWidgets"), wxDefaultPosition, wxDefaultSize, 0);
m_staticText1->SetFont(wxFont(20, 74, 90, 90, false, wxT("Arial")));
bSizer1->Add(m_staticText1, 0, wxALL|wxEXPAND, 5);
wxBoxSizer* bSizer2;
bSizer2 = new wxBoxSizer(wxVERTICAL);
wxPoint textCtrl1Position(5,5); //Position
wxSize textCtrl1size(120,25); //Size
textCtrl1 = new wxTextCtrl(this, wxID_ANY, "hi", wxDefaultPosition, wxDefaultSize, 0, wxDefaultValidator, "textCtrl1"); //Create textCtrl
bSizer2->Add(textCtrl1, 0, wxALL|wxEXPAND, 5); //Add to sizer
m_staticline1 = new wxStaticLine(this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxLI_HORIZONTAL);
bSizer2->Add(m_staticline1, 0, wxALL|wxEXPAND, 5);
BtnGo = new wxButton(this, idBtnGo, wxT("&Go"), wxDefaultPosition, wxDefaultSize, 0);
bSizer2->Add(BtnGo, 0, wxALL, 5);
bSizer1->Add(bSizer2, 1, wxEXPAND, 5);
this->SetSizer(bSizer1);
this->Layout();
bSizer1->Fit(this);
}
wxQuestionDialog::~wxQuestionDialog()
{
}
void wxQuestionDialog::OnClose(wxCloseEvent &event)
{
Destroy();
}
void wxQuestionDialog::OnGo(wxCommandEvent &event)
{
somefunction();
}
otherFile.cpp:
#include "wxQuestionMain.h"
void somefunction()
{
//Try to change the text in textCtrl1
wxQuestionDialog::textCtrl1->AppendText("Red text\n");
}
产生:
error: ‘wxTextCtrl* wxQuestionDialog::textCtrl1’ is protected
error: invalid use of non-static data member ‘wxQuestionDialog::textCtrl1’
所以我移动了“wxTextCtrl * textCtrl1;”在“wxQuestionMain.h”中从“ protected ”更改为“公共(public)”
产生:
error: invalid use of non-static data member ‘wxQuestionDialog::textCtrl1’
wxQuestionMain.h中的类似乎说'class wxQuestionDialog:public wxDialog'
我不知道“公共(public)”部分的含义,我从未见过像以前那样创建过一个类,但是我将尝试更改“otherFile.cpp”,以便使用wxDialog而不是wxQuestionDialog。
#include "wxQuestionMain.h"
void somefunction()
{
//Try to change the text in textCtrl1
wxDialog::textCtrl1->AppendText("Red text\n");
}
产生:
error: ‘textCtrl1’ is not a member of ‘wxDialog’
我在这里不知所措..如何在不向wxWidget类添加“somefunction()”的情况下更新“textCtrl1”中的文本?
CodeBlocks自动生成另外2个文件,不确定它们是否重要,但是这里是。
wxQuestionApp.cpp
#ifdef WX_PRECOMP
#include "wx_pch.h"
#endif
#ifdef __BORLANDC__
#pragma hdrstop
#endif //__BORLANDC__
#include "wxQuestionApp.h"
#include "wxQuestionMain.h"
IMPLEMENT_APP(wxQuestionApp);
bool wxQuestionApp::OnInit()
{
wxQuestionDialog* dlg = new wxQuestionDialog(0L, _("wxWidgets Application Template"));
dlg->Show();
return true;
}
wxQuestionApp.h
#ifndef WXQUESTIONAPP_H
#define WXQUESTIONAPP_H
#include <wx/app.h>
class wxQuestionApp : public wxApp
{
public:
virtual bool OnInit();
};
#endif // WXQUESTIONAPP_H
最佳答案
addtolistbox2
是gfxDialog
的私有(private)成员方法-即使您确实具有正确构造的对象,也无法从gfxDialog
实异常(exception)部调用该方法。至少您需要将addtolistbox2
从public:
移到private:
,然后在正确构造的实例上调用它(构造函数需要参数,但您的代码未提供参数):
gfxDialog testtime(0, "test");
testtime.addtolistbox2("somestring");
(唯一有效的构造函数需要一个父对话框和一个标题字符串:
class gfxDialog: public wxDialog
{
public:
gfxDialog(wxDialog *dlg, const wxString& title);
如果我记得我的wxWidgets正确,则父级可能为NULL,但是当然您仍然必须提供参数)