iltommi
iltommi
Ohhh my bad, I copy/pasted a command I tryed... I've update the text above with the current error and cmake config. Sorry
I was asking the same stuff. I just added `install(FILES src/gui/PythonQtScriptingConsole.h DESTINATION include/PythonQt/gui)`
Well in fact I just need a way to select points over a plot to via a polygonal chain. I used `canvas.mpl_connect('button_press_event' ...)` and it works, but then I saw...
Sorry, I was a bit messy. Starting from this minimal code: ``` import matplotlib.pyplot as plt from matplotlib.widgets import PolygonSelector from skimage import data fig, ax = plt.subplots() ax.imshow(data.camera(), cmap='gray')...
QJSEngine is still there in qt6 (in Qml qt6 module) if you want to stick to ecma javascript ``` #include [...] QJSEngine = my_eng; my_eng.globalObject().setProperty("myobj", my_eng.newQObject(myobj)); QJSValue retval = my_eng.evaluate("myobj.dosomething()");...