2019-07-11 21:52:33 +03:00
|
|
|
#include "TextEditorWidget.h"
|
2019-07-14 03:58:04 +03:00
|
|
|
#include <AK/Optional.h>
|
2019-07-11 21:52:33 +03:00
|
|
|
#include <AK/StringBuilder.h>
|
|
|
|
#include <LibCore/CFile.h>
|
|
|
|
#include <LibGUI/GAction.h>
|
|
|
|
#include <LibGUI/GBoxLayout.h>
|
2019-08-21 22:30:20 +03:00
|
|
|
#include <LibGUI/GButton.h>
|
2019-07-11 21:52:33 +03:00
|
|
|
#include <LibGUI/GFilePicker.h>
|
|
|
|
#include <LibGUI/GFontDatabase.h>
|
|
|
|
#include <LibGUI/GMenuBar.h>
|
|
|
|
#include <LibGUI/GMessageBox.h>
|
|
|
|
#include <LibGUI/GStatusBar.h>
|
2019-08-21 22:30:20 +03:00
|
|
|
#include <LibGUI/GTextBox.h>
|
2019-07-11 21:52:33 +03:00
|
|
|
#include <LibGUI/GTextEditor.h>
|
|
|
|
#include <LibGUI/GToolBar.h>
|
|
|
|
|
|
|
|
TextEditorWidget::TextEditorWidget()
|
|
|
|
{
|
|
|
|
set_layout(make<GBoxLayout>(Orientation::Vertical));
|
|
|
|
layout()->set_spacing(0);
|
|
|
|
|
|
|
|
auto* toolbar = new GToolBar(this);
|
|
|
|
m_editor = new GTextEditor(GTextEditor::MultiLine, this);
|
|
|
|
m_editor->set_ruler_visible(true);
|
|
|
|
m_editor->set_automatic_indentation_enabled(true);
|
2019-08-21 22:30:20 +03:00
|
|
|
|
|
|
|
auto* find_widget = new GWidget(this);
|
|
|
|
find_widget->set_fill_with_background_color(true);
|
|
|
|
find_widget->set_size_policy(SizePolicy::Fill, SizePolicy::Fixed);
|
|
|
|
find_widget->set_preferred_size(0, 22);
|
|
|
|
find_widget->set_layout(make<GBoxLayout>(Orientation::Horizontal));
|
|
|
|
find_widget->layout()->set_margins({ 2, 2, 2, 2 });
|
2019-08-22 12:02:03 +03:00
|
|
|
find_widget->set_visible(false);
|
2019-08-21 22:30:20 +03:00
|
|
|
|
|
|
|
m_find_textbox = new GTextBox(find_widget);
|
|
|
|
|
|
|
|
m_find_button = new GButton("Find", find_widget);
|
|
|
|
m_find_button->set_size_policy(SizePolicy::Fixed, SizePolicy::Fill);
|
|
|
|
m_find_button->set_preferred_size(100, 0);
|
|
|
|
|
|
|
|
m_find_button->on_click = [this](auto&) {
|
|
|
|
auto needle = m_find_textbox->text();
|
|
|
|
auto found_range = m_editor->find(needle, m_editor->normalized_selection().end());
|
|
|
|
dbg() << "find(\"" << needle << "\") returned " << found_range;
|
|
|
|
if (found_range.is_valid()) {
|
|
|
|
m_editor->set_selection(found_range);
|
|
|
|
} else {
|
|
|
|
GMessageBox::show(
|
|
|
|
String::format("Not found: \"%s\"", needle.characters()),
|
|
|
|
"Not found",
|
|
|
|
GMessageBox::Type::Information,
|
|
|
|
GMessageBox::InputType::OK, window());
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-08-22 12:02:03 +03:00
|
|
|
m_find_action = GAction::create("Find...", { Mod_Ctrl, Key_F }, [this, find_widget](auto&) {
|
|
|
|
find_widget->set_visible(true);
|
|
|
|
m_find_textbox->set_focus(true);
|
|
|
|
});
|
|
|
|
|
2019-07-11 21:52:33 +03:00
|
|
|
auto* statusbar = new GStatusBar(this);
|
|
|
|
|
|
|
|
m_editor->on_cursor_change = [statusbar, this] {
|
|
|
|
StringBuilder builder;
|
2019-07-27 22:20:38 +03:00
|
|
|
builder.appendf("Line: %d, Column: %d", m_editor->cursor().line() + 1, m_editor->cursor().column());
|
2019-07-11 21:52:33 +03:00
|
|
|
statusbar->set_text(builder.to_string());
|
|
|
|
};
|
|
|
|
|
2019-07-26 07:48:39 +03:00
|
|
|
m_new_action = GAction::create("New", { Mod_Ctrl, Key_N }, GraphicsBitmap::load_from_file("/res/icons/16x16/new.png"), [](const GAction&) {
|
2019-07-11 21:52:33 +03:00
|
|
|
dbgprintf("FIXME: Implement File/New\n");
|
|
|
|
});
|
|
|
|
|
2019-07-26 07:48:39 +03:00
|
|
|
m_open_action = GAction::create("Open...", { Mod_Ctrl, Key_O }, GraphicsBitmap::load_from_file("/res/icons/16x16/open.png"), [this](const GAction&) {
|
2019-07-29 07:45:50 +03:00
|
|
|
Optional<String> open_path = GFilePicker::get_open_filepath();
|
2019-07-11 21:52:33 +03:00
|
|
|
|
2019-07-29 07:45:50 +03:00
|
|
|
if (!open_path.has_value())
|
2019-07-14 03:58:04 +03:00
|
|
|
return;
|
|
|
|
|
2019-07-29 07:45:50 +03:00
|
|
|
open_sesame(open_path.value());
|
2019-07-11 21:52:33 +03:00
|
|
|
});
|
|
|
|
|
2019-07-26 07:48:39 +03:00
|
|
|
m_save_as_action = GAction::create("Save as...", { Mod_None, Key_F12 }, GraphicsBitmap::load_from_file("/res/icons/16x16/save.png"), [this](const GAction&) {
|
2019-07-29 07:45:50 +03:00
|
|
|
Optional<String> save_path = GFilePicker::get_save_filepath(m_name.is_null() ? "Untitled" : m_name, m_extension.is_null() ? "txt" : m_extension);
|
|
|
|
if (!save_path.has_value())
|
2019-07-14 03:58:04 +03:00
|
|
|
return;
|
|
|
|
|
2019-07-29 07:45:50 +03:00
|
|
|
if (!m_editor->write_to_file(save_path.value())) {
|
2019-07-16 22:32:10 +03:00
|
|
|
GMessageBox::show("Unable to save file.\n", "Error", GMessageBox::Type::Error, GMessageBox::InputType::OK, window());
|
2019-07-14 03:58:04 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-07-29 07:45:50 +03:00
|
|
|
set_path(FileSystemPath(save_path.value()));
|
|
|
|
dbg() << "Wrote document to " << save_path.value();
|
2019-07-24 07:32:30 +03:00
|
|
|
});
|
|
|
|
|
2019-07-26 07:48:39 +03:00
|
|
|
m_save_action = GAction::create("Save", { Mod_Ctrl, Key_S }, GraphicsBitmap::load_from_file("/res/icons/16x16/save.png"), [&](const GAction&) {
|
2019-07-24 07:32:30 +03:00
|
|
|
if (!m_path.is_empty()) {
|
|
|
|
if (!m_editor->write_to_file(m_path))
|
|
|
|
GMessageBox::show("Unable to save file.\n", "Error", GMessageBox::Type::Error, GMessageBox::InputType::OK, window());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-07-26 07:48:39 +03:00
|
|
|
m_save_as_action->activate();
|
2019-07-11 21:52:33 +03:00
|
|
|
});
|
|
|
|
|
|
|
|
auto menubar = make<GMenuBar>();
|
|
|
|
auto app_menu = make<GMenu>("Text Editor");
|
|
|
|
app_menu->add_action(GAction::create("Quit", { Mod_Alt, Key_F4 }, [](const GAction&) {
|
|
|
|
GApplication::the().quit(0);
|
|
|
|
return;
|
|
|
|
}));
|
|
|
|
menubar->add_menu(move(app_menu));
|
|
|
|
|
|
|
|
auto file_menu = make<GMenu>("File");
|
2019-07-26 07:48:39 +03:00
|
|
|
file_menu->add_action(*m_new_action);
|
|
|
|
file_menu->add_action(*m_open_action);
|
|
|
|
file_menu->add_action(*m_save_action);
|
2019-07-27 21:32:06 +03:00
|
|
|
file_menu->add_action(*m_save_as_action);
|
2019-07-11 21:52:33 +03:00
|
|
|
menubar->add_menu(move(file_menu));
|
|
|
|
|
|
|
|
auto edit_menu = make<GMenu>("Edit");
|
|
|
|
edit_menu->add_action(m_editor->undo_action());
|
|
|
|
edit_menu->add_action(m_editor->redo_action());
|
|
|
|
edit_menu->add_separator();
|
|
|
|
edit_menu->add_action(m_editor->cut_action());
|
|
|
|
edit_menu->add_action(m_editor->copy_action());
|
|
|
|
edit_menu->add_action(m_editor->paste_action());
|
|
|
|
edit_menu->add_action(m_editor->delete_action());
|
2019-08-22 12:02:03 +03:00
|
|
|
edit_menu->add_separator();
|
|
|
|
edit_menu->add_action(*m_find_action);
|
2019-07-11 21:52:33 +03:00
|
|
|
menubar->add_menu(move(edit_menu));
|
|
|
|
|
|
|
|
auto font_menu = make<GMenu>("Font");
|
|
|
|
GFontDatabase::the().for_each_fixed_width_font([&](const StringView& font_name) {
|
|
|
|
font_menu->add_action(GAction::create(font_name, [this](const GAction& action) {
|
|
|
|
m_editor->set_font(GFontDatabase::the().get_by_name(action.text()));
|
|
|
|
m_editor->update();
|
|
|
|
}));
|
|
|
|
});
|
|
|
|
menubar->add_menu(move(font_menu));
|
|
|
|
|
|
|
|
auto help_menu = make<GMenu>("Help");
|
|
|
|
help_menu->add_action(GAction::create("About", [](const GAction&) {
|
|
|
|
dbgprintf("FIXME: Implement Help/About\n");
|
|
|
|
}));
|
|
|
|
menubar->add_menu(move(help_menu));
|
|
|
|
|
|
|
|
GApplication::the().set_menubar(move(menubar));
|
|
|
|
|
2019-07-26 07:48:39 +03:00
|
|
|
toolbar->add_action(*m_new_action);
|
|
|
|
toolbar->add_action(*m_open_action);
|
|
|
|
toolbar->add_action(*m_save_action);
|
2019-07-11 21:52:33 +03:00
|
|
|
|
|
|
|
toolbar->add_separator();
|
|
|
|
|
|
|
|
toolbar->add_action(m_editor->cut_action());
|
|
|
|
toolbar->add_action(m_editor->copy_action());
|
|
|
|
toolbar->add_action(m_editor->paste_action());
|
|
|
|
toolbar->add_action(m_editor->delete_action());
|
|
|
|
|
|
|
|
toolbar->add_separator();
|
|
|
|
|
|
|
|
toolbar->add_action(m_editor->undo_action());
|
|
|
|
toolbar->add_action(m_editor->redo_action());
|
|
|
|
|
|
|
|
m_editor->set_focus(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
TextEditorWidget::~TextEditorWidget()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2019-07-29 07:45:50 +03:00
|
|
|
void TextEditorWidget::set_path(const FileSystemPath& file)
|
2019-07-24 07:32:30 +03:00
|
|
|
{
|
2019-07-29 07:45:50 +03:00
|
|
|
m_path = file.string();
|
|
|
|
m_name = file.title();
|
|
|
|
m_extension = file.extension();
|
2019-07-24 07:32:30 +03:00
|
|
|
StringBuilder builder;
|
|
|
|
builder.append("Text Editor: ");
|
2019-07-29 07:45:50 +03:00
|
|
|
builder.append(file.string());
|
2019-07-24 07:32:30 +03:00
|
|
|
window()->set_title(builder.to_string());
|
|
|
|
}
|
|
|
|
|
2019-07-11 21:52:33 +03:00
|
|
|
void TextEditorWidget::open_sesame(const String& path)
|
|
|
|
{
|
|
|
|
dbgprintf("Our path to file in open_sesame: %s\n", path.characters());
|
|
|
|
CFile file(path);
|
|
|
|
|
|
|
|
if (!file.open(CIODevice::ReadOnly)) {
|
2019-07-16 22:32:10 +03:00
|
|
|
GMessageBox::show(String::format("Opening \"%s\" failed: %s", path.characters(), strerror(errno)), "Error", GMessageBox::Type::Error, GMessageBox::InputType::OK, window());
|
2019-07-11 21:52:33 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
m_editor->set_text(String::copy(file.read_all()));
|
2019-07-29 07:45:50 +03:00
|
|
|
set_path(FileSystemPath(path));
|
2019-07-16 22:32:10 +03:00
|
|
|
}
|