我不太确定这应该被视为C ++问题还是wxWidgets:
我正在开发一个相当简单的wxWidgets界面,允许用户绘制三角形。 因此,我有一个画布(OpenGLCanvas类)和一个wxWindow(CMainFrame类),问题是我希望我的画布有一个窗口的实例,反之亦然。错误的来源是,当编译器到达我的CMainFrame实例所在的OpenGLCanvas的一部分时,它(CMainFrame)尚未定义,如果我更改#includes的顺序,则会发生同样的事情。我的代码:
OpenGLCanvas.cpp:
#include "mainframe.h"
#include "openglcanvas.h"
...
OpenGLCanvas::OpenGLCanvas(wxWindow *parent, wxWindowID id,const wxPoint& pos, const wxSize& size,long style, const wxString& name):
wxGLCanvas(parent, id, pos, size, style, name)
{
frame = (CMainFrame) parent;
}
openGLCanvas.h:
#ifndef __OPENGLCANVAS_H__
#define __OPENGLCANVAS_H__
#include "wx/wx.h"
#include <wx/glcanvas.h>
class OpenGLCanvas: public wxGLCanvas {
public:
CMainFrame* frame;
...
#endif
mainframe.cpp:
#include "openglcanvas.h"
#include "mainframe.h"
...
CMainFrame::CMainFrame(wxMenuBar* menu, const wxString& title, const wxPoint& pos, const wxSize& size)
: wxFrame((wxFrame *)NULL, -1, title, pos, size)
{
m_menu=menu;
canvas = new OpenGLCanvas((wxWindow*)this,-1, pos , size, 0 , wxT("Canvas"));
}//constructor
...
mainframe.h
#ifndef __MAINFRAME_H__
#define __MAINFRAME_H__
...
class CMainFrame: public wxFrame {
public:
CMainFrame(wxMenuBar* menu,const wxString& title, const wxPoint& pos, const wxSize& size);
我该如何包含这些文件? (我对C ++很新,但不是C) 我为我的问题的长度道歉。任何想法都会有很大的帮助。
谢谢。