1234567891011121314151617181920212223242526272829303132333435363738394041 |
- #include "TextEditorWidget.h"
- #include <LibDraw/PNGLoader.h>
- #include <stdio.h>
- int main(int argc, char** argv)
- {
- if (pledge("stdio rpath cpath wpath shared_buffer unix fattr", nullptr) < 0) {
- perror("pledge");
- return 1;
- }
- GApplication app(argc, argv);
- if (pledge("stdio rpath cpath wpath shared_buffer unix", nullptr) < 0) {
- perror("pledge");
- return 1;
- }
- auto window = GWindow::construct();
- window->set_title("Text Editor");
- window->set_rect(20, 200, 640, 400);
- auto text_widget = TextEditorWidget::construct();
- window->set_main_widget(text_widget);
- text_widget->editor().set_focus(true);
- window->on_close_request = [&]() -> GWindow::CloseRequestDecision {
- if (text_widget->request_close())
- return GWindow::CloseRequestDecision::Close;
- return GWindow::CloseRequestDecision::StayOpen;
- };
- if (argc >= 2)
- text_widget->open_sesame(argv[1]);
- window->show();
- window->set_icon(load_png("/res/icons/TextEditor16.png"));
- return app.exec();
- }
|