Search found 79 matches

by parad0x13
Fri Jan 09, 2009 1:27 am
Forum: C++ Development
Topic: frame accessing another frame
Replies: 7
Views: 1917

This is a little more clear on what I mean to do, your right, sorry for the confusion: main.cpp IMPLEMENT_APP(MainApp) bool MainApp::OnInit() { RenderFrm* render = new RenderFrm(wxT("Frame 1"), wxPoint(100, 100), wxSize(320, 200)); render->Show(true); ControlsFrm* controls = new ControlsFr...
by parad0x13
Fri Jan 09, 2009 12:42 am
Forum: C++ Development
Topic: frame accessing another frame
Replies: 7
Views: 1917

frame accessing another frame

My main.cpp file creates 2 frames The frames are managed in their own files: frame1.cpp + frame1.h along with frame2.cpp + frame2.h In frame2 I have a function that is supposed to affect frame1, but how do I access this frame? If I invoke "frame1->DoSomething()" It tells me that 'frame1' i...
by parad0x13
Tue Jan 06, 2009 3:44 am
Forum: Compiler / Linking / IDE Related
Topic: Cannot find -lwxmsw28_gl
Replies: 0
Views: 355

Cannot find -lwxmsw28_gl

I'm trying to compile the opengl cube sample with wxWidgets 2.8.9 "make -f makefile.gcc USE_OPENGL=1 BUILD=release" and it retorts with "Cannot find -lwxmsw28_gl" I've searched for this library everywhere but I cannot find it. Is it even distributed with wxWidgets? If not where c...
by parad0x13
Tue Jan 06, 2009 3:13 am
Forum: Compiler / Linking / IDE Related
Topic: wxWidgets 2.8.9 will not compile OpenGL Samples!
Replies: 1
Views: 692

wxWidgets 2.8.9 will not compile OpenGL Samples!

I downloaded wxWidgets 2.8.9 and changed the setup.h file to allow opengl programs to be compiled, changed the 0 to 1, and then I compiled wxWidgets (build/msw) with gcc with "make -f makefile.gcc BUILD=release" and when it was finished I could compile the minimalist sample just fine along...