| 1270 | |
| 1271 | namespace cmd { |
| 1272 | void init_edit() { |
| 1273 | reg(std::make_unique<edit_color_primary>()); |
| 1274 | reg(std::make_unique<edit_color_secondary>()); |
| 1275 | reg(std::make_unique<edit_color_outline>()); |
| 1276 | reg(std::make_unique<edit_color_shadow>()); |
| 1277 | reg(std::make_unique<edit_font>()); |
| 1278 | reg(std::make_unique<edit_find_replace>()); |
| 1279 | reg(std::make_unique<edit_line_copy>()); |
| 1280 | reg(std::make_unique<edit_line_cut>()); |
| 1281 | reg(std::make_unique<edit_line_delete>()); |
| 1282 | reg(std::make_unique<edit_line_duplicate>()); |
| 1283 | reg(std::make_unique<edit_line_duplicate_shift>()); |
| 1284 | reg(std::make_unique<edit_line_duplicate_shift_back>()); |
| 1285 | reg(std::make_unique<edit_line_join_as_karaoke>()); |
| 1286 | reg(std::make_unique<edit_line_join_concatenate>()); |
| 1287 | reg(std::make_unique<edit_line_join_keep_first>()); |
| 1288 | reg(std::make_unique<edit_line_paste>()); |
| 1289 | reg(std::make_unique<edit_line_paste_over>()); |
| 1290 | reg(std::make_unique<edit_line_recombine>()); |
| 1291 | reg(std::make_unique<edit_line_split_by_karaoke>()); |
| 1292 | reg(std::make_unique<edit_line_split_estimate>()); |
| 1293 | reg(std::make_unique<edit_line_split_preserve>()); |
| 1294 | reg(std::make_unique<edit_line_split_video>()); |
| 1295 | reg(std::make_unique<edit_style_bold>()); |
| 1296 | reg(std::make_unique<edit_style_italic>()); |
| 1297 | reg(std::make_unique<edit_style_underline>()); |
| 1298 | reg(std::make_unique<edit_style_strikeout>()); |
| 1299 | reg(std::make_unique<edit_redo>()); |
| 1300 | reg(std::make_unique<edit_undo>()); |
| 1301 | reg(std::make_unique<edit_revert>()); |
| 1302 | reg(std::make_unique<edit_insert_original>()); |
| 1303 | reg(std::make_unique<edit_clear>()); |
| 1304 | reg(std::make_unique<edit_clear_text>()); |
| 1305 | } |
| 1306 | } |
no test coverage detected