Luna/editor/main.cpp

40 lines
981 B
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>
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()));
2024-02-27 19:11:14 +00:00
if (!path.is_empty()) TRY(editor->load_file(path));
2024-02-11 16:10:17 +00:00
window->set_main_widget(*editor);
window->draw();
return app.run();
}