Added GUI_App and MainFrame

This commit is contained in:
YuSanka 2018-09-20 08:40:22 +02:00
parent 7ef894e074
commit ebb6f47f50
9 changed files with 1314 additions and 32 deletions

View file

@ -13,6 +13,7 @@
#include <boost/nowide/iostream.hpp>
#include "slic3r/GUI/GUI.hpp"
#include "slic3r/GUI/GUI_App.hpp"
using namespace Slic3r;
@ -252,9 +253,12 @@ main(int argc, char **argv)
#endif
MyApp *gui = new MyApp();
// MyApp *gui = new MyApp();
GUI::GUI_App *gui = new GUI::GUI_App();
// MyApp::SetInstance(gui);
GUI::GUI_App::SetInstance(gui);
MyApp::SetInstance(gui);
wxEntry(argc, argv);
return 0;
}