2021-08-29 14:18:45 +02:00
|
|
|
#include <hex/api/content_registry.hpp>
|
|
|
|
#include <hex/helpers/shared_data.hpp>
|
2021-06-07 18:13:54 +02:00
|
|
|
|
2021-08-29 22:15:18 +02:00
|
|
|
#include <hex/helpers/utils.hpp>
|
|
|
|
#include <hex/helpers/fmt.hpp>
|
|
|
|
|
2021-08-21 00:52:11 +02:00
|
|
|
#include <codicons_font.h>
|
|
|
|
#include <imgui.h>
|
|
|
|
#include <imgui_internal.h>
|
2021-08-29 14:18:45 +02:00
|
|
|
#include <imgui_imhex_extensions.h>
|
2021-08-21 00:52:11 +02:00
|
|
|
|
2021-06-07 18:13:54 +02:00
|
|
|
namespace hex::plugin::builtin {
|
|
|
|
|
|
|
|
void addFooterItems() {
|
|
|
|
|
|
|
|
ContentRegistry::Interface::addFooterItem([] {
|
|
|
|
static float framerate = 0;
|
|
|
|
if (ImGui::HasSecondPassed()) {
|
2021-07-27 21:50:49 +02:00
|
|
|
framerate = 1.0F / ImGui::GetIO().DeltaTime;
|
2021-06-07 18:13:54 +02:00
|
|
|
}
|
|
|
|
|
2021-09-21 03:10:09 +02:00
|
|
|
ImGui::TextUnformatted(hex::format("FPS {0:2}.{1:02}", u32(framerate), u32(framerate * 100) % 100).c_str());
|
2021-06-07 18:13:54 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2021-08-21 00:52:11 +02:00
|
|
|
void addToolbarItems() {
|
|
|
|
ContentRegistry::Interface::addToolbarItem([] {
|
2021-09-21 02:29:54 +02:00
|
|
|
auto provider = ImHexApi::Provider::get();
|
2021-08-21 13:53:50 +02:00
|
|
|
|
|
|
|
// Undo
|
|
|
|
ImGui::Disabled([&provider] {
|
2021-10-07 11:34:46 +02:00
|
|
|
if (ImGui::ToolBarButton(ICON_VS_DISCARD, ImGui::GetCustomColorVec4(ImGuiCustomCol_ToolbarBlue)))
|
2021-08-21 13:53:50 +02:00
|
|
|
provider->undo();
|
2021-09-21 02:29:54 +02:00
|
|
|
}, !ImHexApi::Provider::isValid() || !provider->canUndo());
|
2021-08-21 13:53:50 +02:00
|
|
|
|
|
|
|
// Redo
|
|
|
|
ImGui::Disabled([&provider] {
|
2021-10-07 11:34:46 +02:00
|
|
|
if (ImGui::ToolBarButton(ICON_VS_REDO, ImGui::GetCustomColorVec4(ImGuiCustomCol_ToolbarBlue)))
|
2021-08-21 13:53:50 +02:00
|
|
|
provider->redo();
|
2021-09-21 02:29:54 +02:00
|
|
|
}, !ImHexApi::Provider::isValid() || !provider->canRedo());
|
2021-08-21 00:52:11 +02:00
|
|
|
|
|
|
|
|
|
|
|
ImGui::SeparatorEx(ImGuiSeparatorFlags_Vertical);
|
|
|
|
|
2021-08-21 13:53:50 +02:00
|
|
|
// Create new file
|
2021-10-07 11:34:46 +02:00
|
|
|
if (ImGui::ToolBarButton(ICON_VS_FILE, ImGui::GetCustomColorVec4(ImGuiCustomCol_ToolbarGray)))
|
2021-08-21 13:53:50 +02:00
|
|
|
EventManager::post<RequestOpenWindow>("Create File");
|
|
|
|
|
|
|
|
// Open file
|
2021-10-07 11:34:46 +02:00
|
|
|
if (ImGui::ToolBarButton(ICON_VS_FOLDER_OPENED, ImGui::GetCustomColorVec4(ImGuiCustomCol_ToolbarBrown)))
|
2021-08-21 13:53:50 +02:00
|
|
|
EventManager::post<RequestOpenWindow>("Open File");
|
|
|
|
|
2021-08-21 00:52:11 +02:00
|
|
|
|
|
|
|
ImGui::SeparatorEx(ImGuiSeparatorFlags_Vertical);
|
|
|
|
|
2021-08-21 13:53:50 +02:00
|
|
|
// Save file
|
|
|
|
ImGui::Disabled([&provider] {
|
2021-10-07 11:34:46 +02:00
|
|
|
if (ImGui::ToolBarButton(ICON_VS_SAVE, ImGui::GetCustomColorVec4(ImGuiCustomCol_ToolbarBlue)))
|
2021-08-21 13:53:50 +02:00
|
|
|
provider->save();
|
2021-09-21 02:29:54 +02:00
|
|
|
}, !ImHexApi::Provider::isValid() || !provider->isWritable() || !provider->isSavable());
|
2021-08-21 13:53:50 +02:00
|
|
|
|
|
|
|
// Save file as
|
|
|
|
ImGui::Disabled([&provider] {
|
2021-10-07 11:34:46 +02:00
|
|
|
if (ImGui::ToolBarButton(ICON_VS_SAVE_AS, ImGui::GetCustomColorVec4(ImGuiCustomCol_ToolbarBlue)))
|
2021-12-07 22:47:41 +01:00
|
|
|
hex::openFileBrowser("hex.builtin.view.hexeditor.save_as"_lang, DialogMode::Save, { }, [&provider](auto path) {
|
2021-08-21 13:53:50 +02:00
|
|
|
provider->saveAs(path);
|
|
|
|
});
|
2021-09-21 02:29:54 +02:00
|
|
|
}, !ImHexApi::Provider::isValid() || !provider->isSavable());
|
2021-08-21 13:53:50 +02:00
|
|
|
|
2021-08-21 00:52:11 +02:00
|
|
|
|
|
|
|
ImGui::SeparatorEx(ImGuiSeparatorFlags_Vertical);
|
|
|
|
|
2021-08-21 13:53:50 +02:00
|
|
|
|
|
|
|
// Create bookmark
|
|
|
|
ImGui::Disabled([] {
|
2021-10-07 11:34:46 +02:00
|
|
|
if (ImGui::ToolBarButton(ICON_VS_BOOKMARK, ImGui::GetCustomColorVec4(ImGuiCustomCol_ToolbarGreen))) {
|
2021-08-21 13:53:50 +02:00
|
|
|
Region region = { 0 };
|
|
|
|
EventManager::post<QuerySelection>(region);
|
|
|
|
|
|
|
|
ImHexApi::Bookmarks::add(region.address, region.size, { }, { });
|
|
|
|
}
|
2021-09-21 02:29:54 +02:00
|
|
|
}, !ImHexApi::Provider::isValid() || !provider->isReadable());
|
2021-08-21 13:53:50 +02:00
|
|
|
|
2021-09-21 02:29:54 +02:00
|
|
|
|
|
|
|
ImGui::SeparatorEx(ImGuiSeparatorFlags_Vertical);
|
|
|
|
ImGui::Spacing();
|
|
|
|
|
|
|
|
// Provider switcher
|
|
|
|
ImGui::Disabled([] {
|
|
|
|
auto &providers = ImHexApi::Provider::getProviders();
|
|
|
|
|
|
|
|
std::string preview;
|
|
|
|
if (ImHexApi::Provider::isValid())
|
|
|
|
preview = providers[SharedData::currentProvider]->getName();
|
|
|
|
|
|
|
|
ImGui::SetNextItemWidth(200 * SharedData::globalScale);
|
|
|
|
if (ImGui::BeginCombo("", preview.c_str())) {
|
|
|
|
|
|
|
|
for (int i = 0; i < providers.size(); i++) {
|
|
|
|
if (ImGui::Selectable(providers[i]->getName().c_str())) {
|
|
|
|
SharedData::currentProvider = i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ImGui::EndCombo();
|
|
|
|
}
|
|
|
|
|
|
|
|
}, !ImHexApi::Provider::isValid());
|
2021-08-21 00:52:11 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2021-06-07 18:13:54 +02:00
|
|
|
}
|