#include #include #include #include #include "../misc.h" #include "../logcat_entry.h" #include "main.h" static inline void render_table(ImFont* monospace_font, std::vector& logcat_entries, std::vector& filtered_logcat_entry_offsets) { ImGui::PushStyleVar(ImGuiStyleVar_ItemSpacing, ImVec2(0, 0)); ImGui::TableSetupScrollFreeze(0, 1); ImGui::TableSetupColumn("Time", ImGuiTableColumnFlags_None); ImGui::TableSetupColumn("User", ImGuiTableColumnFlags_None); ImGui::TableSetupColumn("PID", ImGuiTableColumnFlags_None); ImGui::TableSetupColumn("TID", ImGuiTableColumnFlags_None); ImGui::TableSetupColumn("Buffer", ImGuiTableColumnFlags_None); ImGui::TableSetupColumn("Priority", ImGuiTableColumnFlags_None); ImGui::TableSetupColumn("Tag", ImGuiTableColumnFlags_None); ImGui::TableSetupColumn("Message", ImGuiTableColumnFlags_None); ImGui::TableHeadersRow(); ImGui::PushFont(monospace_font); ImGuiListClipper clipper; clipper.Begin(static_cast(filtered_logcat_entry_offsets.size())); while (clipper.Step()) { for (int i = clipper.DisplayStart; i < clipper.DisplayEnd; i++) { const LogcatEntry* logcat_entry = &logcat_entries[filtered_logcat_entry_offsets[static_cast(i)]]; char time_as_str[128] = {0}; strftime(time_as_str, 127 * sizeof(char), "%c", localtime(&logcat_entry->time)); ImGui::TableNextRow(); if (ImGui::TableSetColumnIndex(0)) ImGui::TextUnformatted(time_as_str); if (logcat_entry->user && ImGui::TableSetColumnIndex(1)) { ImGui::TextUnformatted(*logcat_entry->user); } if (ImGui::TableSetColumnIndex(2)) ImGui::Text("%zu", logcat_entry->pid); if (ImGui::TableSetColumnIndex(3)) ImGui::Text("%zu", logcat_entry->tid); if (ImGui::TableSetColumnIndex(4)) ImGui::TextUnformatted(buffer_to(logcat_entry->buffer)); if (ImGui::TableSetColumnIndex(5)) ImGui::TextUnformatted(priority_to(logcat_entry->priority)); if (ImGui::TableSetColumnIndex(6)) ImGui::TextUnformatted(logcat_entry->tag); if (ImGui::TableSetColumnIndex(7)) ImGui::TextUnformatted(logcat_entry->message); } } clipper.End(); ImGui::PopFont(); ImGui::PopStyleVar(); if (ImGui::GetScrollY() >= ImGui::GetScrollMaxY()) { ImGui::SetScrollHereY(1.0f); } ImGui::EndTable(); } void main_window(bool latest_log_entries_read, ImFont* monospace_font, std::vector& logcat_entries, std::vector& filtered_logcat_entry_offsets, const Config& active_config, Config& inactive_config, const Filters& active_filters, Filters& inactive_filters, bool* show_settings_window, bool* show_filters_window, bool* show_logs_window, bool* run_event_loop) { ImGui::SetNextWindowPos(ImGui::GetMainViewport()->WorkPos); ImGui::SetNextWindowSize(ImGui::GetMainViewport()->WorkSize); if (!ImGui::Begin("LogMeow", run_event_loop, ImGuiWindowFlags_NoDecoration | ImGuiWindowFlags_NoMove | ImGuiWindowFlags_NoBringToFrontOnFocus)) { ImGui::End(); return; } if (ImGui::Button("Settings") && !*show_settings_window) { inactive_config = active_config; *show_settings_window = true; } ImGui::SameLine(); if (ImGui::Button("Filters") && !*show_filters_window) { copy_filters(inactive_filters, active_filters); *show_filters_window = true; } ImGui::SameLine(); bool open_logs; if (!latest_log_entries_read) { open_logs = ImGui::RedButton("Logs"); } else { open_logs = ImGui::Button("Logs"); } if (open_logs) { *show_logs_window = true; } ImGui::Separator(); // copied from imgui/imgui_demo.cpp: [SECTION] Example App: Debug Console / ShowExampleAppConsole() // and [SECTION] Example App: Long Text / ShowExampleAppLongText() // and [SECTION] Example App: Debug Log / ShowExampleAppLog() // and Tables/Vertical scrolling, with clipping const constexpr ImGuiTableFlags flags = ImGuiTableFlags_ScrollY | ImGuiTableFlags_ScrollX | ImGuiTableFlags_RowBg | ImGuiTableFlags_BordersOuter | ImGuiTableFlags_BordersV | ImGuiTableFlags_Resizable | ImGuiTableFlags_Reorderable | ImGuiTableFlags_Hideable; if (ImGui::BeginTable("logcat", 8, flags)) { render_table(monospace_font, logcat_entries, filtered_logcat_entry_offsets); } ImGui::End(); }