2023-01-23 08:44:16 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <imgui.h>
|
|
|
|
#include <vector>
|
|
|
|
|
2023-01-24 05:17:05 +00:00
|
|
|
#include "../config.h"
|
2023-01-23 08:44:16 +00:00
|
|
|
#include "../logcat_entry.h"
|
2023-02-02 12:50:28 +00:00
|
|
|
#include "../logcat_thread.h"
|
2023-01-23 08:44:16 +00:00
|
|
|
|
2023-02-02 12:50:28 +00:00
|
|
|
void main_window(bool latest_log_entries_read, ImFont* monospace_font, LogcatThread& logcat_thread,
|
2023-01-28 14:11:46 +00:00
|
|
|
std::vector<LogcatEntry>& logcat_entries, std::vector<size_t>& filtered_logcat_entry_offsets,
|
|
|
|
const Config& active_config, Config& inactive_config,
|
2023-02-01 15:22:08 +00:00
|
|
|
bool* show_settings_window, bool* show_filters_window, bool* show_exclusions_window, bool* show_logs_window, bool* run_event_loop);
|