Files
Minint/Report/lab2/uml/lr2-editor-workflow.puml
2026-04-07 21:00:49 +03:00

29 lines
923 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
@startuml
title ЛР2 ИВ1: основной рабочий цикл растрового редактора
start
:Запуск приложения;
:Инициализация EditorViewModel и PixelCanvas;
repeat
:Ожидание действий пользователя;
if (Выбран файл контейнера?) then (да)
:Чтение .minint через MinintSerializer;
:Построение модели документа;
endif
if (Режим редактирования?) then (да)
:Инструмент Brush/Eraser/Fill/Select;
:Изменение пикселей активного слоя;
:Обновление холста (composite);
endif
if (Сохранить?) then (да)
:Запись контейнера в .minint;
endif
repeat while (Продолжать работу?) is (да)
:Штатное завершение;
stop
@enduml