Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I have a QTreeView with QFileSystemModel as model.

The QTreeView has SelectionBehavior set to SelectRows.

In my code I read a dataset to select and then select them via:

idx = treeview->model()->index(search); 
selection->select(idx, QItemSelectionModel::Select);

This selects a cell, not the row . .

Have added a stupid workaround, but would rather fix this the correct way.

for (int col=0; col< treeview->model()->columnCount(); col++) 
{ 
   idx = treeview->model()->index(search, col); 
   selection->select(idx, QItemSelectionModel::Select); 
} 

Or is that ^^ the only way to do it?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
482 views
Welcome To Ask or Share your Answers For Others

1 Answer

If you want to select a full row, you should use the following:

selection->select(idx, QItemSelectionModel::Select | QItemSelectionModel::Rows);

Note that you may sometimes first want to clear the selection:

selection->select(idx, QItemSelectionModel::ClearAndSelect | QItemSelectionModel::Rows);

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...