Luna/editor/main.cpp

48 lines
1.3 KiB
C++
Raw Normal View History

2024-02-11 16:10:17 +00:00
/**
* @file main.cpp
* @author apio (cloudapio.eu)
* @brief Graphical text editor.
*
* @copyright Copyright (c) 2024, the Luna authors.
*
*/
#include "EditorWidget.h"
2024-02-27 19:11:14 +00:00
#include <os/ArgumentParser.h>
#include <os/File.h>
2024-02-11 16:10:17 +00:00
#include <ui/App.h>
2024-02-27 19:11:14 +00:00
Result<int> luna_main(int argc, char** argv)
2024-02-11 16:10:17 +00:00
{
2024-02-27 19:11:14 +00:00
StringView path;
os::ArgumentParser parser;
parser.add_description("A graphical text editor"_sv);
parser.add_system_program_info("editor"_sv);
parser.add_positional_argument(path, "path", false);
parser.parse(argc, argv);
2024-02-11 16:10:17 +00:00
ui::App app;
TRY(app.init());
auto* window = TRY(ui::Window::create(ui::Rect { 200, 300, 600, 600 }));
window->set_background(ui::Color::from_rgb(40, 40, 40));
window->set_title("Text Editor");
app.set_main_window(window);
auto* editor = TRY(make<EditorWidget>(ui::Font::default_font()));
window->set_main_widget(*editor);
2024-03-29 19:17:12 +00:00
if (!path.is_empty()) TRY(editor->load_file(path));
2024-02-11 16:10:17 +00:00
TRY(window->add_keyboard_shortcut({ moon::K_CH26, ui::Mod_Ctrl }, true, [&](ui::Shortcut) {
auto result = editor->save_file();
if (result.has_error()) os::eprintln("editor: failed to save file: %s", result.error_string());
else
os::println("editor: buffer saved to %s successfully", editor->path().name().chars());
}));
2024-02-11 16:10:17 +00:00
window->draw();
return app.run();
}