mirror of
https://github.com/SatDump/SatDump
synced 2026-08-13 17:47:30 -04:00
52 lines
No EOL
1.2 KiB
C++
52 lines
No EOL
1.2 KiB
C++
#pragma once
|
|
|
|
#include "app.h"
|
|
#include "imgui/imgui.h"
|
|
#include "imgui/imgui_internal.h"
|
|
#include <thread>
|
|
#include <vector>
|
|
|
|
#include "imgui/pfd/widget.h"
|
|
|
|
#include "bit_container.h"
|
|
|
|
#include "libs/ctpl/ctpl_stl.h"
|
|
|
|
#include "tool.h"
|
|
|
|
namespace satdump
|
|
{
|
|
class BitViewApplication : public Application
|
|
{
|
|
protected:
|
|
float panel_ratio = 0.23;
|
|
float last_width = -1.0f;
|
|
|
|
bool is_busy = false;
|
|
|
|
void drawUI();
|
|
void drawPanel();
|
|
void drawContents();
|
|
|
|
private:
|
|
FileSelectWidget select_bitfile_dialog = FileSelectWidget("File", "Select File", false, true);
|
|
|
|
std::shared_ptr<BitContainer> current_bit_container;
|
|
std::vector<std::shared_ptr<BitContainer>> all_bit_containers;
|
|
|
|
private:
|
|
float process_progress = 0;
|
|
ctpl::thread_pool process_threadp = ctpl::thread_pool(4);
|
|
|
|
std::vector<std::shared_ptr<BitViewTool>> all_tools;
|
|
|
|
public:
|
|
BitViewApplication();
|
|
~BitViewApplication();
|
|
|
|
public:
|
|
static std::string getID() { return "bitview"; }
|
|
std::string get_name() { return "BitView"; }
|
|
static std::shared_ptr<Application> getInstance() { return std::make_shared<BitViewApplication>(); }
|
|
};
|
|
}; |