Gui: extend PySide2 wrapper of MainWindow with extra functions
This commit is contained in:
151
src/Gui/MainWindowPy.cpp
Normal file
151
src/Gui/MainWindowPy.cpp
Normal file
@@ -0,0 +1,151 @@
|
||||
/***************************************************************************
|
||||
* Copyright (c) 2021 Werner Mayer <wmayer[at]users.sourceforge.net> *
|
||||
* *
|
||||
* This file is part of the FreeCAD CAx development system. *
|
||||
* *
|
||||
* This library is free software; you can redistribute it and/or *
|
||||
* modify it under the terms of the GNU Library General Public *
|
||||
* License as published by the Free Software Foundation; either *
|
||||
* version 2 of the License, or (at your option) any later version. *
|
||||
* *
|
||||
* This library is distributed in the hope that it will be useful, *
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
||||
* GNU Library General Public License for more details. *
|
||||
* *
|
||||
* You should have received a copy of the GNU Library General Public *
|
||||
* License along with this library; see the file COPYING.LIB. If not, *
|
||||
* write to the Free Software Foundation, Inc., 59 Temple Place, *
|
||||
* Suite 330, Boston, MA 02111-1307, USA *
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
|
||||
#include "PreCompiled.h"
|
||||
#ifndef _PreComp_
|
||||
# include <list>
|
||||
# include <sstream>
|
||||
#endif
|
||||
|
||||
#include "MainWindowPy.h"
|
||||
#include "MainWindow.h"
|
||||
#include "MDIView.h"
|
||||
#include "MDIViewPy.h"
|
||||
#include "PythonWrapper.h"
|
||||
|
||||
|
||||
using namespace Gui;
|
||||
|
||||
|
||||
void MainWindowPy::init_type()
|
||||
{
|
||||
behaviors().name("MainWindowPy");
|
||||
behaviors().doc("Python binding class for the MainWindow class");
|
||||
// you must have overwritten the virtual functions
|
||||
behaviors().supportRepr();
|
||||
behaviors().supportGetattr();
|
||||
behaviors().supportSetattr();
|
||||
behaviors().set_tp_new(extension_object_new);
|
||||
|
||||
add_varargs_method("getWindows",&MainWindowPy::getWindows,"getWindows()");
|
||||
add_varargs_method("getWindowsOfType",&MainWindowPy::getWindowsOfType,"getWindowsOfType(typeid)");
|
||||
add_varargs_method("setActiveWindow", &MainWindowPy::setActiveWindow, "setActiveWindow(MDIView)");
|
||||
add_varargs_method("getActiveWindow", &MainWindowPy::getActiveWindow, "getActiveWindow()");
|
||||
}
|
||||
|
||||
PyObject *MainWindowPy::extension_object_new(struct _typeobject * /*type*/, PyObject * /*args*/, PyObject * /*kwds*/)
|
||||
{
|
||||
return new MainWindowPy(nullptr);
|
||||
}
|
||||
|
||||
Py::Object MainWindowPy::type()
|
||||
{
|
||||
return Py::Object( reinterpret_cast<PyObject *>( behaviors().type_object() ) );
|
||||
}
|
||||
|
||||
Py::ExtensionObject<MainWindowPy> MainWindowPy::create(MainWindow *mw)
|
||||
{
|
||||
Py::Callable class_type(type());
|
||||
Py::Tuple arg;
|
||||
auto inst = Py::ExtensionObject<MainWindowPy>(class_type.apply(arg, Py::Dict()));
|
||||
inst.extensionObject()->_mw = mw;
|
||||
return inst;
|
||||
}
|
||||
|
||||
Py::Object MainWindowPy::createWrapper(MainWindow *mw)
|
||||
{
|
||||
PythonWrapper wrap;
|
||||
if (!wrap.loadCoreModule() ||
|
||||
!wrap.loadGuiModule() ||
|
||||
!wrap.loadWidgetsModule()) {
|
||||
throw Py::RuntimeError("Failed to load Python wrapper for Qt");
|
||||
}
|
||||
|
||||
// copy attributes
|
||||
std::list<std::string> attr = {"getWindows", "getWindowsOfType", "setActiveWindow", "getActiveWindow"};
|
||||
|
||||
Py::Object py = wrap.fromQWidget(mw, "QMainWindow");
|
||||
Py::ExtensionObject<MainWindowPy> inst(create(mw));
|
||||
for (const auto& it : attr) {
|
||||
py.setAttr(it, inst.getAttr(it));
|
||||
}
|
||||
return py;
|
||||
}
|
||||
|
||||
MainWindowPy::MainWindowPy(MainWindow *mw)
|
||||
: _mw(mw)
|
||||
{
|
||||
}
|
||||
|
||||
MainWindowPy::~MainWindowPy()
|
||||
{
|
||||
// in case the class is instantiated on the stack
|
||||
ob_refcnt = 0;
|
||||
}
|
||||
|
||||
Py::Object MainWindowPy::repr()
|
||||
{
|
||||
std::string s;
|
||||
std::ostringstream s_out;
|
||||
if (!_mw)
|
||||
throw Py::RuntimeError("Cannot print representation of deleted object");
|
||||
s_out << "MainWindow";
|
||||
return Py::String(s_out.str());
|
||||
}
|
||||
|
||||
Py::Object MainWindowPy::getWindows(const Py::Tuple& args)
|
||||
{
|
||||
if (!PyArg_ParseTuple(args.ptr(), ""))
|
||||
throw Py::Exception();
|
||||
|
||||
return Py::None();
|
||||
}
|
||||
|
||||
Py::Object MainWindowPy::getWindowsOfType(const Py::Tuple& args)
|
||||
{
|
||||
return Py::None();
|
||||
}
|
||||
|
||||
Py::Object MainWindowPy::setActiveWindow(const Py::Tuple& args)
|
||||
{
|
||||
Py::ExtensionObject<MDIViewPy> mdi(args[0].callMemberFunction("cast_to_base"));
|
||||
if (_mw) {
|
||||
_mw->setActiveWindow(mdi.extensionObject()->getMDIViewPtr());
|
||||
}
|
||||
|
||||
return Py::None();
|
||||
}
|
||||
|
||||
Py::Object MainWindowPy::getActiveWindow(const Py::Tuple& args)
|
||||
{
|
||||
if (!PyArg_ParseTuple(args.ptr(), ""))
|
||||
throw Py::Exception();
|
||||
|
||||
if (_mw) {
|
||||
MDIView* mdi = _mw->activeWindow();
|
||||
if (mdi) {
|
||||
return Py::asObject(mdi->getPyObject());
|
||||
}
|
||||
}
|
||||
return Py::None();
|
||||
}
|
||||
Reference in New Issue
Block a user