[Development] Qt Keyboard Shortcuts broken in Qt 5.6 (since 4.8 at least). Reproducible test case included.

2016-04-09 Thread jasonsu
Use of Qt Keyboard shortcuts has been broken in Qt for years. There are lots of bugs about it in Qt and KDE projects. This one looks close to what I'm seeing, Can't assign keyboard shortcut with Meta modifiers https://bugreports.qt.io/browse/QTCREATORBUG-9846 This one got mentio

Re: [Development] Vulkan

2016-04-09 Thread Tom Kulaga
Thanks guys for the detailed updates. I an appreciate any big sweeping changes, aren't lite nor simple. I was after using Vulkan (to learn the API) with a widgets interface for now and going with the native window handle sounds simplest and best. I'll give it a try (a D3D12 type vulkan widget) an

Re: [Development] Vulkan

2016-04-09 Thread Agocs Laszlo
Hi, Sean's summary is perfect. If you are after integrating your Vulkan renderer into a non-Quick app, use a QWindow and QWidget::createWindowContainer, like the D3D12 samples did. All you need is a native window handle (e.g. a HWND on Windows which is exactly what QWindow::winId() will give yo

Re: [Development] Qt 5.6.1 ETA?

2016-04-09 Thread Turunen Tuukka
It is in the works, but priority is to get Qt 5.7 Beta released. So probably towards end of April. -- Tuukka > Rex Dieter kirjoitti 9.4.2016 kello 16.44: > > Curious what plans or eta is for a Qt 5.6.1 release? > > http://wiki.qt.io/Qt-5.6-release > > doesn't mention it. > > -- Rex > > __

[Development] Qt 5.6.1 ETA?

2016-04-09 Thread Rex Dieter
Curious what plans or eta is for a Qt 5.6.1 release? http://wiki.qt.io/Qt-5.6-release doesn't mention it. -- Rex ___ Development mailing list Development@qt-project.org http://lists.qt-project.org/mailman/listinfo/development

[Development] QColor and HSL's hue

2016-04-09 Thread Curtis Mitch
Is there any technical reason (besides compatibility) why QColor::hslHueF() can't return a value between 0 and 1? I see that other projects do this: https://developer.mozilla.org/en/docs/Web/CSS/color_value#hsl() https://github.com/bgrins/TinyColor/issues/12 If the colour being represented by Q

Re: [Development] Vulkan

2016-04-09 Thread Sean Harmer
On Saturday 09 April 2016 01:57:24 Tom Kulaga wrote: > Hi All, > > Is anyone actively working on vulkan integration? Or even a QVulkanWidget? > I saw that d3d12 had a preview widget so thought it was reasonable to ask. > > If anyone isn't I'm keen to have a crack. In terms of implementation, is i