#pragma once #include "common/tile_map/map.h" #include "dll_export.h" #include "explorer/explorer.h" #include "libs/ctpl/ctpl_stl.h" #include "recorder/recorder.h" #include namespace satdump { SATDUMP_DLL2 extern bool update_ui; SATDUMP_DLL2 extern ctpl::thread_pool ui_thread_pool; SATDUMP_DLL2 extern std::shared_ptr explorer_app; void initMainUI(); void exitMainUI(); void renderMainUI(); // TODOREWORK move into another namespace? struct SetIsProcessingEvent { }; struct SetIsDoneProcessingEvent { }; struct ShowProcesingEvent { }; struct AddRecorderEvent // TODOREWORK Temporary!? { }; struct TryOpenFileInMainExplorerEvent { std::string path; }; } // namespace satdump