#pragma once #include "Utilities/File.h" #include "util/logs.hpp" #include "custom_dock_widget.h" #include "find_dialog.h" #include #include #include #include class gui_settings; class log_frame : public custom_dock_widget { Q_OBJECT public: explicit log_frame(std::shared_ptr _gui_settings, QWidget* parent = nullptr); /** Repaint log colors after new stylesheet was applied */ void RepaintTextColors(); public Q_SLOTS: /** Loads from settings. Public so that main_window can call this easily. */ void LoadSettings(); Q_SIGNALS: void LogFrameClosed(); protected: /** Override inherited method from Qt to allow signalling when close happened.*/ void closeEvent(QCloseEvent* event) override; bool eventFilter(QObject* object, QEvent* event) override; private Q_SLOTS: void UpdateUI(); private: void SetLogLevel(logs::level lev) const; void SetTTYLogging(bool val) const; void CreateAndConnectActions(); QTabWidget* m_tabWidget = nullptr; std::unique_ptr m_find_dialog; QList m_color; QColor m_color_stack; QPlainTextEdit* m_log = nullptr; QString m_old_log_text; QString m_old_tty_text; ullong m_log_counter{}; ullong m_tty_counter{}; bool m_stack_log{}; bool m_stack_tty{}; fs::file m_tty_file; QWidget* m_tty_container = nullptr; QPlainTextEdit* m_tty = nullptr; QLineEdit* m_tty_input = nullptr; int m_tty_channel = -1; QAction* m_clear_act = nullptr; QAction* m_clear_tty_act = nullptr; QActionGroup* m_log_level_acts = nullptr; QAction* m_nothing_act = nullptr; QAction* m_fatal_act = nullptr; QAction* m_error_act = nullptr; QAction* m_todo_act = nullptr; QAction* m_success_act = nullptr; QAction* m_warning_act = nullptr; QAction* m_notice_act = nullptr; QAction* m_trace_act = nullptr; QAction* m_stack_act_log = nullptr; QAction* m_stack_act_tty = nullptr; QAction* m_stack_act_err = nullptr; QAction* m_show_prefix_act = nullptr; QAction* m_tty_act = nullptr; QActionGroup* m_tty_channel_acts = nullptr; std::shared_ptr m_gui_settings; };