Re: [Interest] dynamic widget creation in QScrollArea

2016-08-05 Thread Frank Rueter | OHUfx
Thanks Reto, I'm not entirely certain I understand your example (I'm using Python). I'm not quite sure yet how I would instantiate the widgets based on their visibility yet, but will think about it again if I can't get the QDelegate to work with animation. Cheers, frank On 5/08/16 1:09 am, R

Re: [Interest] dynamic widget creation in QScrollArea

2016-08-05 Thread Frank Rueter | OHUfx
Thanks bo, I will have a look at QListView and delegates instead. I'd love to get that to work as it has so many things for free that I will want to utilise. I am having trouble though with creating a delegate that makes every item behave like my custom widget. E.g. The widget/item is like a

Re: [Interest] Design Issue with QAbstractItemModel & QTreeView

2016-08-05 Thread Sébastien Le Ray
Le 05/08/2016 à 17:47, j...@wavemetrics.com a écrit : When you say "packaging", you mean that you have a wrapper around the underlying data (something like a TreeItem class that "caches" data) I mean preparing the presentation of the data. Which mean? :D Main issue is not on adding rows (th

Re: [Interest] Design Issue with QAbstractItemModel & QTreeView

2016-08-05 Thread john
> When you say "packaging", you mean that you have a wrapper around the > underlying data (something like a TreeItem class that "caches" data)? I mean preparing the presentation of the data. > Main issue is not on adding rows (this you can indeed call begin while data > is already added), issue

[Interest] Qt do not detect AMD Radeon on Windows

2016-08-05 Thread YuriyPryyma
When user have machine with two video cards: integrated Intel and AMD Radeon(I have tested on AMD Radeon R7 M265). Qt internal class GpuDescription return properties of in

Re: [Interest] Fwd: Tests selection page

2016-08-05 Thread Igor Mironchik
I've found. Sorry for the mess. On 05.08.2016 16:04, Igor Mironchik wrote: Forwarded Message Subject:Tests selection page Date: Fri, 5 Aug 2016 16:03:34 +0300 From: Igor Mironchik To: qt-crea...@qt-project.org Hello, How can I navigate to tests select

[Interest] Fwd: Tests selection page

2016-08-05 Thread Igor Mironchik
Forwarded Message Subject:Tests selection page Date: Fri, 5 Aug 2016 16:03:34 +0300 From: Igor Mironchik To: qt-crea...@qt-project.org Hello, How can I navigate to tests selection page? I found test results only... Thank you. ___

Re: [Interest] Autotests in Qt Creator with CMake projects

2016-08-05 Thread Christian Kandeler
On 08/05/2016 10:17 AM, Harald Vistnes wrote: Is it possible to run autotests (Qt Test) in Qt Creator with CMake projects? I could only find info for QMake projects here http://doc.qt.io/qtcreator/creator-autotest.html. I tried with the add_test() in the CMakeLists.txt file, but QtC did not seem

[Interest] Problems with large QImage

2016-08-05 Thread ??
Hi everyone, I need to create a large bmp or prt file using QPainterPath(moveTo??lineTo...).The image size maybe 6*3 pixel,and I know that QImage supports a maximum of 32768x32768 px images (signed short), so I must separate to draw the path.My development environment is Win7-64bit, 4G

[Interest] Autotests in Qt Creator with CMake projects

2016-08-05 Thread Harald Vistnes
Is it possible to run autotests (Qt Test) in Qt Creator with CMake projects? I could only find info for QMake projects here http://doc.qt.io/qtcreator/creator-autotest.html. I tried with the add_test() in the CMakeLists.txt file, but QtC did not seem to pick it up. Are there some requirements on t

Re: [Interest] Design Issue with QAbstractItemModel & QTreeView

2016-08-05 Thread Sébastien Le Ray
Le 05/08/2016 à 00:54, John Weeks a écrit : But when childAdded is called… child already has been added. That's the issue, model is not manipulating data, it's just supposed to react on their changes OK, I finally decided to look at our code and the documentation :) QAbstractItemModel has prot