├── .gitattributes ├── .gitignore ├── LICENSE ├── capture-color ├── capture-color.pro ├── com │ ├── common.cpp │ ├── common.h │ └── version.h ├── dialog │ ├── color_whell_dialog.cpp │ ├── color_whell_dialog.h │ ├── color_whell_dialog.ui │ ├── yuv_dialog.cpp │ ├── yuv_dialog.h │ └── yuv_dialog.ui ├── form │ ├── color_wheel.cpp │ └── color_wheel.h ├── main.cpp ├── mainwindow.cpp ├── mainwindow.h ├── mainwindow.ui └── res │ ├── buttons │ ├── eyedropper_tool_16.png │ ├── eyedropper_tool_24.png │ ├── eyedropper_tool_32.png │ ├── eyedropper_tool_48.png │ └── eyedropper_tool_64.png │ ├── curs │ └── eyedropper.cur │ ├── fonts │ └── consola.ttf │ ├── icons │ ├── art.ico │ └── yuv.ico │ ├── images │ ├── art.png │ ├── art_mono.png │ ├── blank_alpha.png │ └── yuv.png │ ├── res.qrc │ ├── strings │ └── about │ └── svgs │ ├── exclamation-circle.svg │ ├── exclamation.svg │ ├── info-circle.svg │ └── palette.svg ├── changelog.txt ├── tcax-assoc ├── main.cpp ├── res │ ├── icons │ │ └── tcax.ico │ └── res.qrc └── tcax-assoc.pro └── tcax-creator ├── com ├── ass_helper.cpp ├── ass_helper.h ├── common.cpp ├── common.h ├── config.cpp ├── config.h ├── lua_helper.cpp ├── lua_helper.h ├── preferences_dialog.cpp ├── preferences_dialog.h ├── preferences_dialog.ui ├── style_sheet.cpp ├── style_sheet.h ├── tcax_helper.cpp └── tcax_helper.h ├── designer ├── script_designer.cpp ├── script_designer.h ├── script_designer.ui ├── tcas_designer.cpp ├── tcas_designer.h ├── tcas_designer.ui ├── tcc_designer.cpp ├── tcc_designer.h └── tcc_designer.ui ├── editor ├── number_matcher.cpp ├── number_matcher.h ├── py_syntax_highlighter.cpp ├── py_syntax_highlighter.h ├── script_editor.cpp └── script_editor.h ├── lua ├── include │ ├── lauxlib.h │ ├── lua.h │ ├── lua.hpp │ ├── luaconf.h │ └── lualib.h └── lib │ └── lua5.1.lib ├── main.cpp ├── mainwindow.cpp ├── mainwindow.h ├── mainwindow.ui ├── res ├── buttons │ ├── accept.png │ ├── add.png │ ├── application_go.png │ ├── arrow_down.png │ ├── arrow_up.png │ ├── avsp.ico │ ├── benchmark.png │ ├── book_open.png │ ├── bullet_go.png │ ├── cog.png │ ├── color_picker.png │ ├── color_swatch.png │ ├── color_wheel.png │ ├── compile.png │ ├── compile_error.png │ ├── compile_warning.png │ ├── cross.png │ ├── cross_grey.png │ ├── disk.png │ ├── disk_multiple.png │ ├── draw_eraser.png │ ├── erase.png │ ├── eyedropper_tool.png │ ├── file_extension_txt.png │ ├── flag_china.png │ ├── flag_default.png │ ├── flag_great_britain.png │ ├── flag_japan.png │ ├── folder.png │ ├── folder_add.png │ ├── folder_link.png │ ├── folder_magnify.png │ ├── folder_page_white.png │ ├── font.png │ ├── github.png │ ├── information.png │ ├── insert_text.png │ ├── link.png │ ├── open_with.png │ ├── page_paste.png │ ├── page_white_add.png │ ├── page_white_code_red.png │ ├── page_white_go.png │ ├── page_white_stack.png │ ├── page_white_text.png │ ├── pause_green.png │ ├── plugin.png │ ├── plugin_disabled.png │ ├── properties.png │ ├── python.png │ ├── qt.png │ ├── report_link.png │ ├── restart.png │ ├── synchronous_scrolling.png │ ├── tab_go.png │ ├── tag_blue_edit.png │ ├── tc.png │ ├── tcax.png │ ├── text_wrapping.png │ ├── toggle_tag_hiding.png │ ├── trash.png │ ├── vsedit.png │ ├── wand.png │ ├── world_link.png │ └── wrench.png ├── fonts │ └── consola.ttf ├── icons │ └── tcax.ico ├── images │ └── tcax-logo.png ├── res.qrc ├── scripts │ ├── lyric2ass.lua │ └── png2ass.py ├── strings │ ├── about │ ├── manual.html │ └── template │ │ ├── template.ass │ │ ├── template.avs │ │ ├── template.py │ │ ├── template.tcc │ │ └── template.vpy └── svgs │ ├── browse.svg │ ├── close.svg │ ├── folder.svg │ ├── k.svg │ ├── new-file.svg │ ├── palette.svg │ ├── save.svg │ ├── shift.svg │ └── star-heart.svg ├── std ├── std_manager.cpp ├── std_manager.h ├── std_watcher.cpp ├── std_watcher.h └── std_watcher.ui ├── tcax-creator.pro ├── tcax ├── helper │ ├── hla_util.c │ ├── hla_util.h │ ├── rb.c │ ├── rb.h │ ├── std.h │ ├── tcas.c │ ├── tcas.h │ ├── vector.c │ └── vector.h ├── libmap │ ├── strmap.c │ ├── strmap.h │ ├── tccmap.c │ └── tccmap.h └── libtcc │ ├── map.c │ ├── map.h │ ├── string.c │ ├── string.h │ ├── tcc.c │ └── tcc.h └── tools ├── ass_conv.cpp ├── ass_conv.h ├── ass_conv.ui ├── ass_editor.cpp ├── ass_editor.h ├── ass_ktag_typer.cpp ├── ass_ktag_typer.h ├── ass_ktag_typer.ui ├── ass_syntax_highlighter.cpp ├── ass_syntax_highlighter.h ├── ass_tag.h ├── ass_ttag_looper.cpp ├── ass_ttag_looper.h └── ass_ttag_looper.ui /.gitattributes: -------------------------------------------------------------------------------- 1 | *.h linguist-language=C++ 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/LICENSE -------------------------------------------------------------------------------- /capture-color/capture-color.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/capture-color/capture-color.pro -------------------------------------------------------------------------------- /capture-color/com/common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/capture-color/com/common.cpp -------------------------------------------------------------------------------- /capture-color/com/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/capture-color/com/common.h -------------------------------------------------------------------------------- /capture-color/com/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/capture-color/com/version.h -------------------------------------------------------------------------------- /capture-color/dialog/color_whell_dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/capture-color/dialog/color_whell_dialog.cpp -------------------------------------------------------------------------------- /capture-color/dialog/color_whell_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/capture-color/dialog/color_whell_dialog.h -------------------------------------------------------------------------------- /capture-color/dialog/color_whell_dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/capture-color/dialog/color_whell_dialog.ui -------------------------------------------------------------------------------- /capture-color/dialog/yuv_dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/capture-color/dialog/yuv_dialog.cpp -------------------------------------------------------------------------------- /capture-color/dialog/yuv_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/capture-color/dialog/yuv_dialog.h -------------------------------------------------------------------------------- /capture-color/dialog/yuv_dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/capture-color/dialog/yuv_dialog.ui -------------------------------------------------------------------------------- /capture-color/form/color_wheel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/capture-color/form/color_wheel.cpp -------------------------------------------------------------------------------- /capture-color/form/color_wheel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/capture-color/form/color_wheel.h -------------------------------------------------------------------------------- /capture-color/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/capture-color/main.cpp -------------------------------------------------------------------------------- /capture-color/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/capture-color/mainwindow.cpp -------------------------------------------------------------------------------- /capture-color/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/capture-color/mainwindow.h -------------------------------------------------------------------------------- /capture-color/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/capture-color/mainwindow.ui -------------------------------------------------------------------------------- /capture-color/res/buttons/eyedropper_tool_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/capture-color/res/buttons/eyedropper_tool_16.png -------------------------------------------------------------------------------- /capture-color/res/buttons/eyedropper_tool_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/capture-color/res/buttons/eyedropper_tool_24.png -------------------------------------------------------------------------------- /capture-color/res/buttons/eyedropper_tool_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/capture-color/res/buttons/eyedropper_tool_32.png -------------------------------------------------------------------------------- /capture-color/res/buttons/eyedropper_tool_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/capture-color/res/buttons/eyedropper_tool_48.png -------------------------------------------------------------------------------- /capture-color/res/buttons/eyedropper_tool_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/capture-color/res/buttons/eyedropper_tool_64.png -------------------------------------------------------------------------------- /capture-color/res/curs/eyedropper.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/capture-color/res/curs/eyedropper.cur -------------------------------------------------------------------------------- /capture-color/res/fonts/consola.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/capture-color/res/fonts/consola.ttf -------------------------------------------------------------------------------- /capture-color/res/icons/art.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/capture-color/res/icons/art.ico -------------------------------------------------------------------------------- /capture-color/res/icons/yuv.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/capture-color/res/icons/yuv.ico -------------------------------------------------------------------------------- /capture-color/res/images/art.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/capture-color/res/images/art.png -------------------------------------------------------------------------------- /capture-color/res/images/art_mono.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/capture-color/res/images/art_mono.png -------------------------------------------------------------------------------- /capture-color/res/images/blank_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/capture-color/res/images/blank_alpha.png -------------------------------------------------------------------------------- /capture-color/res/images/yuv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/capture-color/res/images/yuv.png -------------------------------------------------------------------------------- /capture-color/res/res.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/capture-color/res/res.qrc -------------------------------------------------------------------------------- /capture-color/res/strings/about: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/capture-color/res/strings/about -------------------------------------------------------------------------------- /capture-color/res/svgs/exclamation-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/capture-color/res/svgs/exclamation-circle.svg -------------------------------------------------------------------------------- /capture-color/res/svgs/exclamation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/capture-color/res/svgs/exclamation.svg -------------------------------------------------------------------------------- /capture-color/res/svgs/info-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/capture-color/res/svgs/info-circle.svg -------------------------------------------------------------------------------- /capture-color/res/svgs/palette.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/capture-color/res/svgs/palette.svg -------------------------------------------------------------------------------- /changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/changelog.txt -------------------------------------------------------------------------------- /tcax-assoc/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-assoc/main.cpp -------------------------------------------------------------------------------- /tcax-assoc/res/icons/tcax.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-assoc/res/icons/tcax.ico -------------------------------------------------------------------------------- /tcax-assoc/res/res.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-assoc/res/res.qrc -------------------------------------------------------------------------------- /tcax-assoc/tcax-assoc.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-assoc/tcax-assoc.pro -------------------------------------------------------------------------------- /tcax-creator/com/ass_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/com/ass_helper.cpp -------------------------------------------------------------------------------- /tcax-creator/com/ass_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/com/ass_helper.h -------------------------------------------------------------------------------- /tcax-creator/com/common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/com/common.cpp -------------------------------------------------------------------------------- /tcax-creator/com/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/com/common.h -------------------------------------------------------------------------------- /tcax-creator/com/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/com/config.cpp -------------------------------------------------------------------------------- /tcax-creator/com/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/com/config.h -------------------------------------------------------------------------------- /tcax-creator/com/lua_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/com/lua_helper.cpp -------------------------------------------------------------------------------- /tcax-creator/com/lua_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/com/lua_helper.h -------------------------------------------------------------------------------- /tcax-creator/com/preferences_dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/com/preferences_dialog.cpp -------------------------------------------------------------------------------- /tcax-creator/com/preferences_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/com/preferences_dialog.h -------------------------------------------------------------------------------- /tcax-creator/com/preferences_dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/com/preferences_dialog.ui -------------------------------------------------------------------------------- /tcax-creator/com/style_sheet.cpp: -------------------------------------------------------------------------------- 1 | #include "style_sheet.h" 2 | -------------------------------------------------------------------------------- /tcax-creator/com/style_sheet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/com/style_sheet.h -------------------------------------------------------------------------------- /tcax-creator/com/tcax_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/com/tcax_helper.cpp -------------------------------------------------------------------------------- /tcax-creator/com/tcax_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/com/tcax_helper.h -------------------------------------------------------------------------------- /tcax-creator/designer/script_designer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/designer/script_designer.cpp -------------------------------------------------------------------------------- /tcax-creator/designer/script_designer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/designer/script_designer.h -------------------------------------------------------------------------------- /tcax-creator/designer/script_designer.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/designer/script_designer.ui -------------------------------------------------------------------------------- /tcax-creator/designer/tcas_designer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/designer/tcas_designer.cpp -------------------------------------------------------------------------------- /tcax-creator/designer/tcas_designer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/designer/tcas_designer.h -------------------------------------------------------------------------------- /tcax-creator/designer/tcas_designer.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/designer/tcas_designer.ui -------------------------------------------------------------------------------- /tcax-creator/designer/tcc_designer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/designer/tcc_designer.cpp -------------------------------------------------------------------------------- /tcax-creator/designer/tcc_designer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/designer/tcc_designer.h -------------------------------------------------------------------------------- /tcax-creator/designer/tcc_designer.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/designer/tcc_designer.ui -------------------------------------------------------------------------------- /tcax-creator/editor/number_matcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/editor/number_matcher.cpp -------------------------------------------------------------------------------- /tcax-creator/editor/number_matcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/editor/number_matcher.h -------------------------------------------------------------------------------- /tcax-creator/editor/py_syntax_highlighter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/editor/py_syntax_highlighter.cpp -------------------------------------------------------------------------------- /tcax-creator/editor/py_syntax_highlighter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/editor/py_syntax_highlighter.h -------------------------------------------------------------------------------- /tcax-creator/editor/script_editor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/editor/script_editor.cpp -------------------------------------------------------------------------------- /tcax-creator/editor/script_editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/editor/script_editor.h -------------------------------------------------------------------------------- /tcax-creator/lua/include/lauxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/lua/include/lauxlib.h -------------------------------------------------------------------------------- /tcax-creator/lua/include/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/lua/include/lua.h -------------------------------------------------------------------------------- /tcax-creator/lua/include/lua.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/lua/include/lua.hpp -------------------------------------------------------------------------------- /tcax-creator/lua/include/luaconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/lua/include/luaconf.h -------------------------------------------------------------------------------- /tcax-creator/lua/include/lualib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/lua/include/lualib.h -------------------------------------------------------------------------------- /tcax-creator/lua/lib/lua5.1.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/lua/lib/lua5.1.lib -------------------------------------------------------------------------------- /tcax-creator/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/main.cpp -------------------------------------------------------------------------------- /tcax-creator/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/mainwindow.cpp -------------------------------------------------------------------------------- /tcax-creator/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/mainwindow.h -------------------------------------------------------------------------------- /tcax-creator/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/mainwindow.ui -------------------------------------------------------------------------------- /tcax-creator/res/buttons/accept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/res/buttons/accept.png -------------------------------------------------------------------------------- /tcax-creator/res/buttons/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/res/buttons/add.png -------------------------------------------------------------------------------- /tcax-creator/res/buttons/application_go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/res/buttons/application_go.png -------------------------------------------------------------------------------- /tcax-creator/res/buttons/arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/res/buttons/arrow_down.png -------------------------------------------------------------------------------- /tcax-creator/res/buttons/arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/res/buttons/arrow_up.png -------------------------------------------------------------------------------- /tcax-creator/res/buttons/avsp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/res/buttons/avsp.ico -------------------------------------------------------------------------------- /tcax-creator/res/buttons/benchmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/res/buttons/benchmark.png -------------------------------------------------------------------------------- /tcax-creator/res/buttons/book_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/res/buttons/book_open.png -------------------------------------------------------------------------------- /tcax-creator/res/buttons/bullet_go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/res/buttons/bullet_go.png -------------------------------------------------------------------------------- /tcax-creator/res/buttons/cog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/res/buttons/cog.png -------------------------------------------------------------------------------- /tcax-creator/res/buttons/color_picker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/res/buttons/color_picker.png -------------------------------------------------------------------------------- /tcax-creator/res/buttons/color_swatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/res/buttons/color_swatch.png -------------------------------------------------------------------------------- /tcax-creator/res/buttons/color_wheel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/res/buttons/color_wheel.png -------------------------------------------------------------------------------- /tcax-creator/res/buttons/compile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/res/buttons/compile.png -------------------------------------------------------------------------------- /tcax-creator/res/buttons/compile_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/res/buttons/compile_error.png -------------------------------------------------------------------------------- /tcax-creator/res/buttons/compile_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/res/buttons/compile_warning.png -------------------------------------------------------------------------------- /tcax-creator/res/buttons/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/res/buttons/cross.png -------------------------------------------------------------------------------- /tcax-creator/res/buttons/cross_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/res/buttons/cross_grey.png -------------------------------------------------------------------------------- /tcax-creator/res/buttons/disk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/res/buttons/disk.png -------------------------------------------------------------------------------- /tcax-creator/res/buttons/disk_multiple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/res/buttons/disk_multiple.png -------------------------------------------------------------------------------- /tcax-creator/res/buttons/draw_eraser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/res/buttons/draw_eraser.png -------------------------------------------------------------------------------- /tcax-creator/res/buttons/erase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/res/buttons/erase.png -------------------------------------------------------------------------------- /tcax-creator/res/buttons/eyedropper_tool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/res/buttons/eyedropper_tool.png -------------------------------------------------------------------------------- /tcax-creator/res/buttons/file_extension_txt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/res/buttons/file_extension_txt.png -------------------------------------------------------------------------------- /tcax-creator/res/buttons/flag_china.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/res/buttons/flag_china.png -------------------------------------------------------------------------------- /tcax-creator/res/buttons/flag_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/res/buttons/flag_default.png -------------------------------------------------------------------------------- /tcax-creator/res/buttons/flag_great_britain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/res/buttons/flag_great_britain.png -------------------------------------------------------------------------------- /tcax-creator/res/buttons/flag_japan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/res/buttons/flag_japan.png -------------------------------------------------------------------------------- /tcax-creator/res/buttons/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/res/buttons/folder.png -------------------------------------------------------------------------------- /tcax-creator/res/buttons/folder_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/res/buttons/folder_add.png -------------------------------------------------------------------------------- /tcax-creator/res/buttons/folder_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/res/buttons/folder_link.png -------------------------------------------------------------------------------- /tcax-creator/res/buttons/folder_magnify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/res/buttons/folder_magnify.png -------------------------------------------------------------------------------- /tcax-creator/res/buttons/folder_page_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/res/buttons/folder_page_white.png -------------------------------------------------------------------------------- /tcax-creator/res/buttons/font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/res/buttons/font.png -------------------------------------------------------------------------------- /tcax-creator/res/buttons/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/res/buttons/github.png -------------------------------------------------------------------------------- /tcax-creator/res/buttons/information.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/res/buttons/information.png -------------------------------------------------------------------------------- /tcax-creator/res/buttons/insert_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/res/buttons/insert_text.png -------------------------------------------------------------------------------- /tcax-creator/res/buttons/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/res/buttons/link.png -------------------------------------------------------------------------------- /tcax-creator/res/buttons/open_with.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/res/buttons/open_with.png -------------------------------------------------------------------------------- /tcax-creator/res/buttons/page_paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/res/buttons/page_paste.png -------------------------------------------------------------------------------- /tcax-creator/res/buttons/page_white_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/res/buttons/page_white_add.png -------------------------------------------------------------------------------- /tcax-creator/res/buttons/page_white_code_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/res/buttons/page_white_code_red.png -------------------------------------------------------------------------------- /tcax-creator/res/buttons/page_white_go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/res/buttons/page_white_go.png -------------------------------------------------------------------------------- /tcax-creator/res/buttons/page_white_stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/res/buttons/page_white_stack.png -------------------------------------------------------------------------------- /tcax-creator/res/buttons/page_white_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/res/buttons/page_white_text.png -------------------------------------------------------------------------------- /tcax-creator/res/buttons/pause_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/res/buttons/pause_green.png -------------------------------------------------------------------------------- /tcax-creator/res/buttons/plugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/res/buttons/plugin.png -------------------------------------------------------------------------------- /tcax-creator/res/buttons/plugin_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/res/buttons/plugin_disabled.png -------------------------------------------------------------------------------- /tcax-creator/res/buttons/properties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/res/buttons/properties.png -------------------------------------------------------------------------------- /tcax-creator/res/buttons/python.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/res/buttons/python.png -------------------------------------------------------------------------------- /tcax-creator/res/buttons/qt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/res/buttons/qt.png -------------------------------------------------------------------------------- /tcax-creator/res/buttons/report_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/res/buttons/report_link.png -------------------------------------------------------------------------------- /tcax-creator/res/buttons/restart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/res/buttons/restart.png -------------------------------------------------------------------------------- /tcax-creator/res/buttons/synchronous_scrolling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/res/buttons/synchronous_scrolling.png -------------------------------------------------------------------------------- /tcax-creator/res/buttons/tab_go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/res/buttons/tab_go.png -------------------------------------------------------------------------------- /tcax-creator/res/buttons/tag_blue_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/res/buttons/tag_blue_edit.png -------------------------------------------------------------------------------- /tcax-creator/res/buttons/tc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/res/buttons/tc.png -------------------------------------------------------------------------------- /tcax-creator/res/buttons/tcax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/res/buttons/tcax.png -------------------------------------------------------------------------------- /tcax-creator/res/buttons/text_wrapping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/res/buttons/text_wrapping.png -------------------------------------------------------------------------------- /tcax-creator/res/buttons/toggle_tag_hiding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/res/buttons/toggle_tag_hiding.png -------------------------------------------------------------------------------- /tcax-creator/res/buttons/trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/res/buttons/trash.png -------------------------------------------------------------------------------- /tcax-creator/res/buttons/vsedit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/res/buttons/vsedit.png -------------------------------------------------------------------------------- /tcax-creator/res/buttons/wand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/res/buttons/wand.png -------------------------------------------------------------------------------- /tcax-creator/res/buttons/world_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/res/buttons/world_link.png -------------------------------------------------------------------------------- /tcax-creator/res/buttons/wrench.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/res/buttons/wrench.png -------------------------------------------------------------------------------- /tcax-creator/res/fonts/consola.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/res/fonts/consola.ttf -------------------------------------------------------------------------------- /tcax-creator/res/icons/tcax.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/res/icons/tcax.ico -------------------------------------------------------------------------------- /tcax-creator/res/images/tcax-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/res/images/tcax-logo.png -------------------------------------------------------------------------------- /tcax-creator/res/res.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/res/res.qrc -------------------------------------------------------------------------------- /tcax-creator/res/scripts/lyric2ass.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/res/scripts/lyric2ass.lua -------------------------------------------------------------------------------- /tcax-creator/res/scripts/png2ass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/res/scripts/png2ass.py -------------------------------------------------------------------------------- /tcax-creator/res/strings/about: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/res/strings/about -------------------------------------------------------------------------------- /tcax-creator/res/strings/manual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/res/strings/manual.html -------------------------------------------------------------------------------- /tcax-creator/res/strings/template/template.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/res/strings/template/template.ass -------------------------------------------------------------------------------- /tcax-creator/res/strings/template/template.avs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/res/strings/template/template.avs -------------------------------------------------------------------------------- /tcax-creator/res/strings/template/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/res/strings/template/template.py -------------------------------------------------------------------------------- /tcax-creator/res/strings/template/template.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/res/strings/template/template.tcc -------------------------------------------------------------------------------- /tcax-creator/res/strings/template/template.vpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/res/strings/template/template.vpy -------------------------------------------------------------------------------- /tcax-creator/res/svgs/browse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/res/svgs/browse.svg -------------------------------------------------------------------------------- /tcax-creator/res/svgs/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/res/svgs/close.svg -------------------------------------------------------------------------------- /tcax-creator/res/svgs/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/res/svgs/folder.svg -------------------------------------------------------------------------------- /tcax-creator/res/svgs/k.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/res/svgs/k.svg -------------------------------------------------------------------------------- /tcax-creator/res/svgs/new-file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/res/svgs/new-file.svg -------------------------------------------------------------------------------- /tcax-creator/res/svgs/palette.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/res/svgs/palette.svg -------------------------------------------------------------------------------- /tcax-creator/res/svgs/save.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/res/svgs/save.svg -------------------------------------------------------------------------------- /tcax-creator/res/svgs/shift.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/res/svgs/shift.svg -------------------------------------------------------------------------------- /tcax-creator/res/svgs/star-heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/res/svgs/star-heart.svg -------------------------------------------------------------------------------- /tcax-creator/std/std_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/std/std_manager.cpp -------------------------------------------------------------------------------- /tcax-creator/std/std_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/std/std_manager.h -------------------------------------------------------------------------------- /tcax-creator/std/std_watcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/std/std_watcher.cpp -------------------------------------------------------------------------------- /tcax-creator/std/std_watcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/std/std_watcher.h -------------------------------------------------------------------------------- /tcax-creator/std/std_watcher.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/std/std_watcher.ui -------------------------------------------------------------------------------- /tcax-creator/tcax-creator.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/tcax-creator.pro -------------------------------------------------------------------------------- /tcax-creator/tcax/helper/hla_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/tcax/helper/hla_util.c -------------------------------------------------------------------------------- /tcax-creator/tcax/helper/hla_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/tcax/helper/hla_util.h -------------------------------------------------------------------------------- /tcax-creator/tcax/helper/rb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/tcax/helper/rb.c -------------------------------------------------------------------------------- /tcax-creator/tcax/helper/rb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/tcax/helper/rb.h -------------------------------------------------------------------------------- /tcax-creator/tcax/helper/std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/tcax/helper/std.h -------------------------------------------------------------------------------- /tcax-creator/tcax/helper/tcas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/tcax/helper/tcas.c -------------------------------------------------------------------------------- /tcax-creator/tcax/helper/tcas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/tcax/helper/tcas.h -------------------------------------------------------------------------------- /tcax-creator/tcax/helper/vector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/tcax/helper/vector.c -------------------------------------------------------------------------------- /tcax-creator/tcax/helper/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/tcax/helper/vector.h -------------------------------------------------------------------------------- /tcax-creator/tcax/libmap/strmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/tcax/libmap/strmap.c -------------------------------------------------------------------------------- /tcax-creator/tcax/libmap/strmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/tcax/libmap/strmap.h -------------------------------------------------------------------------------- /tcax-creator/tcax/libmap/tccmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/tcax/libmap/tccmap.c -------------------------------------------------------------------------------- /tcax-creator/tcax/libmap/tccmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/tcax/libmap/tccmap.h -------------------------------------------------------------------------------- /tcax-creator/tcax/libtcc/map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/tcax/libtcc/map.c -------------------------------------------------------------------------------- /tcax-creator/tcax/libtcc/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/tcax/libtcc/map.h -------------------------------------------------------------------------------- /tcax-creator/tcax/libtcc/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/tcax/libtcc/string.c -------------------------------------------------------------------------------- /tcax-creator/tcax/libtcc/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/tcax/libtcc/string.h -------------------------------------------------------------------------------- /tcax-creator/tcax/libtcc/tcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/tcax/libtcc/tcc.c -------------------------------------------------------------------------------- /tcax-creator/tcax/libtcc/tcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/tcax/libtcc/tcc.h -------------------------------------------------------------------------------- /tcax-creator/tools/ass_conv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/tools/ass_conv.cpp -------------------------------------------------------------------------------- /tcax-creator/tools/ass_conv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/tools/ass_conv.h -------------------------------------------------------------------------------- /tcax-creator/tools/ass_conv.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/tools/ass_conv.ui -------------------------------------------------------------------------------- /tcax-creator/tools/ass_editor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/tools/ass_editor.cpp -------------------------------------------------------------------------------- /tcax-creator/tools/ass_editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/tools/ass_editor.h -------------------------------------------------------------------------------- /tcax-creator/tools/ass_ktag_typer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/tools/ass_ktag_typer.cpp -------------------------------------------------------------------------------- /tcax-creator/tools/ass_ktag_typer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/tools/ass_ktag_typer.h -------------------------------------------------------------------------------- /tcax-creator/tools/ass_ktag_typer.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/tools/ass_ktag_typer.ui -------------------------------------------------------------------------------- /tcax-creator/tools/ass_syntax_highlighter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/tools/ass_syntax_highlighter.cpp -------------------------------------------------------------------------------- /tcax-creator/tools/ass_syntax_highlighter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/tools/ass_syntax_highlighter.h -------------------------------------------------------------------------------- /tcax-creator/tools/ass_tag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/tools/ass_tag.h -------------------------------------------------------------------------------- /tcax-creator/tools/ass_ttag_looper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/tools/ass_ttag_looper.cpp -------------------------------------------------------------------------------- /tcax-creator/tools/ass_ttag_looper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/tools/ass_ttag_looper.h -------------------------------------------------------------------------------- /tcax-creator/tools/ass_ttag_looper.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/tcax-creator/HEAD/tcax-creator/tools/ass_ttag_looper.ui --------------------------------------------------------------------------------