discuss@lists.openscad.org

OpenSCAD general discussion Mailing-list

View all threads

Qt5

B
buttim
Wed, Jun 29, 2016 9:59 AM

My interest is on the Windows platform. I'm cross compiling on Ubuntu 16.04.
The problem regards keyboard shortcuts in the windows environment.
All the shortcuts requiring the user to press the AltGr modifier do not
work. In the current version of OpenSCAD there are two of them if you are
using an italian keyboard: zoom in and zoom out. I suspect many other
keyboard layout do have the same problem

On Wed, Jun 29, 2016 at 11:50 AM, tp3 [via OpenSCAD] <
ml-node+s1091067n17829h74@n5.nabble.com> wrote:

Von: "Rogier Wolff" <[hidden email]
http:///user/SendEmail.jtp?type=node&node=17829&i=0>

No. this is not feasible. QT5 makes openScad unbearably slow when the
model becomes a bit complicated. This bug needs to be fixed first
before we can switch to QT5....

Can you clearify what you mean by that? What OS are you talking about?

The only issue (as far as I know), that had anything to do with
Qt4 vs. Qt5 is about the QGLWidget on Linux. This is fixed quite
some time ago by switching to the new QOpenGLWidget provided in
Qt5.
AFAICS that fix is also backported to the Debian version in
release openscad-2015.03-2+dfsg-1. I don't know how other
distributions handle things.

So there is nothing to fix at this time for any of the 3 supported
platforms.

There is still a general issue with big models as the OpenGL code
is mostly using the old fixed OpenGL pipeline which is slow, does
not use GPU accelleration and can cause high CPU load for models
with lots of vertices.

That's not a "fix" though, but a serious project to get the code
updated to use more modern features provided by modrern GPUs/drivers.

ciao,
Torsten.


OpenSCAD mailing list
[hidden email] http:///user/SendEmail.jtp?type=node&node=17829&i=1
http://lists.openscad.org/mailman/listinfo/discuss_lists.openscad.org
-- Torsten


If you reply to this email, your message will be added to the discussion
below:
http://forum.openscad.org/Qt5-tp17818p17829.html
To unsubscribe from Qt5, click here
http://forum.openscad.org/template/NamlServlet.jtp?macro=unsubscribe_by_code&node=17818&code=bWF1cml6aW8uYnV0dGlAZ21haWwuY29tfDE3ODE4fDE4OTg0NTUyNTk=
.
NAML
http://forum.openscad.org/template/NamlServlet.jtp?macro=macro_viewer&id=instant_html%21nabble%3Aemail.naml&base=nabble.naml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNamespace-nabble.view.web.template.NodeNamespace&breadcrumbs=notify_subscribers%21nabble%3Aemail.naml-instant_emails%21nabble%3Aemail.naml-send_instant_email%21nabble%3Aemail.naml

--
View this message in context: http://forum.openscad.org/Qt5-tp17818p17830.html
Sent from the OpenSCAD mailing list archive at Nabble.com.

My interest is on the Windows platform. I'm cross compiling on Ubuntu 16.04. The problem regards keyboard shortcuts in the windows environment. All the shortcuts requiring the user to press the AltGr modifier do not work. In the current version of OpenSCAD there are two of them if you are using an italian keyboard: zoom in and zoom out. I suspect many other keyboard layout do have the same problem On Wed, Jun 29, 2016 at 11:50 AM, tp3 [via OpenSCAD] < ml-node+s1091067n17829h74@n5.nabble.com> wrote: > Von: "Rogier Wolff" <[hidden email] > <http:///user/SendEmail.jtp?type=node&node=17829&i=0>> > > No. this is not feasible. QT5 makes openScad unbearably slow when the > > model becomes a bit complicated. This bug needs to be fixed first > > before we can switch to QT5.... > > > Can you clearify what you mean by that? What OS are you talking about? > > The only issue (as far as I know), that had anything to do with > Qt4 vs. Qt5 is about the QGLWidget on Linux. This is fixed quite > some time ago by switching to the new QOpenGLWidget provided in > Qt5. > AFAICS that fix is also backported to the Debian version in > release openscad-2015.03-2+dfsg-1. I don't know how other > distributions handle things. > > So there is nothing to fix at this time for any of the 3 supported > platforms. > > There is still a general issue with big models as the OpenGL code > is mostly using the old fixed OpenGL pipeline which is slow, does > not use GPU accelleration and can cause high CPU load for models > with lots of vertices. > > That's not a "fix" though, but a serious project to get the code > updated to use more modern features provided by modrern GPUs/drivers. > > ciao, > Torsten. > > _______________________________________________ > OpenSCAD mailing list > [hidden email] <http:///user/SendEmail.jtp?type=node&node=17829&i=1> > http://lists.openscad.org/mailman/listinfo/discuss_lists.openscad.org > -- Torsten > > > ------------------------------ > If you reply to this email, your message will be added to the discussion > below: > http://forum.openscad.org/Qt5-tp17818p17829.html > To unsubscribe from Qt5, click here > <http://forum.openscad.org/template/NamlServlet.jtp?macro=unsubscribe_by_code&node=17818&code=bWF1cml6aW8uYnV0dGlAZ21haWwuY29tfDE3ODE4fDE4OTg0NTUyNTk=> > . > NAML > <http://forum.openscad.org/template/NamlServlet.jtp?macro=macro_viewer&id=instant_html%21nabble%3Aemail.naml&base=nabble.naml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNamespace-nabble.view.web.template.NodeNamespace&breadcrumbs=notify_subscribers%21nabble%3Aemail.naml-instant_emails%21nabble%3Aemail.naml-send_instant_email%21nabble%3Aemail.naml> > -- View this message in context: http://forum.openscad.org/Qt5-tp17818p17830.html Sent from the OpenSCAD mailing list archive at Nabble.com.
TP
Torsten Paul
Wed, Jun 29, 2016 10:19 AM

All the shortcuts requiring the user to press the AltGr
modifier do not work. In the current version of OpenSCAD
there are two of them if you are using an italian
keyboard: zoom in and zoom out. I suspect many other
keyboard layout do have the same problem

Yes, that seems to be tricky in some combinations. The
issue sounds like a variation of that one:

https://github.com/openscad/openscad/issues/872

This might make it pretty much impossible to use the
AltGr modifier for anything unless it's actually
user configurable. Unfortunately I have not seen any
re-usable component or library to that yet, so we may
have to implement that ourselves eventually.

ciao,
Torsten.

Von: buttim <maurizio.butti@gmail.com> > All the shortcuts requiring the user to press the AltGr > modifier do not work. In the current version of OpenSCAD > there are two of them if you are using an italian > keyboard: zoom in and zoom out. I suspect many other > keyboard layout do have the same problem > Yes, that seems to be tricky in some combinations. The issue sounds like a variation of that one: https://github.com/openscad/openscad/issues/872 This might make it pretty much impossible to use the AltGr modifier for anything unless it's actually user configurable. Unfortunately I have not seen any re-usable component or library to that yet, so we may have to implement that ourselves eventually. ciao, Torsten.