Have been trying to compile some code that would allow me to integrate xWidgets and SFML.
I first tried the sample wxwidget code in the SFML SDK, and added the compiler, linker parameters for wxwidget, and the the sample widget was built. But the application does not execute and an error message comes up: "The application failed to initialize properly. (0xc000005)"
I also tried to work from the sample wxWidget code from their library. I just added sf::RenderWindow to the code class wxtestFrame: public wxFrame, public sf::RenderWindow
to the code and this is the error the compiler threw up:
In member function `virtual bool wxtestApp::OnInit()':
request for member `Show' is ambiguous
candidates are: virtual bool wxWindowBase::Show(bool)
virtual bool wxWindow::Show(bool)
virtual bool wxTopLevelWindowMSW::Show(bool)
void sf::Window::Show(bool)
I am using Code::Blocks with mingw
Any tips guys..