#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()); } int DialogView::confirm(const std::string& message, const std::vector& options) { return -1; }