ui: Showing indexing progress in windows task bar

* implemented showing indexing progress in windows taskbar button
* renamed TaskShowStatusDialog
* added "Qt5WinExtras.dll" for windows builds
This commit is contained in:
mlangkabel
2018-01-16 11:16:08 +01:00
parent 43c223368c
commit 2c52425d99
18 changed files with 177 additions and 59 deletions
+2
View File
@@ -217,6 +217,7 @@ void QtDialogView::updateIndexingDialog(
window->updateIndexingProgress(finishedFileCount, totalFileCount, sourcePath);
setUIBlocked(true);
}
m_mainWindow->setWindowsTaskbarProgress(float(finishedFileCount) / totalFileCount);
}
);
}
@@ -236,6 +237,7 @@ void QtDialogView::finishedIndexingDialog(
window->updateErrorCount(errorInfo.total, errorInfo.fatal);
setUIBlocked(false);
m_mainWindow->hideWindowsTaskbarProgress();
}
);
}