123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413 |
- /*
- * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are met:
- *
- * 1. Redistributions of source code must retain the above copyright notice, this
- * list of conditions and the following disclaimer.
- *
- * 2. Redistributions in binary form must reproduce the above copyright notice,
- * this list of conditions and the following disclaimer in the documentation
- * and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
- * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
- * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
- * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
- * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
- * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
- #include "Editor.h"
- #include "EditorWrapper.h"
- #include <AK/ByteBuffer.h>
- #include <AK/LexicalPath.h>
- #include <LibCore/DirIterator.h>
- #include <LibCore/File.h>
- #include <LibGUI/Application.h>
- #include <LibGUI/Label.h>
- #include <LibGUI/Painter.h>
- #include <LibGUI/ScrollBar.h>
- #include <LibGUI/SyntaxHighlighter.h>
- #include <LibGUI/Window.h>
- #include <LibMarkdown/Document.h>
- #include <LibWeb/DOM/ElementFactory.h>
- #include <LibWeb/DOM/HTMLHeadElement.h>
- #include <LibWeb/DOM/Text.h>
- #include <LibWeb/PageView.h>
- #include <LibWeb/Parser/HTMLParser.h>
- // #define EDITOR_DEBUG
- Editor::Editor()
- {
- m_documentation_tooltip_window = GUI::Window::construct();
- m_documentation_tooltip_window->set_rect(0, 0, 500, 400);
- m_documentation_tooltip_window->set_window_type(GUI::WindowType::Tooltip);
- m_documentation_page_view = m_documentation_tooltip_window->set_main_widget<Web::PageView>();
- }
- Editor::~Editor()
- {
- }
- EditorWrapper& Editor::wrapper()
- {
- return static_cast<EditorWrapper&>(*parent());
- }
- const EditorWrapper& Editor::wrapper() const
- {
- return static_cast<const EditorWrapper&>(*parent());
- }
- void Editor::focusin_event(Core::Event& event)
- {
- wrapper().set_editor_has_focus({}, true);
- if (on_focus)
- on_focus();
- GUI::TextEditor::focusin_event(event);
- }
- void Editor::focusout_event(Core::Event& event)
- {
- wrapper().set_editor_has_focus({}, false);
- GUI::TextEditor::focusout_event(event);
- }
- Gfx::Rect Editor::breakpoint_icon_rect(size_t line_number) const
- {
- auto ruler_line_rect = ruler_content_rect(line_number);
- auto scroll_value = vertical_scrollbar().value();
- ruler_line_rect = ruler_line_rect.translated({ 0, -scroll_value });
- auto center = ruler_line_rect.center().translated({ ruler_line_rect.width() - 10, -line_spacing() - 3 });
- constexpr int size = 32;
- return { center.x() - size / 2, center.y() - size / 2, size, size };
- }
- void Editor::paint_event(GUI::PaintEvent& event)
- {
- GUI::TextEditor::paint_event(event);
- GUI::Painter painter(*this);
- if (is_focused()) {
- painter.add_clip_rect(event.rect());
- auto rect = frame_inner_rect();
- if (vertical_scrollbar().is_visible())
- rect.set_width(rect.width() - vertical_scrollbar().width());
- if (horizontal_scrollbar().is_visible())
- rect.set_height(rect.height() - horizontal_scrollbar().height());
- painter.draw_rect(rect, palette().selection());
- }
- if (m_hovering_lines_ruler)
- window()->set_override_cursor(GUI::StandardCursor::Arrow);
- else if (m_hovering_editor)
- window()->set_override_cursor(m_hovering_link && m_holding_ctrl ? GUI::StandardCursor::Hand : GUI::StandardCursor::IBeam);
- if (ruler_visible()) {
- size_t first_visible_line = text_position_at(event.rect().top_left()).line();
- size_t last_visible_line = text_position_at(event.rect().bottom_right()).line();
- for (size_t line : m_breakpoint_lines) {
- if (line < first_visible_line || line > last_visible_line) {
- continue;
- }
- const auto& icon = breakpoint_icon_bitmap();
- painter.blit(breakpoint_icon_rect(line).center(), icon, icon.rect());
- }
- if (m_execution_position.has_value()) {
- const auto& icon = current_position_icon_bitmap();
- painter.blit(breakpoint_icon_rect(m_execution_position.value()).center(), icon, icon.rect());
- }
- }
- }
- static HashMap<String, String>& man_paths()
- {
- static HashMap<String, String> paths;
- if (paths.is_empty()) {
- // FIXME: This should also search man3, possibly other places..
- Core::DirIterator it("/usr/share/man/man2", Core::DirIterator::Flags::SkipDots);
- while (it.has_next()) {
- auto path = String::format("/usr/share/man/man2/%s", it.next_path().characters());
- auto title = LexicalPath(path).title();
- paths.set(title, path);
- }
- }
- return paths;
- }
- void Editor::show_documentation_tooltip_if_available(const String& hovered_token, const Gfx::Point& screen_location)
- {
- auto it = man_paths().find(hovered_token);
- if (it == man_paths().end()) {
- #ifdef EDITOR_DEBUG
- dbg() << "no man path for " << hovered_token;
- #endif
- m_documentation_tooltip_window->hide();
- return;
- }
- if (m_documentation_tooltip_window->is_visible() && hovered_token == m_last_parsed_token) {
- return;
- }
- #ifdef EDITOR_DEBUG
- dbg() << "opening " << it->value;
- #endif
- auto file = Core::File::construct(it->value);
- if (!file->open(Core::File::ReadOnly)) {
- dbg() << "failed to open " << it->value << " " << file->error_string();
- return;
- }
- auto man_document = Markdown::Document::parse(file->read_all());
- if (!man_document) {
- dbg() << "failed to parse markdown";
- return;
- }
- auto html_text = man_document->render_to_html();
- auto html_document = Web::parse_html_document(html_text);
- if (!html_document) {
- dbg() << "failed to parse HTML";
- return;
- }
- // FIXME: LibWeb needs a friendlier DOM manipulation API. Something like innerHTML :^)
- auto style_element = create_element(*html_document, "style");
- style_element->append_child(adopt(*new Web::Text(*html_document, "body { background-color: #dac7b5; }")));
- // FIXME: This const_cast should not be necessary.
- auto* head_element = const_cast<Web::HTMLHeadElement*>(html_document->head());
- ASSERT(head_element);
- head_element->append_child(style_element);
- m_documentation_page_view->set_document(html_document);
- m_documentation_tooltip_window->move_to(screen_location.translated(4, 4));
- m_documentation_tooltip_window->show();
- m_last_parsed_token = hovered_token;
- }
- void Editor::mousemove_event(GUI::MouseEvent& event)
- {
- GUI::TextEditor::mousemove_event(event);
- if (document().spans().is_empty())
- return;
- auto text_position = text_position_at(event.position());
- if (!text_position.is_valid()) {
- m_documentation_tooltip_window->hide();
- return;
- }
- auto highlighter = wrapper().editor().syntax_highlighter();
- if (!highlighter)
- return;
- auto ruler_line_rect = ruler_content_rect(text_position.line());
- m_hovering_lines_ruler = (event.position().x() < ruler_line_rect.width());
- bool hide_tooltip = true;
- bool is_over_link = false;
- for (auto& span : document().spans()) {
- if (span.range.contains(m_previous_text_position) && !span.range.contains(text_position)) {
- if (highlighter->is_navigatable(span.data) && span.is_underlined) {
- span.is_underlined = false;
- wrapper().editor().update();
- }
- }
- if (span.range.contains(text_position)) {
- auto adjusted_range = span.range;
- auto end_line_length = document().line(span.range.end().line()).length();
- adjusted_range.end().set_column(min(end_line_length, adjusted_range.end().column() + 1));
- auto hovered_span_text = document().text_in_range(adjusted_range);
- #ifdef EDITOR_DEBUG
- dbg() << "Hovering: " << adjusted_range << " \"" << hovered_span_text << "\"";
- #endif
- if (highlighter->is_navigatable(span.data)) {
- is_over_link = true;
- bool was_underlined = span.is_underlined;
- span.is_underlined = event.modifiers() & Mod_Ctrl;
- if (span.is_underlined != was_underlined) {
- wrapper().editor().update();
- }
- }
- if (highlighter->is_identifier(span.data)) {
- show_documentation_tooltip_if_available(hovered_span_text, event.position().translated(screen_relative_rect().location()));
- hide_tooltip = false;
- }
- }
- }
- m_previous_text_position = text_position;
- if (hide_tooltip)
- m_documentation_tooltip_window->hide();
- m_hovering_link = is_over_link && (event.modifiers() & Mod_Ctrl);
- }
- void Editor::mousedown_event(GUI::MouseEvent& event)
- {
- auto highlighter = wrapper().editor().syntax_highlighter();
- if (!highlighter) {
- GUI::TextEditor::mousedown_event(event);
- return;
- }
- auto text_position = text_position_at(event.position());
- auto ruler_line_rect = ruler_content_rect(text_position.line());
- if (event.position().x() < ruler_line_rect.width()) {
- if (!m_breakpoint_lines.contains_slow(text_position.line())) {
- m_breakpoint_lines.append(text_position.line());
- on_breakpoint_change(wrapper().filename_label().text(), text_position.line(), BreakpointChange::Added);
- } else {
- m_breakpoint_lines.remove_first_matching([&](size_t line) { return line == text_position.line(); });
- on_breakpoint_change(wrapper().filename_label().text(), text_position.line(), BreakpointChange::Removed);
- }
- }
- if (!(event.modifiers() & Mod_Ctrl)) {
- GUI::TextEditor::mousedown_event(event);
- return;
- }
- if (!text_position.is_valid()) {
- GUI::TextEditor::mousedown_event(event);
- return;
- }
- for (auto& span : document().spans()) {
- if (span.range.contains(text_position)) {
- if (!highlighter->is_navigatable(span.data)) {
- GUI::TextEditor::mousedown_event(event);
- return;
- }
- auto adjusted_range = span.range;
- adjusted_range.end().set_column(adjusted_range.end().column() + 1);
- auto span_text = document().text_in_range(adjusted_range);
- auto header_path = span_text.substring(1, span_text.length() - 2);
- #ifdef EDITOR_DEBUG
- dbg() << "Ctrl+click: " << adjusted_range << " \"" << header_path << "\"";
- #endif
- navigate_to_include_if_available(header_path);
- return;
- }
- }
- GUI::TextEditor::mousedown_event(event);
- }
- void Editor::keydown_event(GUI::KeyEvent& event)
- {
- if (event.key() == Key_Control)
- m_holding_ctrl = true;
- GUI::TextEditor::keydown_event(event);
- }
- void Editor::keyup_event(GUI::KeyEvent& event)
- {
- if (event.key() == Key_Control)
- m_holding_ctrl = false;
- GUI::TextEditor::keyup_event(event);
- }
- void Editor::enter_event(Core::Event& event)
- {
- m_hovering_editor = true;
- GUI::TextEditor::enter_event(event);
- }
- void Editor::leave_event(Core::Event& event)
- {
- m_hovering_editor = false;
- GUI::TextEditor::leave_event(event);
- }
- static HashMap<String, String>& include_paths()
- {
- static HashMap<String, String> paths;
- auto add_directory = [](String base, Optional<String> recursive, auto handle_directory) -> void {
- Core::DirIterator it(recursive.value_or(base), Core::DirIterator::Flags::SkipDots);
- while (it.has_next()) {
- auto path = it.next_full_path();
- if (!Core::File::is_directory(path)) {
- auto key = path.substring(base.length() + 1, path.length() - base.length() - 1);
- #ifdef EDITOR_DEBUG
- dbg() << "Adding header \"" << key << "\" in path \"" << path << "\"";
- #endif
- paths.set(key, path);
- } else {
- handle_directory(base, path, handle_directory);
- }
- }
- };
- if (paths.is_empty()) {
- add_directory(".", {}, add_directory);
- add_directory("/usr/local/include", {}, add_directory);
- add_directory("/usr/local/include/c++/9.2.0", {}, add_directory);
- add_directory("/usr/include", {}, add_directory);
- }
- return paths;
- }
- void Editor::navigate_to_include_if_available(String path)
- {
- auto it = include_paths().find(path);
- if (it == include_paths().end()) {
- #ifdef EDITOR_DEBUG
- dbg() << "no header " << path << " found.";
- #endif
- return;
- }
- on_open(it->value);
- }
- void Editor::set_execution_position(size_t line_number)
- {
- m_execution_position = line_number;
- scroll_position_into_view({ line_number, 0 });
- update(breakpoint_icon_rect(line_number));
- }
- void Editor::clear_execution_position()
- {
- if (!m_execution_position.has_value()) {
- return;
- }
- size_t previous_position = m_execution_position.value();
- m_execution_position = {};
- update(breakpoint_icon_rect(previous_position));
- }
- const Gfx::Bitmap& Editor::breakpoint_icon_bitmap()
- {
- static auto bitmap = Gfx::Bitmap::load_from_file("/res/icons/breakpoint.png");
- return *bitmap;
- }
- const Gfx::Bitmap& Editor::current_position_icon_bitmap()
- {
- static auto bitmap = Gfx::Bitmap::load_from_file("/res/icons/16x16/go-forward.png");
- return *bitmap;
- }
|