1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 08:48:11 +00:00

TextEditor: Use ArgsParser and allow the user to specify preview mode

This makes looking at HTML files that somehow fail a little less
painful by allowing the user to actually _see_ the html.
This commit is contained in:
AnotherTest 2020-07-06 18:48:49 +04:30 committed by Andreas Kling
parent 5cdb0ef2e5
commit a163ee8b3b
3 changed files with 36 additions and 8 deletions

View file

@ -25,6 +25,7 @@
*/
#include "TextEditorWidget.h"
#include <LibCore/ArgsParser.h>
#include <LibGfx/Bitmap.h>
#include <stdio.h>
@ -42,6 +43,16 @@ int main(int argc, char** argv)
return 1;
}
const char* preview_mode = "auto";
const char* file_to_edit = nullptr;
Core::ArgsParser parser;
parser.add_option(preview_mode, "Preview mode, one of 'none', 'html', 'markdown', 'auto'", "preview-mode", '\0', "mode");
parser.add_positional_argument(file_to_edit, "File to edit", "file", Core::ArgsParser::Required::No);
parser.parse(argc, argv);
StringView preview_mode_view = preview_mode;
auto window = GUI::Window::construct();
window->set_title("Text Editor");
window->set_rect(20, 200, 640, 400);
@ -56,8 +67,21 @@ int main(int argc, char** argv)
return GUI::Window::CloseRequestDecision::StayOpen;
};
if (argc >= 2)
text_widget.open_sesame(argv[1]);
if (preview_mode_view == "auto") {
text_widget.set_auto_detect_preview_mode(true);
} else if (preview_mode_view == "markdown") {
text_widget.set_preview_mode(TextEditorWidget::PreviewMode::Markdown);
} else if (preview_mode_view == "html") {
text_widget.set_preview_mode(TextEditorWidget::PreviewMode::HTML);
} else if (preview_mode_view == "none") {
text_widget.set_preview_mode(TextEditorWidget::PreviewMode::None);
} else {
fprintf(stderr, "Invalid mode '%s'\n", preview_mode);
return 1;
}
if (file_to_edit)
text_widget.open_sesame(file_to_edit);
window->show();
window->set_icon(Gfx::Bitmap::load_from_file("/res/icons/16x16/app-text-editor.png"));