Search found 26 matches

by maxlem
Wed Jan 26, 2022 12:25 am
Forum: Developers corner
Topic: [SOLVED] Picking fails with "OpenInventor" navigation mode
Replies: 4
Views: 1059

Re: [SOLVED] Picking fails with "OpenInventor" navigation mode

Only two things to answer,

D'oh!
Thanks
by maxlem
Tue Jan 25, 2022 4:39 pm
Forum: Developers corner
Topic: [SOLVED] Picking fails with "OpenInventor" navigation mode
Replies: 4
Views: 1059

Re: Picking fails with "OpenInventor" navigation mode

I tried to build master but the buil fails... cmake -S ../freecad-source -B . -DBUILD_QT5=ON -DPYTHON_EXECUTABLE=/usr/bin/python3 In file included from /home/maxime/Downloads/freecad-source/src/Base/RotationPyImp.cpp:33: /home/maxime/Downloads/freecad-source/src/Base/RotationPy.cpp:137:40: error: ‘s...
by maxlem
Tue Jan 25, 2022 4:34 pm
Forum: Developers corner
Topic: [SOLVED] Picking fails with "OpenInventor" navigation mode
Replies: 4
Views: 1059

[SOLVED] Picking fails with "OpenInventor" navigation mode

Hello, I get a picking failure with the OpenInventor nav mode steps: Open Freecad New document New Part Create cude (in CAD nav mode I can pick faces, edges, if I switch to OpenInventor I can't anymore) [edit: building master to try out...] OS: Ubuntu Core 20 (KDE/plasma) Word size of OS: 64-bit Wor...
by maxlem
Sat Jan 02, 2021 5:14 pm
Forum: UX/UI Design
Topic: Alternative GUI for FreeCAD: Overlayed Layout (Devs needed)
Replies: 154
Views: 43526

Re: Alternative GUI for FreeCAD: Overlayed Layout (Devs needed)

ickby agreed, the work you did with qt quick is quite dated, as i believe you even stated you did your work with a version of qt in the 4.x series, more than likely it was 4.8.x and above because from what i understand that was about the qt group added support for QML. and to the best of my knowled...
by maxlem
Sat Jan 02, 2021 12:06 am
Forum: UX/UI Design
Topic: Alternative GUI for FreeCAD: Overlayed Layout (Devs needed)
Replies: 154
Views: 43526

Re: Alternative GUI for FreeCAD: Overlayed Layout (Devs needed)

Hey guys, Guess who's back from the dead. Not implying I have tons of time to invest but I *might* have a bit more 2 weeks from now. Still quite busy with my startup. Also, meanwhile, I see pyside2 have made good progress and python is now a 1st class citizen in the Qt ecosystem. So, I'm kinda throw...
by maxlem
Mon Sep 23, 2019 12:51 am
Forum: UX/UI Design
Topic: Alternative GUI for FreeCAD: Overlayed Layout (Devs needed)
Replies: 154
Views: 43526

Re: Alternative GUI for FreeCAD: Overlayed Layout (Devs needed)

No progress yet, still in the back of my mind. Got implicated in a little startup.
by maxlem
Sun Aug 04, 2019 2:15 am
Forum: UX/UI Design
Topic: Alternative GUI for FreeCAD: Overlayed Layout (Devs needed)
Replies: 154
Views: 43526

Re: Alternative GUI for FreeCAD: Overlayed Layout (Devs needed)

Frankly, I can't say, but I suspect everything but central widget will work as before. In the end both QWidget and QWindow are based on QObject, Q_PROPERTY, signals and slots. So everything *can* play nice. The Quarter thingy is really just a bridge to map qt mouse and keyboard events to Coin3D, and...
by maxlem
Sun Aug 04, 2019 12:16 am
Forum: UX/UI Design
Topic: Alternative GUI for FreeCAD: Overlayed Layout (Devs needed)
Replies: 154
Views: 43526

Re: Alternative GUI for FreeCAD: Overlayed Layout (Devs needed)

Well as I ended up concluding, I think my best bet is to bypass Quarter altogether and go straight to Coin3D. Why? Quarter wraps Coin3D in a QPainter-based QWidget. QtQuick2 is neighter QPainter nor QWidget based. I will wrap my qtquick2 QWindow in a QWidget's QWindow container, but I will do everyt...
by maxlem
Sat Aug 03, 2019 9:24 pm
Forum: UX/UI Design
Topic: Alternative GUI for FreeCAD: Overlayed Layout (Devs needed)
Replies: 154
Views: 43526

Re: Alternative GUI for FreeCAD: Overlayed Layout (Devs needed)

Ok, so, I did study the first few commits made by ickby https://github.com/ickby/FreeCAD_sf_master/commits/layout I learn that FreeCAD is based on Quarter, a Qt-wrapper for Coin3D. I notice that ickby had to modify the source of QuarterWidget.cpp, which is part of Coin3D/quarter but at the time, had...
by maxlem
Sat Aug 03, 2019 2:41 pm
Forum: UX/UI Design
Topic: Alternative GUI for FreeCAD: Overlayed Layout (Devs needed)
Replies: 154
Views: 43526

Re: Alternative GUI for FreeCAD: Overlayed Layout (Devs needed)

Thanks vocx, The errors I encountered were when I tried to build ickby's latest rebase, which is "2617 commits behind FreeCAD:master.". I don't think I would have an issue building master's head. That said, thanks for the hints but I don't plan to spend effort managing to build the old qt4...