PyObject* Application::sGetMainWindow(PyObject * /*self*/, PyObject *args,PyObject * /*kwd*/) { if (!PyArg_ParseTuple(args, "")) return NULL; PythonWrapper wrap; wrap.loadCoreModule(); wrap.loadGuiModule(); try { return Py::new_reference_to(wrap.fromQWidget(Gui::getMainWindow(), "QMainWindow")); } catch (const Py::Exception&) { return 0; } }
PyObject* Application::sGetMainWindow(PyObject * /*self*/, PyObject *args) { if (!PyArg_ParseTuple(args, "")) return NULL; PythonWrapper wrap; if (!wrap.loadCoreModule() || !wrap.loadGuiModule() || !wrap.loadWidgetsModule()) { PyErr_SetString(PyExc_RuntimeError, "Failed to load Python wrapper for Qt"); return 0; } try { return Py::new_reference_to(wrap.fromQWidget(Gui::getMainWindow(), "QMainWindow")); } catch (const Py::Exception&) { return 0; } }