我在wxWidgets应用程序中遇到一个非常奇怪的问题。我想要做的是使用自定义wxPanel资源来允许一些冗余控制并提供允许我更容易工作的方法。在我尝试将对主框架中的资源的访问权限传递给每个面板之前,没有发生此问题。
我正在做的是使用#include将wxPanel资源的类标头包含在主类的标头中。但是,当尝试声明CopyRow类型的资源(我在包含的头文件中)时,我收到错误CopyRow does not name a type
以下是主类标题的代码
#ifndef CPAMOUNTMAIN_H
#define CPAMOUNTMAIN_H
//(*Headers(CPAmountFrame)
#include <wx/sizer.h>
#include <wx/stattext.h>
#include <wx/menu.h>
#include <wx/spinctrl.h>
#include <wx/statline.h>
#include "CopyRow.h"
#include <wx/panel.h>
#include <wx/frame.h>
#include <wx/statusbr.h>
//*)
class CPAmountFrame: public wxFrame
{
public:
CPAmountFrame(wxWindow* parent,wxWindowID id = -1);
void UpdateTotal();
virtual ~CPAmountFrame();
private:
//(*Handlers(CPAmountFrame)
void OnQuit(wxCommandEvent& event);
void OnAbout(wxCommandEvent& event);
void OntotalCopiesChange(wxSpinEvent& event);
static void CallTotalCopies();
//*)
//(*Identifiers(CPAmountFrame)
static const long ID_CUSTOM1;
static const long ID_CUSTOM2;
static const long ID_CUSTOM3;
static const long ID_CUSTOM4;
static const long ID_CUSTOM5;
static const long ID_CUSTOM6;
static const long ID_STATICLINE1;
static const long ID_STATICTEXT1;
static const long ID_SPINCTRL1;
static const long ID_STATICTEXT2;
static const long ID_PANEL1;
static const long idMenuQuit;
static const long idMenuAbout;
static const long ID_STATUSBAR1;
//*)
//(*Declarations(CPAmountFrame)
CopyRow* Custom4;
wxStaticText* totalPrice;
CopyRow* Custom1;
CopyRow* Custom5;
CopyRow* Custom2;
CopyRow* Custom3;
wxPanel* Panel1;
wxStaticText* StaticText1;
wxStatusBar* StatusBar1;
wxStaticLine* StaticLine1;
CopyRow* Custom6;
wxSpinCtrl* totalCopies;
//*)
DECLARE_EVENT_TABLE()
};
#endif // CPAMOUNTMAIN_H
这是CopyRow.h的代码,
#ifndef COPYROW_H
#define COPYROW_H
#ifndef WX_PRECOMP
//(*HeadersPCH(CopyRow)
#include <wx/sizer.h>
#include <wx/stattext.h>
#include <wx/panel.h>
//*)
#endif
//(*Headers(CopyRow)
#include <wx/spinctrl.h>
//*)
#include "CPAmountMain.h"
class CopyRow: public wxPanel
{
public:
CopyRow(wxWindow* parent,const char* label,wxSpinCtrl* copies,wxWindowID id=wxID_ANY,const wxPoint& pos=wxDefaultPosition,const wxSize& size=wxDefaultSize);
void SetLabel(const char* label);
void SetPrice(double price);
void SetCounter(int value);
int GetCounter();
virtual ~CopyRow();
private:
//(*Declarations(CopyRow)
wxStaticText* copyLabel;
wxSpinCtrl* numCopies;
wxStaticText* copyPrice;
//*)
//(*Identifiers(CopyRow)
static const long ID_SPINCTRL1;
static const long ID_STATICTEXT1;
static const long ID_STATICTEXT2;
//*)
wxSpinCtrl* totalCopies;
//(*Handlers(CopyRow)
void OnnumCopiesChange(wxSpinEvent& event);
//*)
DECLARE_EVENT_TABLE()
};
#endif
任何人都可以向我解释这个错误吗?我现在不知道。
答案 0 :(得分:3)
您不能在CPRountMain.h中的CopyRow.h和CopyRow.h中包含CPAMountMain.h!您必须决定要包含文件的顺序。
由于CPAMountMain.h仅将指针用于CopyRow类,因此可以使用前向声明而不是包含CopyRow.h:
// CPAMountMain.h
class CopyRow;
并删除CPAMountMain.h中的#include "CopyRow.h"
,这应该可以。