projectpanel/projectexplorer: added select all/deselect all functionality

This commit is contained in:
itsmattkc
2020-02-23 11:33:49 +11:00
parent f1f80c0a39
commit 6facdc1f1b
4 changed files with 28 additions and 1 deletions
+10
View File
@@ -103,6 +103,16 @@ ProjectViewModel *ProjectPanel::model()
return explorer_->model();
}
void ProjectPanel::SelectAll()
{
explorer_->SelectAll();
}
void ProjectPanel::DeselectAll()
{
explorer_->DeselectAll();
}
void ProjectPanel::Edit(Item* item)
{
explorer_->Edit(item);