[Interest] Touch issues with Qt5.6/Qt5.7 beta and weston

2016-05-12 Thread Johannes Pointner
Hello, I have a setup with weston (wayland(egl vivante) 1.9, weston(desktopshell) 1.9 and libinput 1.14 , yocto krogoth, but I also tried wayland 1.10, weston 1.10 and libinput 1.2.4) on an i.MX6 and have some issues regarding the touchscreen. The first one is that If I touch a combobox the combob

Re: [Interest] What's the recommended way to put QObjects in smart pointers?

2016-05-12 Thread Nikos Chantziaras
On 12/05/16 10:35, Jean-Michaël Celerier wrote: On Wed, May 11, 2016 at 9:56 PM, Nikos Chantziaras mailto:rea...@gmail.com>> wrote: This results in code duplication, since you write the same cleanup code everywhere. I'd argue that if you use RAII and have cleanup code in more than on

[Interest] Is Qt able to render emoji font using the SVGinOT ?

2016-05-12 Thread Gianluca
Hello, I’m wondering if Qt is able to render the coloured emoji font that use the SVGinOT (https://www.w3.org/2013/10/SVG_in_OpenType/) extension. Thanks, Gianluca. ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/l

Re: [Interest] [QT3D] Multiple vertex buffers per Qt3DRender::QGeometry

2016-05-12 Thread Oleg Evseev
I think my suggestion https://bugreports.qt.io/browse/QTBUG-50720 (and attached commit on gerrit) will help solve your task with updating the subset of QBuffer. I did it for 5.7 branch, but currently I use almost same code in 5.6. Regards, Oleg 12 мая 2016 г. 18:54 пользователь "Camden Mannett"

[Interest] [QT3D] Multiple vertex buffers per Qt3DRender::QGeometry

2016-05-12 Thread Camden Mannett
On the Qt forums a couple of months ago someone posted a message regarding trying to use multiple vertex Qt3DRender::QBuffers per Qt3DRender::QGeometry ( https://forum.qt.io/topic/64770/implement-multiple-vertex-buffers-per-one-renderable-entity), they pointed towards this mailing list but I can't

Re: [Interest] deploying translatations when cross-compiling

2016-05-12 Thread Boudewijn Rempt
On Thu, 12 May 2016, Boudewijn Rempt wrote: On Sun, 8 May 2016, Bob Hood wrote: You could manually create a "qt.conf" file in the bin/ folder, and have it point at the translations folder, e.g.: [Paths] Prefix = . Translations = translations Hm, but that actually is the default -

[Interest] LocalStorage inserting NULLs

2016-05-12 Thread Jason H
I'm not sure if this is a Qt thing, a LocalStorage thing, or what. But I realized that anytime I submit a null ( tx.executeSql("INSERT INTO table (val) VALUES(?)", [null]) ) what I actually get in the database is "". This is confirmed by "SELECT val, typeof(val) FROM table", which retuns "||text

Re: [Interest] deploying translatations when cross-compiling

2016-05-12 Thread Boudewijn Rempt
On Sun, 8 May 2016, Bob Hood wrote: You could manually create a "qt.conf" file in the bin/ folder, and have it point at the translations folder, e.g.: [Paths] Prefix = . Translations = translations Hm, but that actually is the default -- and it doesn't seem to work for that matter

[Interest] Qt World Summit call for papers open

2016-05-12 Thread Tero Kojo
Hello, The call for papers for Qt World Summit 2016 has been opened! This year the premier Qt event is held October 18-20, 2016 in San Francisco, CA. The main themes of the summit are: - Creating Connected Devices and Internet of Things - Things getting smaller - Ne

Re: [Interest] QtLocation questions

2016-05-12 Thread michaell
I added the osm.mapping.host parameter on the "mapviewer" example with the open sea map: parameters.insert("osm.mapping.host", "http://tiles.openseamap.org/seamark/";); But still i dont see the map. In the example i go to "MapType" and select "custom URL Map". Any idea? _

Re: [Interest] Qt 5.6 QML on iOS: Crash on start up

2016-05-12 Thread Robert Iakobashvili
Better support and fixes for CMake were announced by QtCreator 4 released: http://blog.qt.io/blog/2016/05/11/qt-creator-4-0-0-released/ Kind regards, Robert On Wed, May 11, 2016 at 9:45 AM, NoRulez wrote: > This answer isn't much helpful. > > I use QtCreator only as the QML designer because th

Re: [Interest] What's the recommended way to put QObjects in smart pointers?

2016-05-12 Thread Jean-Michaël Celerier
On Wed, May 11, 2016 at 9:56 PM, Nikos Chantziaras wrote: > > This results in code duplication, since you write the same cleanup code > everywhere. I'd argue that if you use RAII and have cleanup code in more than one place, you are not using RAII. But could you give an example of this ? __