I would like to build a dialog similar to QFileDialog::getExistingDirectory() for which the OK-button only is enabled when the selected directory contains certain files.

I know I cannot achieve this with QFileDialog, instead I would have to come up with my own QDialog that has a QTreeView coupled to a QFileSystemModel.

  1. How can I limit the QTreeView to directories?
  2. How can I get the currently selected directory so I can check whether it contains some filenames?
link|improve this question

Did my answer not work for you? – Casey Jul 21 '10 at 16:40
still working on the implementation, sorry for the delay... – fawick Jul 21 '10 at 17:20
feedback

1 Answer

up vote 3 down vote accepted
  1. Use setFilter on the QFileSystemModel with either the QDir::AllDirs or QDir::Dirs option, probably the former.
  2. connect the activated(QModelIndex) signal from the treeview to a custom slot of yours. In this slot pass the QModelIndex to the model's fileInfo/filePath method, to retrieve the info/path for the selected directory, then perform your check

Here is an example:

void slotDirectorySelected( const QModelIndex & index )
{
    QFileInfo info = fileSystemModel->fileInfo( index );
    QDir selectedDir = info.dir();
    foreach( const QString entry, selectedDir.entryList() ) {
        // do something with the entry
    }
}
link|improve this answer
Thanks, that works! I decided to wrap the QFileSystemModel with a subclassed QSotFilterProxyModel to be able to sort and not display any columns beside the name of the directories in the QTreeView – fawick Jul 21 '10 at 17:41
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.