Re: [Interest] Help parsing output of "mksquashfs" command

2016-06-02 Thread Michael Sué
Hi, maybe the progress comes via stderr; you just catch stdout. - Michael. From: Interest [mailto:interest-bounces+sue=sf.mpg...@qt-project.org] On Behalf Of Juan Navarro Sent: Thursday, June 2, 2016 1:47 PM To: interest@qt-project.org Subject: [Interest] Help parsing output of "mksqua

[Interest] QSvgRenderer::defaultSize() is wrong?

2016-06-02 Thread John Weeks
I have an SVG file (that happens to have been generated using QSvgGenerator) that has this at the start: values will be interpreted as if the system is 90 DPI. My reading here: http://www.w3.org/TR/SVG/coords.html#Units seems to indicate that unitless width and height should indicate some sort

Re: [Interest] [Qt3D] Custom texture loader and material shaders

2016-06-02 Thread Xavier Bigand
I forgot to precise that mipmaps are already generated in our file format and texture compressed (PVRTC, DXTC,...) 2016-06-02 18:41 GMT+02:00 Xavier Bigand : > Hi, > > I finally come back into Qt3D tests. > > For the texture loader, I made my own QAbstractTextureImage > and QTextureDataFunctor, I

Re: [Interest] [Qt3D] Custom texture loader and material shaders

2016-06-02 Thread Xavier Bigand
Hi, I finally come back into Qt3D tests. For the texture loader, I made my own QAbstractTextureImage and QTextureDataFunctor, I do the loading of our files in the override of QTexImageDataPtr operator ()(). But I don't understand how to give to Qt3D texture's format, mipmaps,... because I can set

Re: [Interest] Help parsing output of "mksquashfs" command

2016-06-02 Thread Elvis Stansvik
2016-06-02 15:19 GMT+02:00 Elvis Stansvik : > 2016-06-02 13:47 GMT+02:00 Juan Navarro : >> Hello, >> >> I'm building a GUI tool under Kubuntu Linux 14.04, which among other things, >> creates SquashFS (https://en.wikipedia.org/wiki/SquashFS) images with the >> command-line command "mksquashfs". Due

Re: [Interest] Help parsing output of "mksquashfs" command

2016-06-02 Thread Elvis Stansvik
2016-06-02 13:47 GMT+02:00 Juan Navarro : > Hello, > > I'm building a GUI tool under Kubuntu Linux 14.04, which among other things, > creates SquashFS (https://en.wikipedia.org/wiki/SquashFS) images with the > command-line command "mksquashfs". Due to the size of the images, this > process takes a

[Interest] Help parsing output of "mksquashfs" command

2016-06-02 Thread Juan Navarro
Hello, I'm building a GUI tool under Kubuntu Linux 14.04, which among other things, creates SquashFS (https://en.wikipedia.org/wiki/SquashFS) images with the command-line command "mksquashfs". Due to the size of the images, this process takes a good amount of time, so I'd like to show its progress

Re: [Interest] Documentation missing for QAbstractListModel::columnCount/hasChildren ?

2016-06-02 Thread Elvis Stansvik
2016-06-02 9:35 GMT+02:00 Elvis Stansvik : > Hi all, > > There's currently this [1]: > > /*! > \internal > Returns the number of columns in the list with the given \a parent. > \sa rowCount() > */ > > int QAbstractListModel::columnCount(const QModelIndex &parent) const > { > return

Re: [Interest] QGeoPositionInfoSource on Windows 10

2016-06-02 Thread Maurice Kalinowski
Hi, > > Thanks Maurice for your reply, > > Yes I was referring to a classical widget app running on windows desktop. > > So I will wait a bit for that, seems difficult to manage since app is running > on a > variety of Windows versions, including not so few XP users... BTW that is > limiting a

Re: [Interest] QGeoPositionInfoSource on Windows 10

2016-06-02 Thread maitai
Thanks Maurice for your reply, Yes I was referring to a classical widget app running on windows desktop. So I will wait a bit for that, seems difficult to manage since app is running on a variety of Windows versions, including not so few XP users... BTW that is limiting a lot distribution on

[Interest] Documentation missing for QAbstractListModel::columnCount/hasChildren ?

2016-06-02 Thread Elvis Stansvik
Hi all, There's currently this [1]: /*! \internal Returns the number of columns in the list with the given \a parent. \sa rowCount() */ int QAbstractListModel::columnCount(const QModelIndex &parent) const { return parent.isValid() ? 0 : 1; } bool QAbstractListModel::hasChildren(