Extend application branding

This commit is contained in:
wmayer
2012-02-23 20:25:33 +01:00
parent 72ae257ac4
commit c21ac1b6b0
11 changed files with 104 additions and 58 deletions

View File

@@ -303,8 +303,8 @@ PyMODINIT_FUNC initFreeCADGui()
try {
Base::Interpreter().loadModule("FreeCAD");
App::Application::Config()["AppIcon"] = "freecad";
App::Application::Config()["SplashPicture"] = "freecadsplash";
App::Application::Config()["ConsoleBanner"] = "\xc2\xa9 Juergen Riegel, Werner Mayer, Yorik van Havre 2001-2011\n";
App::Application::Config()["SplashScreen"] = "freecadsplash";
App::Application::Config()["CopyrightInfo"] = "\xc2\xa9 Juergen Riegel, Werner Mayer, Yorik van Havre 2001-2011\n";
Gui::Application::initApplication();
Py_InitModule("FreeCADGui", FreeCADGui_methods);
}