* Checkbox allows for switching between refresh and full refresh * Renamed menu option Force Refresh to Full Refresh * Checkbox is not visible when project needs to be fully refreshed
43 lines
946 B
C++
43 lines
946 B
C++
#include "component/view/DialogView.h"
|
|
|
|
DialogView::DialogView(StorageAccess* storageAccess)
|
|
: m_storageAccess(storageAccess)
|
|
{
|
|
}
|
|
|
|
DialogView::~DialogView()
|
|
{
|
|
}
|
|
|
|
void DialogView::showProgressDialog(const std::string& title, const std::string& message)
|
|
{
|
|
}
|
|
|
|
void DialogView::hideProgressDialog()
|
|
{
|
|
}
|
|
|
|
DialogView::IndexMode DialogView::startIndexingDialog(
|
|
size_t cleanFileCount, size_t indexFileCount, size_t totalFileCount, bool forceRefresh, bool needsFullRefresh
|
|
){
|
|
return INDEX_ABORT;
|
|
}
|
|
|
|
void DialogView::updateIndexingDialog(size_t fileCount, size_t totalFileCount, std::string sourcePath)
|
|
{
|
|
}
|
|
|
|
void DialogView::finishedIndexingDialog(size_t fileCount, size_t totalFileCount, float time, ErrorCountInfo errorInfo)
|
|
{
|
|
}
|
|
|
|
int DialogView::confirm(const std::string& message)
|
|
{
|
|
return confirm(message, std::vector<std::string>());
|
|
}
|
|
|
|
int DialogView::confirm(const std::string& message, const std::vector<std::string>& options)
|
|
{
|
|
return -1;
|
|
}
|