Re: [Qt-qml] FolderListModel

2010-11-22 Thread aaron.kennedy
Hi,

On 23/11/2010, at 9:31 AM, "Jones Martin (Nokia-MS-Qt/Brisbane)" 
mailto:martin.jo...@nokia.com>> wrote:
The ListView has no height so only one delegate is created.
Algorithmically I understand why this happens, but it does cause a lot of 
confusion.  What is the downside to having a 0 height (or width in the 
horizontal case) list create *no* elements?

Cheers,

Aaron

BR,
Martin.

From: qt-qml-boun...@trolltech.com<mailto:qt-qml-boun...@trolltech.com> 
[mailto:qt-qml-boun...@trolltech.com] On Behalf Of ext Thomas PABST
Sent: Tuesday, 23 November 2010 1:19 AM
To: <mailto:qt-qml@trolltech.com> 
qt-qml@trolltech.com<mailto:qt-qml@trolltech.com>
Subject: [Qt-qml] FolderListModel

Hi,

I'm currently developing a file manager with the new FolderListModel appeared 
on Qt 4.7.1.
import QtQuick 1.0
import Qt.labs.folderlistmodel 1.0

Rectangle {
width: 300;
height: 400;
 ListView {
 FolderListModel {
 id: foldermodel
 nameFilters: ["*"]
 }
 Component {
 id: filedelegate
 Text { text: fileName }
 }
 model: foldermodel
 delegate: filedelegate
 }
However, this example show us only one file. I'm looking for the better way to 
show all files.
How can we define the number of the file automatically. Can we do that only 
with Qml or we should use both qml/c++ ?
I'm thinking about the Repeater element, ListView element or grid element, but 
we must define the number of case each time !



-
Thomas PABST
<mailto:thomas.pa...@gmail.com>thomas.pa...@gmail.com<mailto:thomas.pa...@gmail.com>
___
Qt-qml mailing list
Qt-qml@trolltech.com<mailto:Qt-qml@trolltech.com>
http://lists.trolltech.com/mailman/listinfo/qt-qml
___
Qt-qml mailing list
Qt-qml@trolltech.com
http://lists.trolltech.com/mailman/listinfo/qt-qml


Re: [Qt-qml] FolderListModel

2010-11-22 Thread martin.jones
The ListView has no height so only one delegate is created.  Add anchors.fill: 
parent to the ListView.

BR,
Martin.

From: qt-qml-boun...@trolltech.com [mailto:qt-qml-boun...@trolltech.com] On 
Behalf Of ext Thomas PABST
Sent: Tuesday, 23 November 2010 1:19 AM
To: qt-qml@trolltech.com
Subject: [Qt-qml] FolderListModel

Hi,

I'm currently developing a file manager with the new FolderListModel appeared 
on Qt 4.7.1.
import QtQuick 1.0
import Qt.labs.folderlistmodel 1.0

Rectangle {
width: 300;
height: 400;
 ListView {
 FolderListModel {
 id: foldermodel
 nameFilters: ["*"]
 }
 Component {
 id: filedelegate
 Text { text: fileName }
 }
 model: foldermodel
 delegate: filedelegate
 }
However, this example show us only one file. I'm looking for the better way to 
show all files.
How can we define the number of the file automatically. Can we do that only 
with Qml or we should use both qml/c++ ?
I'm thinking about the Repeater element, ListView element or grid element, but 
we must define the number of case each time !



-
Thomas PABST
thomas.pa...@gmail.com<mailto:thomas.pa...@gmail.com>
___
Qt-qml mailing list
Qt-qml@trolltech.com
http://lists.trolltech.com/mailman/listinfo/qt-qml


[Qt-qml] FolderListModel

2010-11-22 Thread Thomas PABST
Hi,

I'm currently developing a file manager with the new FolderListModel
appeared on Qt 4.7.1.

import QtQuick 1.0
import Qt.labs.folderlistmodel 1.0

Rectangle {
width: 300;
height: 400;
 ListView {
 FolderListModel {
 id: foldermodel
 nameFilters: ["*"]
 }
 Component {
 id: filedelegate
 Text { text: fileName }
 }
 model: foldermodel
 delegate: filedelegate
 }

However, this example show us only one file. I'm looking for the better way
to show all files.
How can we define the number of the file automatically. Can we do that only
with Qml or we should use both qml/c++ ?
I'm thinking about the Repeater element, ListView element or grid element,
but we must define the number of case each time !



-
Thomas PABST
thomas.pa...@gmail.com
___
Qt-qml mailing list
Qt-qml@trolltech.com
http://lists.trolltech.com/mailman/listinfo/qt-qml