Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
QFileSystemModelで選択が行われると、戻りタイプは。になりQList<QModelIndex>ます。最初の列(ドライブ、フォルダー、ファイルを含む列)だけを選択する方法はありますか?
QList<QModelIndex>
特定の選択に関心がある場合は、リスト内のすべての QModelIndex に対して次のことを行う必要があります。
QFileSystemModel* p_fs_model; ... foreach(QModelIndex index, whole_selection) { QModelIndex first_column_index = p_fs_model->index( index->row(), 0, /* first column index */ index->parent() ); ... }