How to embed openJSCAD into a desktop application.
-
I need to embed openJSCAD into a Desktop application.
The first issue I found is how to embed a navigator inside the application and I've solved it with chromium.But, now, when I launch the openJSCAD app inside this navigator nothing works well.
At the picture, you can see what is happening with the example.
What's the problem?
Anyone had previously this problem and solved it?
Thank's in advance!
-
@z3dev Just I did!
-
This response if for users of Delphi VCL/FMX that want to integrate openJSCAD inside his applications.
Initially, I was using this library to integrate Chromium inside a form of Delphi: https://github.com/hgourvest/dcef3
This is a good solution, but after trying to solve some problems I discovered a branch of this project that is up to day and works without the problems of the first.
The branch that works well is: https://github.com/salvadordf/CEF4Delphi
Why integrate Chromium inside Delphi?
Because the TWebBrowser of Delphi is a shell of the IExplorer of Microsoft and this is out of service. Without maintaining.
And also, applications developed using Chromium are compatibles with MacOS, iOS and Android.
-
@juanccilleruelo cool!
can you share the solution? is there a repository of source code that others can browse?
-