2023-01-23 08:44:16 +00:00
|
|
|
#pragma once
|
|
|
|
|
2023-02-22 09:33:36 +00:00
|
|
|
struct ImFont; // forward declaration from imgui/imgui.h
|
2023-01-23 08:44:16 +00:00
|
|
|
#include <vector>
|
|
|
|
|
2023-02-22 09:33:36 +00:00
|
|
|
struct Config; // forward declaration from ../config.h
|
|
|
|
class LogcatThread; // forward declaration from ../logcat_thread.h
|
2023-03-29 10:08:31 +00:00
|
|
|
class LogcatEntries; // forward declaration from ../logcat_entry.h
|
2023-01-23 08:44:16 +00:00
|
|
|
|
2023-03-29 10:08:31 +00:00
|
|
|
void main_window(bool latest_log_entries_read, ImFont* monospace_font, LogcatThread& logcat_thread, LogcatEntries& logcat_entries,
|
2023-02-05 15:57:46 +00:00
|
|
|
const Config& __restrict active_config, Config& __restrict inactive_config,
|
2023-02-23 09:08:55 +00:00
|
|
|
bool* __restrict show_settings_window, bool* __restrict show_logs_window);
|