/* * Copyright (c) 2018-2021, Andreas Kling * Copyright (c) 2022, the SerenityOS developers. * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include #include #include #include #include #include #include #include #include namespace TextEditor { class MainWidget final : public GUI::Widget { C_OBJECT(MainWidget); public: virtual ~MainWidget() override = default; bool read_file(Core::File&); void open_nonexistent_file(String const& path); bool request_close(); GUI::TextEditor& editor() { return *m_editor; } enum class PreviewMode { None, Markdown, HTML, }; void set_preview_mode(PreviewMode); void set_auto_detect_preview_mode(bool value) { m_auto_detect_preview_mode = value; } void update_title(); void update_statusbar(); void initialize_menubar(GUI::Window&); private: MainWidget(); void set_path(StringView); void update_preview(); void update_markdown_preview(); void update_html_preview(); Web::OutOfProcessWebView& ensure_web_view(); void set_web_view_visible(bool); virtual void drop_event(GUI::DropEvent&) override; RefPtr m_editor; String m_path; String m_name; String m_extension; RefPtr m_new_action; RefPtr m_open_action; RefPtr m_save_action; RefPtr m_save_as_action; RefPtr m_find_replace_action; RefPtr m_vim_emulation_setting_action; RefPtr m_find_next_action; RefPtr m_find_previous_action; RefPtr m_replace_action; RefPtr m_replace_all_action; RefPtr m_layout_toolbar_action; RefPtr m_layout_statusbar_action; RefPtr m_layout_ruler_action; GUI::ActionGroup m_preview_actions; RefPtr m_no_preview_action; RefPtr m_markdown_preview_action; RefPtr m_html_preview_action; RefPtr m_toolbar; RefPtr m_toolbar_container; RefPtr m_statusbar; RefPtr m_line_column_statusbar_menu; RefPtr m_syntax_statusbar_menu; RefPtr m_find_textbox; RefPtr m_replace_textbox; RefPtr m_find_previous_button; RefPtr m_find_next_button; RefPtr m_replace_button; RefPtr m_replace_all_button; RefPtr m_find_replace_widget; RefPtr m_find_widget; RefPtr m_replace_widget; RefPtr m_regex_checkbox; RefPtr m_match_case_checkbox; RefPtr m_wrap_around_checkbox; GUI::ActionGroup m_wrapping_mode_actions; RefPtr m_no_wrapping_action; RefPtr m_wrap_anywhere_action; RefPtr m_wrap_at_words_action; RefPtr m_visualize_trailing_whitespace_action; RefPtr m_visualize_leading_whitespace_action; RefPtr m_cursor_line_highlighting_action; GUI::ActionGroup m_soft_tab_width_actions; RefPtr m_soft_tab_1_width_action; RefPtr m_soft_tab_2_width_action; RefPtr m_soft_tab_4_width_action; RefPtr m_soft_tab_8_width_action; RefPtr m_soft_tab_16_width_action; GUI::ActionGroup syntax_actions; RefPtr m_plain_text_highlight; RefPtr m_cpp_highlight; RefPtr m_css_highlight; RefPtr m_js_highlight; RefPtr m_html_highlight; RefPtr m_git_highlight; RefPtr m_gml_highlight; RefPtr m_ini_highlight; RefPtr m_shell_highlight; RefPtr m_sql_highlight; RefPtr m_page_view; bool m_auto_detect_preview_mode { false }; bool m_use_regex { false }; bool m_match_case { true }; bool m_should_wrap { true }; PreviewMode m_preview_mode { PreviewMode::None }; }; }