Re: [Interest] How to filter QFileSystemModel for use in QML

2015-08-13 Thread Julius Bullinger
Curtis Mitch [mailto:mitch.cur...@theqtcompany.com] wrote on Thursday, 13. August 2015 14:27 Uhr: > I'm not sure about the rest of your question, but TreeView has a rootIndex > property in 5.6: > https://codereview.qt-project.org/#/c/121991/ While I don't quite understand the reasoning for ``s

Re: [Interest] How to filter QFileSystemModel for use in QML

2015-08-13 Thread Julius Bullinger
Nikita Krupenko [mailto:krne...@gmail.com] wrote on Thursday, 13. August 2015 15:01 Uhr: > Have you tried DelegateModel? It is like a proxy and allows you to set root > index: > http://doc.qt.io/qt-5/qml-qtqml-models-delegatemodel.html#rootIndex-prop This seems like a decent solution, although

Re: [Interest] Advice for a beginner QT-GL programmer about 3D frameworks for data visualization

2015-08-13 Thread rpzrpz...@gmail.com
Since this is a Qt Interest list, how does cascade help or integrate with Qt? What would be better, Qt With Cascade and/or Qt With Qt3d? Or is it better to use Cascade without Qt? md On 8/13/2015 8:18 AM, Berkay Elbir wrote: > Hello, > > You can consider OpenCascade(OCC) for 3D programming, it

Re: [Interest] Advice for a beginner QT-GL programmer about 3D frameworks for data visualization

2015-08-13 Thread Berkay Elbir
Hello, You can consider OpenCascade(OCC) for 3D programming, it has also a python wrapper that is an opensource project. I use opencascade with qt for a desktop cad/cam application at my job. This is a link for python wrapper of OCC : https://github.com/tpaviot/pythonocc-core I do not know much d

[Interest] Advice for a beginner QT-GL programmer about 3D frameworks for data visualization

2015-08-13 Thread Carlos Jordão
Dear list, I want to start a personal project about Network data visualization in 3D, using python. I want to learn more deeply about python and some network specifics behaviors (the main thing), putting this in a 3D environment - it is a requirement, but I don't want to waste too much time on thi

Re: [Interest] How to filter QFileSystemModel for use in QML

2015-08-13 Thread Curtis Mitch
From: interest-bounces+mitch.curtis=theqtcompany@qt-project.org on behalf of Julius Bullinger Sent: Thursday, 13 August 2015 14:14 To: interest@qt-project.org Subject: [Interest] How to filter QFileSystemModel for use in QML Dear list, I'm having p

[Interest] How to filter QFileSystemModel for use in QML

2015-08-13 Thread Julius Bullinger
Dear list, I'm having problems using QFileSystemModel in QML. Take the following example code: // QQmlEngine* engine QFileSystemModel* fsm = new QFileSystemModel(engine); QModelIndex root = fsm->setRootPath("C:/Qt"); engine->rootContext()->setContextProperty("fileSystemModel", fs