Program Listing for File FilePicker.h¶
↰ Return to documentation for file (src/smartpeak/include/SmartPeak/ui/FilePicker.h)
// --------------------------------------------------------------------------
// SmartPeak -- Fast and Accurate CE-, GC- and LC-MS(/MS) Data Processing
// --------------------------------------------------------------------------
// Copyright The SmartPeak Team -- Novo Nordisk Foundation
// Center for Biosustainability, Technical University of Denmark 2018-2021.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
// ARE DISCLAIMED. IN NO EVENT SHALL ANY OF THE AUTHORS OR THE CONTRIBUTING
// INSTITUTIONS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
// OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
// WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
// OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
// ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
// --------------------------------------------------------------------------
// $Maintainer: Douglas McCloskey, Ahmed Khalil $
// $Authors: Douglas McCloskey $
// --------------------------------------------------------------------------
#pragma once
#include <algorithm>
#include <array>
#include <string>
#include <vector>
#include <filesystem>
#include <atomic>
#include <SmartPeak/core/ApplicationProcessor.h>
#include <SmartPeak/core/Utilities.h>
#include <SmartPeak/ui/Widget.h>
#include <SmartPeak/ui/ImEntry.h>
#include <SmartPeak/iface/IFilePickerHandler.h>
namespace SmartPeak
{
class FilePicker final : public Widget
{
public:
enum class Mode
{
EFileRead,
EFileCreate,
EDirectory
};
FilePicker() : Widget("Pick a pathname") {};
void draw() override;
std::string getPickedPathname() const;
void open(const std::string& title,
std::shared_ptr<IFilePickerHandler> file_picker_handler,
FilePicker::Mode mode,
ApplicationHandler& application_handler,
const std::string& default_file_name = "");
void runProcessor();
bool fileLoadingIsDone() { return loading_is_done_; };
bool errorLoadingFile() { return error_loading_file_; };
protected:
std::array<std::vector<std::string>, 4> pathname_content_;
std::filesystem::path current_pathname_ = std::filesystem::current_path();
std::string picked_pathname_;
std::shared_ptr<IFilePickerHandler> file_picker_handler_ = nullptr;
ApplicationHandler* application_handler_ = nullptr;
bool loading_is_done_ = true;
bool error_loading_file_ = false;
FilePicker::Mode mode_;
std::atomic_bool files_scanned_{ false };
const ImGuiTableSortSpecs* s_current_sort_specs = NULL;
std::string selected_filename_;
int selected_entry_ = -1;
ImGuiTextFilter filter_;
std::string open_button_text_ = "Open";
void run_and_join(
IFilePickerHandler* file_picker_handler,
const std::string& pathname,
bool& loading_is_done
);
void updateContents(std::vector<ImEntry>& content_items);
void drawConfirmationPopup();
void doOpenFile();
bool isReadyToOpen(const std::string& full_path);
void clearProcessor();
};
}