├── .clang-format ├── .crowdin.yml ├── .flatpak-manifest.json ├── .github └── README.md ├── .gitignore ├── .gitlab-ci.yml ├── .kde-ci.yml ├── CMakeLists.txt ├── ChangeLog ├── LICENSE ├── LICENSES ├── BSD-3-Clause.txt └── GPL-2.0-or-later.txt ├── Messages.sh ├── README.CodingStyle.md ├── README.md ├── cmake ├── FindFFmpeg.cmake ├── FindICU.cmake └── FindPocketSphinx.cmake ├── doc ├── CMakeLists.txt └── en │ └── CMakeLists.txt ├── logo.png ├── pkg ├── i18n │ ├── .gitignore │ └── fetch.sh ├── mingw │ ├── .gitignore │ ├── build.sh │ ├── deps-find.sh │ ├── docker-build.sh │ ├── github-upload-release.sh │ ├── installer.nsi │ ├── nsi-installer.sh │ ├── obs-win-release.sh │ └── setup-pacserve.sh └── misc │ ├── .gitignore │ ├── appimage.yml │ ├── build-deps.sh │ ├── copyright.sh │ ├── github-release.sh │ ├── obs-appimage-git-test.sh │ ├── setup-ubuntu-travis.sh │ ├── subtitlecomposer.sh │ ├── ubuntu-travis.sh │ └── uncrustify.cfg ├── po ├── ar │ └── subtitlecomposer.po ├── bg │ └── subtitlecomposer.po ├── ca │ └── subtitlecomposer.po ├── ca@valencia │ └── subtitlecomposer.po ├── cs │ └── subtitlecomposer.po ├── de │ └── subtitlecomposer.po ├── el │ └── subtitlecomposer.po ├── en_GB │ └── subtitlecomposer.po ├── eo │ └── subtitlecomposer.po ├── es │ └── subtitlecomposer.po ├── et │ └── subtitlecomposer.po ├── eu │ └── subtitlecomposer.po ├── fi │ └── subtitlecomposer.po ├── fr │ └── subtitlecomposer.po ├── gl │ └── subtitlecomposer.po ├── hr │ └── subtitlecomposer.po ├── hu │ └── subtitlecomposer.po ├── id │ └── subtitlecomposer.po ├── ie │ └── subtitlecomposer.po ├── it │ └── subtitlecomposer.po ├── ja │ └── subtitlecomposer.po ├── ka │ └── subtitlecomposer.po ├── lt │ └── subtitlecomposer.po ├── nl │ └── subtitlecomposer.po ├── pl │ └── subtitlecomposer.po ├── pt │ └── subtitlecomposer.po ├── pt_BR │ └── subtitlecomposer.po ├── ru │ └── subtitlecomposer.po ├── sk │ └── subtitlecomposer.po ├── sl │ └── subtitlecomposer.po ├── sr │ └── subtitlecomposer.po ├── sr@latin │ └── subtitlecomposer.po ├── sv │ └── subtitlecomposer.po ├── tr │ └── subtitlecomposer.po ├── uk │ └── subtitlecomposer.po ├── zh_CN │ └── subtitlecomposer.po └── zh_TW │ └── subtitlecomposer.po ├── snapcraft.yaml └── src ├── CMakeLists.txt ├── actions ├── kcodecactionext.cpp ├── kcodecactionext.h ├── krecentfilesactionext.cpp ├── krecentfilesactionext.h ├── useraction.cpp ├── useraction.h └── useractionnames.h ├── appglobal.cpp ├── appglobal.h ├── application.cpp ├── application.h ├── application_actions.cpp ├── application_errorcheck.cpp ├── application_subtitle.cpp ├── config.h.cmake ├── configs ├── configdialog.cpp ├── configdialog.h ├── errorsconfigwidget.cpp ├── errorsconfigwidget.h ├── errorsconfigwidget.ui ├── generalconfigwidget.cpp ├── generalconfigwidget.h ├── generalconfigwidget.ui ├── playerconfigwidget.cpp ├── playerconfigwidget.h ├── playerconfigwidget.ui ├── waveformconfigwidget.cpp ├── waveformconfigwidget.h └── waveformconfigwidget.ui ├── core ├── formatdata.h ├── range.h ├── rangelist.h ├── richstring.cpp ├── richstring.h ├── richtext │ ├── richcss.cpp │ ├── richcss.h │ ├── richdocument.cpp │ ├── richdocument.h │ ├── richdocumenteditor.cpp │ ├── richdocumenteditor.h │ ├── richdocumentlayout.cpp │ ├── richdocumentlayout.h │ ├── richdom.cpp │ └── richdom.h ├── subtitle.cpp ├── subtitle.h ├── subtitleiterator.cpp ├── subtitleiterator.h ├── subtitleline.cpp ├── subtitleline.h ├── subtitletarget.h ├── time.cpp ├── time.h └── undo │ ├── subtitleactions.cpp │ ├── subtitleactions.h │ ├── subtitlelineactions.cpp │ ├── subtitlelineactions.h │ ├── undoaction.cpp │ ├── undoaction.h │ ├── undostack.cpp │ └── undostack.h ├── dialogs ├── actiondialog.cpp ├── actiondialog.h ├── actionwithtargetdialog.cpp ├── actionwithtargetdialog.h ├── adjusttimesdialog.cpp ├── adjusttimesdialog.h ├── autodurationsdialog.cpp ├── autodurationsdialog.h ├── changeframeratedialog.cpp ├── changeframeratedialog.h ├── changetextscasedialog.cpp ├── changetextscasedialog.h ├── durationlimitsdialog.cpp ├── durationlimitsdialog.h ├── encodingdetectdialog.cpp ├── encodingdetectdialog.h ├── encodingdetectdialog.ui ├── fixoverlappingtimesdialog.cpp ├── fixoverlappingtimesdialog.h ├── fixpunctuationdialog.cpp ├── fixpunctuationdialog.h ├── insertlinedialog.cpp ├── insertlinedialog.h ├── intinputdialog.cpp ├── intinputdialog.h ├── intinputdialog.ui ├── joinsubtitlesdialog.cpp ├── joinsubtitlesdialog.h ├── progressdialog.cpp ├── progressdialog.h ├── removelinesdialog.cpp ├── removelinesdialog.h ├── selectablesubtitledialog.cpp ├── selectablesubtitledialog.h ├── shifttimesdialog.cpp ├── shifttimesdialog.h ├── smarttextsadjustdialog.cpp ├── smarttextsadjustdialog.h ├── splitsubtitledialog.cpp ├── splitsubtitledialog.h ├── subtitleclassdialog.cpp ├── subtitleclassdialog.h ├── subtitleclassdialog.ui ├── subtitlecolordialog.cpp ├── subtitlecolordialog.h ├── subtitlevoicedialog.cpp ├── subtitlevoicedialog.h ├── subtitlevoicedialog.ui ├── syncsubtitlesdialog.cpp ├── syncsubtitlesdialog.h ├── textinputdialog.cpp ├── textinputdialog.h └── textinputdialog.ui ├── errors ├── errorfinder.cpp ├── errorfinder.h ├── errortracker.cpp ├── errortracker.h ├── finderrorsdialog.cpp └── finderrorsdialog.h ├── formats ├── format.h ├── formatmanager.cpp ├── formatmanager.h ├── inputformat.h ├── microdvd │ ├── microdvdinputformat.h │ └── microdvdoutputformat.h ├── mplayer │ ├── mplayerinputformat.h │ └── mplayeroutputformat.h ├── mplayer2 │ ├── mplayer2inputformat.h │ └── mplayer2outputformat.h ├── outputformat.h ├── subrip │ ├── subripinputformat.h │ └── subripoutputformat.h ├── substationalpha │ ├── substationalphainputformat.h │ └── substationalphaoutputformat.h ├── subviewer1 │ ├── subviewer1inputformat.h │ └── subviewer1outputformat.h ├── subviewer2 │ ├── subviewer2inputformat.h │ └── subviewer2outputformat.h ├── textdemux │ ├── textdemux.cpp │ └── textdemux.h ├── tmplayer │ ├── tmplayerinputformat.h │ └── tmplayeroutputformat.h ├── vobsub │ ├── vobsubinputformat.h │ ├── vobsubinputinitdialog.cpp │ ├── vobsubinputinitdialog.h │ ├── vobsubinputinitdialog.ui │ ├── vobsubinputprocessdialog.cpp │ ├── vobsubinputprocessdialog.h │ └── vobsubinputprocessdialog.ui ├── webvtt │ ├── webvttinputformat.cpp │ ├── webvttinputformat.h │ ├── webvttoutputformat.cpp │ └── webvttoutputformat.h └── youtubecaptions │ ├── youtubecaptionsinputformat.h │ └── youtubecaptionsoutputformat.h ├── gui ├── currentlinewidget.cpp ├── currentlinewidget.h ├── playerwidget.cpp ├── playerwidget.h ├── subtitlemeta │ ├── csshighlighter.cpp │ ├── csshighlighter.h │ ├── subtitlemetawidget.cpp │ ├── subtitlemetawidget.h │ ├── subtitlepositionwidget.cpp │ ├── subtitlepositionwidget.h │ └── subtitlepositionwidget.ui ├── treeview │ ├── linesitemdelegate.cpp │ ├── linesitemdelegate.h │ ├── linesmodel.cpp │ ├── linesmodel.h │ ├── linesselectionmodel.cpp │ ├── linesselectionmodel.h │ ├── lineswidget.cpp │ ├── lineswidget.h │ ├── richdocumentptr.cpp │ ├── richdocumentptr.h │ ├── richlineedit.cpp │ ├── richlineedit.h │ ├── treeview.cpp │ └── treeview.h └── waveform │ ├── wavebuffer.cpp │ ├── wavebuffer.h │ ├── waveformwidget.cpp │ ├── waveformwidget.h │ ├── waverenderer.cpp │ ├── waverenderer.h │ ├── wavesubtitle.cpp │ ├── wavesubtitle.h │ ├── zoombuffer.cpp │ └── zoombuffer.h ├── helpers ├── common.h ├── commondefs.cpp ├── commondefs.h ├── debug.cpp ├── debug.h ├── languagecode.cpp ├── languagecode.h ├── objectref.h └── pluginhelper.h ├── icons ├── 128-apps-subtitlecomposer.png ├── 16-apps-subtitlecomposer.png ├── 256-apps-subtitlecomposer.png ├── 32-apps-subtitlecomposer.png ├── 48-apps-subtitlecomposer.png ├── CMakeLists.txt ├── README ├── actions │ ├── anchor.svg │ ├── audio-extract.png │ ├── curline-follows-video.svg │ ├── playrate-minus.svg │ ├── playrate-plus.svg │ ├── select-stream.png │ ├── set-hide-time.svg │ ├── set-show-time.svg │ ├── time-from-video.png │ └── waveform.png ├── apps │ ├── mediaplayer.png │ └── pocketsphinx.png ├── breeze.theme ├── icon-bundle.qrc ├── mingw-icon.sh ├── subtitlecomposer.ico ├── subtitlecomposer.rc └── theme-icons-bundle.sh ├── main.cpp ├── main_tests.h ├── mainwindow.cpp ├── mainwindow.h ├── org.kde.subtitlecomposer.appdata.xml ├── org.kde.subtitlecomposer.desktop ├── scconfig.kcfg ├── scconfig.kcfgc ├── scripting ├── CMakeLists.txt ├── examples │ ├── README │ ├── example_capitalize_all_lines.js │ ├── example_iterate_selection.js │ ├── example_remove_odd_lines.js │ ├── example_trim_to_selection.js │ └── remove_hearing_impaired_text.js ├── scripting_list.cpp ├── scripting_list.h ├── scripting_range.cpp ├── scripting_range.h ├── scripting_rangelist.cpp ├── scripting_rangelist.h ├── scripting_rangesmodule.cpp ├── scripting_rangesmodule.h ├── scripting_richstring.cpp ├── scripting_richstring.h ├── scripting_stringsmodule.cpp ├── scripting_stringsmodule.h ├── scripting_subtitle.cpp ├── scripting_subtitle.h ├── scripting_subtitleline.cpp ├── scripting_subtitleline.h ├── scripting_subtitlelinemodule.cpp ├── scripting_subtitlelinemodule.h ├── scripting_subtitlemodule.cpp ├── scripting_subtitlemodule.h ├── scriptsmanager.cpp ├── scriptsmanager.h └── scriptsmanager.ui ├── speechplugins └── pocketsphinx │ ├── CMakeLists.txt │ ├── plugin-config.h.cmake │ ├── pocketsphinxconfig.kcfg │ ├── pocketsphinxconfig.kcfgc │ ├── pocketsphinxconfigwidget.cpp │ ├── pocketsphinxconfigwidget.h │ ├── pocketsphinxconfigwidget.ui │ ├── pocketsphinxplugin.cpp │ └── pocketsphinxplugin.h ├── speechprocessor ├── speechplugin.cpp ├── speechplugin.h ├── speechprocessor.cpp └── speechprocessor.h ├── streamprocessor ├── streamprocessor.cpp └── streamprocessor.h ├── subtitlecomposer.qrc ├── subtitlecomposer.xml ├── subtitlecomposerrc ├── subtitlecomposerui.rc ├── tests ├── CMakeLists.txt ├── objectreftest.cpp ├── objectreftest.h ├── rangelisttest.cpp ├── rangelisttest.h ├── rangetest.cpp ├── rangetest.h ├── richcsstest.cpp ├── richcsstest.h ├── richdocumentlayouttest.cpp ├── richdocumentlayouttest.h ├── richdocumenttest.cpp ├── richdocumenttest.h ├── richstringtest.cpp ├── richstringtest.h ├── subtitletest.cpp ├── subtitletest.h ├── timetest.cpp └── timetest.h ├── translate ├── deeplengine.cpp ├── deeplengine.h ├── deeplengine.ui ├── googlecloudengine.cpp ├── googlecloudengine.h ├── googlecloudengine.ui ├── mintengine.cpp ├── mintengine.h ├── mintengine.ui ├── translatedialog.cpp ├── translatedialog.h ├── translateengine.cpp └── translateengine.h ├── utils ├── finder.cpp ├── finder.h ├── replacer.cpp ├── replacer.h ├── speller.cpp └── speller.h ├── videoplayer ├── backend │ ├── audiodecoder.cpp │ ├── audiodecoder.h │ ├── clock.cpp │ ├── clock.h │ ├── decoder.cpp │ ├── decoder.h │ ├── ffplayer.cpp │ ├── ffplayer.h │ ├── framequeue.cpp │ ├── framequeue.h │ ├── glcolorspace.h │ ├── glcolorspace.js │ ├── glrenderer.cpp │ ├── glrenderer.h │ ├── packetqueue.cpp │ ├── packetqueue.h │ ├── renderthread.cpp │ ├── renderthread.h │ ├── streamdemuxer.cpp │ ├── streamdemuxer.h │ ├── subtitledecoder.cpp │ ├── subtitledecoder.h │ ├── videodecoder.cpp │ ├── videodecoder.h │ ├── videostate.cpp │ └── videostate.h ├── subtitletextoverlay.cpp ├── subtitletextoverlay.h ├── videoplayer.cpp ├── videoplayer.h ├── videowidget.cpp ├── videowidget.h └── waveformat.h └── widgets ├── attachablewidget.cpp ├── attachablewidget.h ├── layeredwidget.cpp ├── layeredwidget.h ├── pointingslider.cpp ├── pointingslider.h ├── simplerichtextedit.cpp ├── simplerichtextedit.h ├── textoverlaywidget.cpp ├── textoverlaywidget.h ├── timeedit.cpp └── timeedit.h /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/.clang-format -------------------------------------------------------------------------------- /.crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/.crowdin.yml -------------------------------------------------------------------------------- /.flatpak-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/.flatpak-manifest.json -------------------------------------------------------------------------------- /.github/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/.github/README.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.kde-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/.kde-ci.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/ChangeLog -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | LICENSES/GPL-2.0-or-later.txt -------------------------------------------------------------------------------- /LICENSES/BSD-3-Clause.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/LICENSES/BSD-3-Clause.txt -------------------------------------------------------------------------------- /LICENSES/GPL-2.0-or-later.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/LICENSES/GPL-2.0-or-later.txt -------------------------------------------------------------------------------- /Messages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/Messages.sh -------------------------------------------------------------------------------- /README.CodingStyle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/README.CodingStyle.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/README.md -------------------------------------------------------------------------------- /cmake/FindFFmpeg.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/cmake/FindFFmpeg.cmake -------------------------------------------------------------------------------- /cmake/FindICU.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/cmake/FindICU.cmake -------------------------------------------------------------------------------- /cmake/FindPocketSphinx.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/cmake/FindPocketSphinx.cmake -------------------------------------------------------------------------------- /doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/doc/CMakeLists.txt -------------------------------------------------------------------------------- /doc/en/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/doc/en/CMakeLists.txt -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/logo.png -------------------------------------------------------------------------------- /pkg/i18n/.gitignore: -------------------------------------------------------------------------------- 1 | releaseme 2 | -------------------------------------------------------------------------------- /pkg/i18n/fetch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/pkg/i18n/fetch.sh -------------------------------------------------------------------------------- /pkg/mingw/.gitignore: -------------------------------------------------------------------------------- 1 | /.dockerhome 2 | -------------------------------------------------------------------------------- /pkg/mingw/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/pkg/mingw/build.sh -------------------------------------------------------------------------------- /pkg/mingw/deps-find.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/pkg/mingw/deps-find.sh -------------------------------------------------------------------------------- /pkg/mingw/docker-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/pkg/mingw/docker-build.sh -------------------------------------------------------------------------------- /pkg/mingw/github-upload-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/pkg/mingw/github-upload-release.sh -------------------------------------------------------------------------------- /pkg/mingw/installer.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/pkg/mingw/installer.nsi -------------------------------------------------------------------------------- /pkg/mingw/nsi-installer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/pkg/mingw/nsi-installer.sh -------------------------------------------------------------------------------- /pkg/mingw/obs-win-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/pkg/mingw/obs-win-release.sh -------------------------------------------------------------------------------- /pkg/mingw/setup-pacserve.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/pkg/mingw/setup-pacserve.sh -------------------------------------------------------------------------------- /pkg/misc/.gitignore: -------------------------------------------------------------------------------- 1 | *.qcow2 2 | -------------------------------------------------------------------------------- /pkg/misc/appimage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/pkg/misc/appimage.yml -------------------------------------------------------------------------------- /pkg/misc/build-deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/pkg/misc/build-deps.sh -------------------------------------------------------------------------------- /pkg/misc/copyright.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/pkg/misc/copyright.sh -------------------------------------------------------------------------------- /pkg/misc/github-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/pkg/misc/github-release.sh -------------------------------------------------------------------------------- /pkg/misc/obs-appimage-git-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/pkg/misc/obs-appimage-git-test.sh -------------------------------------------------------------------------------- /pkg/misc/setup-ubuntu-travis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/pkg/misc/setup-ubuntu-travis.sh -------------------------------------------------------------------------------- /pkg/misc/subtitlecomposer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/pkg/misc/subtitlecomposer.sh -------------------------------------------------------------------------------- /pkg/misc/ubuntu-travis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/pkg/misc/ubuntu-travis.sh -------------------------------------------------------------------------------- /pkg/misc/uncrustify.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/pkg/misc/uncrustify.cfg -------------------------------------------------------------------------------- /po/ar/subtitlecomposer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/po/ar/subtitlecomposer.po -------------------------------------------------------------------------------- /po/bg/subtitlecomposer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/po/bg/subtitlecomposer.po -------------------------------------------------------------------------------- /po/ca/subtitlecomposer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/po/ca/subtitlecomposer.po -------------------------------------------------------------------------------- /po/ca@valencia/subtitlecomposer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/po/ca@valencia/subtitlecomposer.po -------------------------------------------------------------------------------- /po/cs/subtitlecomposer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/po/cs/subtitlecomposer.po -------------------------------------------------------------------------------- /po/de/subtitlecomposer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/po/de/subtitlecomposer.po -------------------------------------------------------------------------------- /po/el/subtitlecomposer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/po/el/subtitlecomposer.po -------------------------------------------------------------------------------- /po/en_GB/subtitlecomposer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/po/en_GB/subtitlecomposer.po -------------------------------------------------------------------------------- /po/eo/subtitlecomposer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/po/eo/subtitlecomposer.po -------------------------------------------------------------------------------- /po/es/subtitlecomposer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/po/es/subtitlecomposer.po -------------------------------------------------------------------------------- /po/et/subtitlecomposer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/po/et/subtitlecomposer.po -------------------------------------------------------------------------------- /po/eu/subtitlecomposer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/po/eu/subtitlecomposer.po -------------------------------------------------------------------------------- /po/fi/subtitlecomposer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/po/fi/subtitlecomposer.po -------------------------------------------------------------------------------- /po/fr/subtitlecomposer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/po/fr/subtitlecomposer.po -------------------------------------------------------------------------------- /po/gl/subtitlecomposer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/po/gl/subtitlecomposer.po -------------------------------------------------------------------------------- /po/hr/subtitlecomposer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/po/hr/subtitlecomposer.po -------------------------------------------------------------------------------- /po/hu/subtitlecomposer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/po/hu/subtitlecomposer.po -------------------------------------------------------------------------------- /po/id/subtitlecomposer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/po/id/subtitlecomposer.po -------------------------------------------------------------------------------- /po/ie/subtitlecomposer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/po/ie/subtitlecomposer.po -------------------------------------------------------------------------------- /po/it/subtitlecomposer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/po/it/subtitlecomposer.po -------------------------------------------------------------------------------- /po/ja/subtitlecomposer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/po/ja/subtitlecomposer.po -------------------------------------------------------------------------------- /po/ka/subtitlecomposer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/po/ka/subtitlecomposer.po -------------------------------------------------------------------------------- /po/lt/subtitlecomposer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/po/lt/subtitlecomposer.po -------------------------------------------------------------------------------- /po/nl/subtitlecomposer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/po/nl/subtitlecomposer.po -------------------------------------------------------------------------------- /po/pl/subtitlecomposer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/po/pl/subtitlecomposer.po -------------------------------------------------------------------------------- /po/pt/subtitlecomposer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/po/pt/subtitlecomposer.po -------------------------------------------------------------------------------- /po/pt_BR/subtitlecomposer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/po/pt_BR/subtitlecomposer.po -------------------------------------------------------------------------------- /po/ru/subtitlecomposer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/po/ru/subtitlecomposer.po -------------------------------------------------------------------------------- /po/sk/subtitlecomposer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/po/sk/subtitlecomposer.po -------------------------------------------------------------------------------- /po/sl/subtitlecomposer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/po/sl/subtitlecomposer.po -------------------------------------------------------------------------------- /po/sr/subtitlecomposer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/po/sr/subtitlecomposer.po -------------------------------------------------------------------------------- /po/sr@latin/subtitlecomposer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/po/sr@latin/subtitlecomposer.po -------------------------------------------------------------------------------- /po/sv/subtitlecomposer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/po/sv/subtitlecomposer.po -------------------------------------------------------------------------------- /po/tr/subtitlecomposer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/po/tr/subtitlecomposer.po -------------------------------------------------------------------------------- /po/uk/subtitlecomposer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/po/uk/subtitlecomposer.po -------------------------------------------------------------------------------- /po/zh_CN/subtitlecomposer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/po/zh_CN/subtitlecomposer.po -------------------------------------------------------------------------------- /po/zh_TW/subtitlecomposer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/po/zh_TW/subtitlecomposer.po -------------------------------------------------------------------------------- /snapcraft.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/snapcraft.yaml -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/actions/kcodecactionext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/actions/kcodecactionext.cpp -------------------------------------------------------------------------------- /src/actions/kcodecactionext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/actions/kcodecactionext.h -------------------------------------------------------------------------------- /src/actions/krecentfilesactionext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/actions/krecentfilesactionext.cpp -------------------------------------------------------------------------------- /src/actions/krecentfilesactionext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/actions/krecentfilesactionext.h -------------------------------------------------------------------------------- /src/actions/useraction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/actions/useraction.cpp -------------------------------------------------------------------------------- /src/actions/useraction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/actions/useraction.h -------------------------------------------------------------------------------- /src/actions/useractionnames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/actions/useractionnames.h -------------------------------------------------------------------------------- /src/appglobal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/appglobal.cpp -------------------------------------------------------------------------------- /src/appglobal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/appglobal.h -------------------------------------------------------------------------------- /src/application.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/application.cpp -------------------------------------------------------------------------------- /src/application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/application.h -------------------------------------------------------------------------------- /src/application_actions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/application_actions.cpp -------------------------------------------------------------------------------- /src/application_errorcheck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/application_errorcheck.cpp -------------------------------------------------------------------------------- /src/application_subtitle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/application_subtitle.cpp -------------------------------------------------------------------------------- /src/config.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/config.h.cmake -------------------------------------------------------------------------------- /src/configs/configdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/configs/configdialog.cpp -------------------------------------------------------------------------------- /src/configs/configdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/configs/configdialog.h -------------------------------------------------------------------------------- /src/configs/errorsconfigwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/configs/errorsconfigwidget.cpp -------------------------------------------------------------------------------- /src/configs/errorsconfigwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/configs/errorsconfigwidget.h -------------------------------------------------------------------------------- /src/configs/errorsconfigwidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/configs/errorsconfigwidget.ui -------------------------------------------------------------------------------- /src/configs/generalconfigwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/configs/generalconfigwidget.cpp -------------------------------------------------------------------------------- /src/configs/generalconfigwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/configs/generalconfigwidget.h -------------------------------------------------------------------------------- /src/configs/generalconfigwidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/configs/generalconfigwidget.ui -------------------------------------------------------------------------------- /src/configs/playerconfigwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/configs/playerconfigwidget.cpp -------------------------------------------------------------------------------- /src/configs/playerconfigwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/configs/playerconfigwidget.h -------------------------------------------------------------------------------- /src/configs/playerconfigwidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/configs/playerconfigwidget.ui -------------------------------------------------------------------------------- /src/configs/waveformconfigwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/configs/waveformconfigwidget.cpp -------------------------------------------------------------------------------- /src/configs/waveformconfigwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/configs/waveformconfigwidget.h -------------------------------------------------------------------------------- /src/configs/waveformconfigwidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/configs/waveformconfigwidget.ui -------------------------------------------------------------------------------- /src/core/formatdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/core/formatdata.h -------------------------------------------------------------------------------- /src/core/range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/core/range.h -------------------------------------------------------------------------------- /src/core/rangelist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/core/rangelist.h -------------------------------------------------------------------------------- /src/core/richstring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/core/richstring.cpp -------------------------------------------------------------------------------- /src/core/richstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/core/richstring.h -------------------------------------------------------------------------------- /src/core/richtext/richcss.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/core/richtext/richcss.cpp -------------------------------------------------------------------------------- /src/core/richtext/richcss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/core/richtext/richcss.h -------------------------------------------------------------------------------- /src/core/richtext/richdocument.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/core/richtext/richdocument.cpp -------------------------------------------------------------------------------- /src/core/richtext/richdocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/core/richtext/richdocument.h -------------------------------------------------------------------------------- /src/core/richtext/richdocumenteditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/core/richtext/richdocumenteditor.cpp -------------------------------------------------------------------------------- /src/core/richtext/richdocumenteditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/core/richtext/richdocumenteditor.h -------------------------------------------------------------------------------- /src/core/richtext/richdocumentlayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/core/richtext/richdocumentlayout.cpp -------------------------------------------------------------------------------- /src/core/richtext/richdocumentlayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/core/richtext/richdocumentlayout.h -------------------------------------------------------------------------------- /src/core/richtext/richdom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/core/richtext/richdom.cpp -------------------------------------------------------------------------------- /src/core/richtext/richdom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/core/richtext/richdom.h -------------------------------------------------------------------------------- /src/core/subtitle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/core/subtitle.cpp -------------------------------------------------------------------------------- /src/core/subtitle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/core/subtitle.h -------------------------------------------------------------------------------- /src/core/subtitleiterator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/core/subtitleiterator.cpp -------------------------------------------------------------------------------- /src/core/subtitleiterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/core/subtitleiterator.h -------------------------------------------------------------------------------- /src/core/subtitleline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/core/subtitleline.cpp -------------------------------------------------------------------------------- /src/core/subtitleline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/core/subtitleline.h -------------------------------------------------------------------------------- /src/core/subtitletarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/core/subtitletarget.h -------------------------------------------------------------------------------- /src/core/time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/core/time.cpp -------------------------------------------------------------------------------- /src/core/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/core/time.h -------------------------------------------------------------------------------- /src/core/undo/subtitleactions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/core/undo/subtitleactions.cpp -------------------------------------------------------------------------------- /src/core/undo/subtitleactions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/core/undo/subtitleactions.h -------------------------------------------------------------------------------- /src/core/undo/subtitlelineactions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/core/undo/subtitlelineactions.cpp -------------------------------------------------------------------------------- /src/core/undo/subtitlelineactions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/core/undo/subtitlelineactions.h -------------------------------------------------------------------------------- /src/core/undo/undoaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/core/undo/undoaction.cpp -------------------------------------------------------------------------------- /src/core/undo/undoaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/core/undo/undoaction.h -------------------------------------------------------------------------------- /src/core/undo/undostack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/core/undo/undostack.cpp -------------------------------------------------------------------------------- /src/core/undo/undostack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/core/undo/undostack.h -------------------------------------------------------------------------------- /src/dialogs/actiondialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/dialogs/actiondialog.cpp -------------------------------------------------------------------------------- /src/dialogs/actiondialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/dialogs/actiondialog.h -------------------------------------------------------------------------------- /src/dialogs/actionwithtargetdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/dialogs/actionwithtargetdialog.cpp -------------------------------------------------------------------------------- /src/dialogs/actionwithtargetdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/dialogs/actionwithtargetdialog.h -------------------------------------------------------------------------------- /src/dialogs/adjusttimesdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/dialogs/adjusttimesdialog.cpp -------------------------------------------------------------------------------- /src/dialogs/adjusttimesdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/dialogs/adjusttimesdialog.h -------------------------------------------------------------------------------- /src/dialogs/autodurationsdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/dialogs/autodurationsdialog.cpp -------------------------------------------------------------------------------- /src/dialogs/autodurationsdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/dialogs/autodurationsdialog.h -------------------------------------------------------------------------------- /src/dialogs/changeframeratedialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/dialogs/changeframeratedialog.cpp -------------------------------------------------------------------------------- /src/dialogs/changeframeratedialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/dialogs/changeframeratedialog.h -------------------------------------------------------------------------------- /src/dialogs/changetextscasedialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/dialogs/changetextscasedialog.cpp -------------------------------------------------------------------------------- /src/dialogs/changetextscasedialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/dialogs/changetextscasedialog.h -------------------------------------------------------------------------------- /src/dialogs/durationlimitsdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/dialogs/durationlimitsdialog.cpp -------------------------------------------------------------------------------- /src/dialogs/durationlimitsdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/dialogs/durationlimitsdialog.h -------------------------------------------------------------------------------- /src/dialogs/encodingdetectdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/dialogs/encodingdetectdialog.cpp -------------------------------------------------------------------------------- /src/dialogs/encodingdetectdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/dialogs/encodingdetectdialog.h -------------------------------------------------------------------------------- /src/dialogs/encodingdetectdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/dialogs/encodingdetectdialog.ui -------------------------------------------------------------------------------- /src/dialogs/fixoverlappingtimesdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/dialogs/fixoverlappingtimesdialog.cpp -------------------------------------------------------------------------------- /src/dialogs/fixoverlappingtimesdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/dialogs/fixoverlappingtimesdialog.h -------------------------------------------------------------------------------- /src/dialogs/fixpunctuationdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/dialogs/fixpunctuationdialog.cpp -------------------------------------------------------------------------------- /src/dialogs/fixpunctuationdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/dialogs/fixpunctuationdialog.h -------------------------------------------------------------------------------- /src/dialogs/insertlinedialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/dialogs/insertlinedialog.cpp -------------------------------------------------------------------------------- /src/dialogs/insertlinedialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/dialogs/insertlinedialog.h -------------------------------------------------------------------------------- /src/dialogs/intinputdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/dialogs/intinputdialog.cpp -------------------------------------------------------------------------------- /src/dialogs/intinputdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/dialogs/intinputdialog.h -------------------------------------------------------------------------------- /src/dialogs/intinputdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/dialogs/intinputdialog.ui -------------------------------------------------------------------------------- /src/dialogs/joinsubtitlesdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/dialogs/joinsubtitlesdialog.cpp -------------------------------------------------------------------------------- /src/dialogs/joinsubtitlesdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/dialogs/joinsubtitlesdialog.h -------------------------------------------------------------------------------- /src/dialogs/progressdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/dialogs/progressdialog.cpp -------------------------------------------------------------------------------- /src/dialogs/progressdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/dialogs/progressdialog.h -------------------------------------------------------------------------------- /src/dialogs/removelinesdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/dialogs/removelinesdialog.cpp -------------------------------------------------------------------------------- /src/dialogs/removelinesdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/dialogs/removelinesdialog.h -------------------------------------------------------------------------------- /src/dialogs/selectablesubtitledialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/dialogs/selectablesubtitledialog.cpp -------------------------------------------------------------------------------- /src/dialogs/selectablesubtitledialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/dialogs/selectablesubtitledialog.h -------------------------------------------------------------------------------- /src/dialogs/shifttimesdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/dialogs/shifttimesdialog.cpp -------------------------------------------------------------------------------- /src/dialogs/shifttimesdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/dialogs/shifttimesdialog.h -------------------------------------------------------------------------------- /src/dialogs/smarttextsadjustdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/dialogs/smarttextsadjustdialog.cpp -------------------------------------------------------------------------------- /src/dialogs/smarttextsadjustdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/dialogs/smarttextsadjustdialog.h -------------------------------------------------------------------------------- /src/dialogs/splitsubtitledialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/dialogs/splitsubtitledialog.cpp -------------------------------------------------------------------------------- /src/dialogs/splitsubtitledialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/dialogs/splitsubtitledialog.h -------------------------------------------------------------------------------- /src/dialogs/subtitleclassdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/dialogs/subtitleclassdialog.cpp -------------------------------------------------------------------------------- /src/dialogs/subtitleclassdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/dialogs/subtitleclassdialog.h -------------------------------------------------------------------------------- /src/dialogs/subtitleclassdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/dialogs/subtitleclassdialog.ui -------------------------------------------------------------------------------- /src/dialogs/subtitlecolordialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/dialogs/subtitlecolordialog.cpp -------------------------------------------------------------------------------- /src/dialogs/subtitlecolordialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/dialogs/subtitlecolordialog.h -------------------------------------------------------------------------------- /src/dialogs/subtitlevoicedialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/dialogs/subtitlevoicedialog.cpp -------------------------------------------------------------------------------- /src/dialogs/subtitlevoicedialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/dialogs/subtitlevoicedialog.h -------------------------------------------------------------------------------- /src/dialogs/subtitlevoicedialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/dialogs/subtitlevoicedialog.ui -------------------------------------------------------------------------------- /src/dialogs/syncsubtitlesdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/dialogs/syncsubtitlesdialog.cpp -------------------------------------------------------------------------------- /src/dialogs/syncsubtitlesdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/dialogs/syncsubtitlesdialog.h -------------------------------------------------------------------------------- /src/dialogs/textinputdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/dialogs/textinputdialog.cpp -------------------------------------------------------------------------------- /src/dialogs/textinputdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/dialogs/textinputdialog.h -------------------------------------------------------------------------------- /src/dialogs/textinputdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/dialogs/textinputdialog.ui -------------------------------------------------------------------------------- /src/errors/errorfinder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/errors/errorfinder.cpp -------------------------------------------------------------------------------- /src/errors/errorfinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/errors/errorfinder.h -------------------------------------------------------------------------------- /src/errors/errortracker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/errors/errortracker.cpp -------------------------------------------------------------------------------- /src/errors/errortracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/errors/errortracker.h -------------------------------------------------------------------------------- /src/errors/finderrorsdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/errors/finderrorsdialog.cpp -------------------------------------------------------------------------------- /src/errors/finderrorsdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/errors/finderrorsdialog.h -------------------------------------------------------------------------------- /src/formats/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/formats/format.h -------------------------------------------------------------------------------- /src/formats/formatmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/formats/formatmanager.cpp -------------------------------------------------------------------------------- /src/formats/formatmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/formats/formatmanager.h -------------------------------------------------------------------------------- /src/formats/inputformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/formats/inputformat.h -------------------------------------------------------------------------------- /src/formats/microdvd/microdvdinputformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/formats/microdvd/microdvdinputformat.h -------------------------------------------------------------------------------- /src/formats/microdvd/microdvdoutputformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/formats/microdvd/microdvdoutputformat.h -------------------------------------------------------------------------------- /src/formats/mplayer/mplayerinputformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/formats/mplayer/mplayerinputformat.h -------------------------------------------------------------------------------- /src/formats/mplayer/mplayeroutputformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/formats/mplayer/mplayeroutputformat.h -------------------------------------------------------------------------------- /src/formats/mplayer2/mplayer2inputformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/formats/mplayer2/mplayer2inputformat.h -------------------------------------------------------------------------------- /src/formats/mplayer2/mplayer2outputformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/formats/mplayer2/mplayer2outputformat.h -------------------------------------------------------------------------------- /src/formats/outputformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/formats/outputformat.h -------------------------------------------------------------------------------- /src/formats/subrip/subripinputformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/formats/subrip/subripinputformat.h -------------------------------------------------------------------------------- /src/formats/subrip/subripoutputformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/formats/subrip/subripoutputformat.h -------------------------------------------------------------------------------- /src/formats/substationalpha/substationalphainputformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/formats/substationalpha/substationalphainputformat.h -------------------------------------------------------------------------------- /src/formats/substationalpha/substationalphaoutputformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/formats/substationalpha/substationalphaoutputformat.h -------------------------------------------------------------------------------- /src/formats/subviewer1/subviewer1inputformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/formats/subviewer1/subviewer1inputformat.h -------------------------------------------------------------------------------- /src/formats/subviewer1/subviewer1outputformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/formats/subviewer1/subviewer1outputformat.h -------------------------------------------------------------------------------- /src/formats/subviewer2/subviewer2inputformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/formats/subviewer2/subviewer2inputformat.h -------------------------------------------------------------------------------- /src/formats/subviewer2/subviewer2outputformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/formats/subviewer2/subviewer2outputformat.h -------------------------------------------------------------------------------- /src/formats/textdemux/textdemux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/formats/textdemux/textdemux.cpp -------------------------------------------------------------------------------- /src/formats/textdemux/textdemux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/formats/textdemux/textdemux.h -------------------------------------------------------------------------------- /src/formats/tmplayer/tmplayerinputformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/formats/tmplayer/tmplayerinputformat.h -------------------------------------------------------------------------------- /src/formats/tmplayer/tmplayeroutputformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/formats/tmplayer/tmplayeroutputformat.h -------------------------------------------------------------------------------- /src/formats/vobsub/vobsubinputformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/formats/vobsub/vobsubinputformat.h -------------------------------------------------------------------------------- /src/formats/vobsub/vobsubinputinitdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/formats/vobsub/vobsubinputinitdialog.cpp -------------------------------------------------------------------------------- /src/formats/vobsub/vobsubinputinitdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/formats/vobsub/vobsubinputinitdialog.h -------------------------------------------------------------------------------- /src/formats/vobsub/vobsubinputinitdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/formats/vobsub/vobsubinputinitdialog.ui -------------------------------------------------------------------------------- /src/formats/vobsub/vobsubinputprocessdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/formats/vobsub/vobsubinputprocessdialog.cpp -------------------------------------------------------------------------------- /src/formats/vobsub/vobsubinputprocessdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/formats/vobsub/vobsubinputprocessdialog.h -------------------------------------------------------------------------------- /src/formats/vobsub/vobsubinputprocessdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/formats/vobsub/vobsubinputprocessdialog.ui -------------------------------------------------------------------------------- /src/formats/webvtt/webvttinputformat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/formats/webvtt/webvttinputformat.cpp -------------------------------------------------------------------------------- /src/formats/webvtt/webvttinputformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/formats/webvtt/webvttinputformat.h -------------------------------------------------------------------------------- /src/formats/webvtt/webvttoutputformat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/formats/webvtt/webvttoutputformat.cpp -------------------------------------------------------------------------------- /src/formats/webvtt/webvttoutputformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/formats/webvtt/webvttoutputformat.h -------------------------------------------------------------------------------- /src/formats/youtubecaptions/youtubecaptionsinputformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/formats/youtubecaptions/youtubecaptionsinputformat.h -------------------------------------------------------------------------------- /src/formats/youtubecaptions/youtubecaptionsoutputformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/formats/youtubecaptions/youtubecaptionsoutputformat.h -------------------------------------------------------------------------------- /src/gui/currentlinewidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/gui/currentlinewidget.cpp -------------------------------------------------------------------------------- /src/gui/currentlinewidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/gui/currentlinewidget.h -------------------------------------------------------------------------------- /src/gui/playerwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/gui/playerwidget.cpp -------------------------------------------------------------------------------- /src/gui/playerwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/gui/playerwidget.h -------------------------------------------------------------------------------- /src/gui/subtitlemeta/csshighlighter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/gui/subtitlemeta/csshighlighter.cpp -------------------------------------------------------------------------------- /src/gui/subtitlemeta/csshighlighter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/gui/subtitlemeta/csshighlighter.h -------------------------------------------------------------------------------- /src/gui/subtitlemeta/subtitlemetawidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/gui/subtitlemeta/subtitlemetawidget.cpp -------------------------------------------------------------------------------- /src/gui/subtitlemeta/subtitlemetawidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/gui/subtitlemeta/subtitlemetawidget.h -------------------------------------------------------------------------------- /src/gui/subtitlemeta/subtitlepositionwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/gui/subtitlemeta/subtitlepositionwidget.cpp -------------------------------------------------------------------------------- /src/gui/subtitlemeta/subtitlepositionwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/gui/subtitlemeta/subtitlepositionwidget.h -------------------------------------------------------------------------------- /src/gui/subtitlemeta/subtitlepositionwidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/gui/subtitlemeta/subtitlepositionwidget.ui -------------------------------------------------------------------------------- /src/gui/treeview/linesitemdelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/gui/treeview/linesitemdelegate.cpp -------------------------------------------------------------------------------- /src/gui/treeview/linesitemdelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/gui/treeview/linesitemdelegate.h -------------------------------------------------------------------------------- /src/gui/treeview/linesmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/gui/treeview/linesmodel.cpp -------------------------------------------------------------------------------- /src/gui/treeview/linesmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/gui/treeview/linesmodel.h -------------------------------------------------------------------------------- /src/gui/treeview/linesselectionmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/gui/treeview/linesselectionmodel.cpp -------------------------------------------------------------------------------- /src/gui/treeview/linesselectionmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/gui/treeview/linesselectionmodel.h -------------------------------------------------------------------------------- /src/gui/treeview/lineswidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/gui/treeview/lineswidget.cpp -------------------------------------------------------------------------------- /src/gui/treeview/lineswidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/gui/treeview/lineswidget.h -------------------------------------------------------------------------------- /src/gui/treeview/richdocumentptr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/gui/treeview/richdocumentptr.cpp -------------------------------------------------------------------------------- /src/gui/treeview/richdocumentptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/gui/treeview/richdocumentptr.h -------------------------------------------------------------------------------- /src/gui/treeview/richlineedit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/gui/treeview/richlineedit.cpp -------------------------------------------------------------------------------- /src/gui/treeview/richlineedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/gui/treeview/richlineedit.h -------------------------------------------------------------------------------- /src/gui/treeview/treeview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/gui/treeview/treeview.cpp -------------------------------------------------------------------------------- /src/gui/treeview/treeview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/gui/treeview/treeview.h -------------------------------------------------------------------------------- /src/gui/waveform/wavebuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/gui/waveform/wavebuffer.cpp -------------------------------------------------------------------------------- /src/gui/waveform/wavebuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/gui/waveform/wavebuffer.h -------------------------------------------------------------------------------- /src/gui/waveform/waveformwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/gui/waveform/waveformwidget.cpp -------------------------------------------------------------------------------- /src/gui/waveform/waveformwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/gui/waveform/waveformwidget.h -------------------------------------------------------------------------------- /src/gui/waveform/waverenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/gui/waveform/waverenderer.cpp -------------------------------------------------------------------------------- /src/gui/waveform/waverenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/gui/waveform/waverenderer.h -------------------------------------------------------------------------------- /src/gui/waveform/wavesubtitle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/gui/waveform/wavesubtitle.cpp -------------------------------------------------------------------------------- /src/gui/waveform/wavesubtitle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/gui/waveform/wavesubtitle.h -------------------------------------------------------------------------------- /src/gui/waveform/zoombuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/gui/waveform/zoombuffer.cpp -------------------------------------------------------------------------------- /src/gui/waveform/zoombuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/gui/waveform/zoombuffer.h -------------------------------------------------------------------------------- /src/helpers/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/helpers/common.h -------------------------------------------------------------------------------- /src/helpers/commondefs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/helpers/commondefs.cpp -------------------------------------------------------------------------------- /src/helpers/commondefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/helpers/commondefs.h -------------------------------------------------------------------------------- /src/helpers/debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/helpers/debug.cpp -------------------------------------------------------------------------------- /src/helpers/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/helpers/debug.h -------------------------------------------------------------------------------- /src/helpers/languagecode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/helpers/languagecode.cpp -------------------------------------------------------------------------------- /src/helpers/languagecode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/helpers/languagecode.h -------------------------------------------------------------------------------- /src/helpers/objectref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/helpers/objectref.h -------------------------------------------------------------------------------- /src/helpers/pluginhelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/helpers/pluginhelper.h -------------------------------------------------------------------------------- /src/icons/128-apps-subtitlecomposer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/icons/128-apps-subtitlecomposer.png -------------------------------------------------------------------------------- /src/icons/16-apps-subtitlecomposer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/icons/16-apps-subtitlecomposer.png -------------------------------------------------------------------------------- /src/icons/256-apps-subtitlecomposer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/icons/256-apps-subtitlecomposer.png -------------------------------------------------------------------------------- /src/icons/32-apps-subtitlecomposer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/icons/32-apps-subtitlecomposer.png -------------------------------------------------------------------------------- /src/icons/48-apps-subtitlecomposer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/icons/48-apps-subtitlecomposer.png -------------------------------------------------------------------------------- /src/icons/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/icons/CMakeLists.txt -------------------------------------------------------------------------------- /src/icons/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/icons/README -------------------------------------------------------------------------------- /src/icons/actions/anchor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/icons/actions/anchor.svg -------------------------------------------------------------------------------- /src/icons/actions/audio-extract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/icons/actions/audio-extract.png -------------------------------------------------------------------------------- /src/icons/actions/curline-follows-video.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/icons/actions/curline-follows-video.svg -------------------------------------------------------------------------------- /src/icons/actions/playrate-minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/icons/actions/playrate-minus.svg -------------------------------------------------------------------------------- /src/icons/actions/playrate-plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/icons/actions/playrate-plus.svg -------------------------------------------------------------------------------- /src/icons/actions/select-stream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/icons/actions/select-stream.png -------------------------------------------------------------------------------- /src/icons/actions/set-hide-time.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/icons/actions/set-hide-time.svg -------------------------------------------------------------------------------- /src/icons/actions/set-show-time.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/icons/actions/set-show-time.svg -------------------------------------------------------------------------------- /src/icons/actions/time-from-video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/icons/actions/time-from-video.png -------------------------------------------------------------------------------- /src/icons/actions/waveform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/icons/actions/waveform.png -------------------------------------------------------------------------------- /src/icons/apps/mediaplayer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/icons/apps/mediaplayer.png -------------------------------------------------------------------------------- /src/icons/apps/pocketsphinx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/icons/apps/pocketsphinx.png -------------------------------------------------------------------------------- /src/icons/breeze.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/icons/breeze.theme -------------------------------------------------------------------------------- /src/icons/icon-bundle.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/icons/icon-bundle.qrc -------------------------------------------------------------------------------- /src/icons/mingw-icon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/icons/mingw-icon.sh -------------------------------------------------------------------------------- /src/icons/subtitlecomposer.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/icons/subtitlecomposer.ico -------------------------------------------------------------------------------- /src/icons/subtitlecomposer.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/icons/subtitlecomposer.rc -------------------------------------------------------------------------------- /src/icons/theme-icons-bundle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/icons/theme-icons-bundle.sh -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/main_tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/main_tests.h -------------------------------------------------------------------------------- /src/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/mainwindow.cpp -------------------------------------------------------------------------------- /src/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/mainwindow.h -------------------------------------------------------------------------------- /src/org.kde.subtitlecomposer.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/org.kde.subtitlecomposer.appdata.xml -------------------------------------------------------------------------------- /src/org.kde.subtitlecomposer.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/org.kde.subtitlecomposer.desktop -------------------------------------------------------------------------------- /src/scconfig.kcfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/scconfig.kcfg -------------------------------------------------------------------------------- /src/scconfig.kcfgc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/scconfig.kcfgc -------------------------------------------------------------------------------- /src/scripting/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/scripting/CMakeLists.txt -------------------------------------------------------------------------------- /src/scripting/examples/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/scripting/examples/README -------------------------------------------------------------------------------- /src/scripting/examples/example_capitalize_all_lines.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/scripting/examples/example_capitalize_all_lines.js -------------------------------------------------------------------------------- /src/scripting/examples/example_iterate_selection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/scripting/examples/example_iterate_selection.js -------------------------------------------------------------------------------- /src/scripting/examples/example_remove_odd_lines.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/scripting/examples/example_remove_odd_lines.js -------------------------------------------------------------------------------- /src/scripting/examples/example_trim_to_selection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/scripting/examples/example_trim_to_selection.js -------------------------------------------------------------------------------- /src/scripting/examples/remove_hearing_impaired_text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/scripting/examples/remove_hearing_impaired_text.js -------------------------------------------------------------------------------- /src/scripting/scripting_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/scripting/scripting_list.cpp -------------------------------------------------------------------------------- /src/scripting/scripting_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/scripting/scripting_list.h -------------------------------------------------------------------------------- /src/scripting/scripting_range.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/scripting/scripting_range.cpp -------------------------------------------------------------------------------- /src/scripting/scripting_range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/scripting/scripting_range.h -------------------------------------------------------------------------------- /src/scripting/scripting_rangelist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/scripting/scripting_rangelist.cpp -------------------------------------------------------------------------------- /src/scripting/scripting_rangelist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/scripting/scripting_rangelist.h -------------------------------------------------------------------------------- /src/scripting/scripting_rangesmodule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/scripting/scripting_rangesmodule.cpp -------------------------------------------------------------------------------- /src/scripting/scripting_rangesmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/scripting/scripting_rangesmodule.h -------------------------------------------------------------------------------- /src/scripting/scripting_richstring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/scripting/scripting_richstring.cpp -------------------------------------------------------------------------------- /src/scripting/scripting_richstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/scripting/scripting_richstring.h -------------------------------------------------------------------------------- /src/scripting/scripting_stringsmodule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/scripting/scripting_stringsmodule.cpp -------------------------------------------------------------------------------- /src/scripting/scripting_stringsmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/scripting/scripting_stringsmodule.h -------------------------------------------------------------------------------- /src/scripting/scripting_subtitle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/scripting/scripting_subtitle.cpp -------------------------------------------------------------------------------- /src/scripting/scripting_subtitle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/scripting/scripting_subtitle.h -------------------------------------------------------------------------------- /src/scripting/scripting_subtitleline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/scripting/scripting_subtitleline.cpp -------------------------------------------------------------------------------- /src/scripting/scripting_subtitleline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/scripting/scripting_subtitleline.h -------------------------------------------------------------------------------- /src/scripting/scripting_subtitlelinemodule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/scripting/scripting_subtitlelinemodule.cpp -------------------------------------------------------------------------------- /src/scripting/scripting_subtitlelinemodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/scripting/scripting_subtitlelinemodule.h -------------------------------------------------------------------------------- /src/scripting/scripting_subtitlemodule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/scripting/scripting_subtitlemodule.cpp -------------------------------------------------------------------------------- /src/scripting/scripting_subtitlemodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/scripting/scripting_subtitlemodule.h -------------------------------------------------------------------------------- /src/scripting/scriptsmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/scripting/scriptsmanager.cpp -------------------------------------------------------------------------------- /src/scripting/scriptsmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/scripting/scriptsmanager.h -------------------------------------------------------------------------------- /src/scripting/scriptsmanager.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/scripting/scriptsmanager.ui -------------------------------------------------------------------------------- /src/speechplugins/pocketsphinx/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/speechplugins/pocketsphinx/CMakeLists.txt -------------------------------------------------------------------------------- /src/speechplugins/pocketsphinx/plugin-config.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/speechplugins/pocketsphinx/plugin-config.h.cmake -------------------------------------------------------------------------------- /src/speechplugins/pocketsphinx/pocketsphinxconfig.kcfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/speechplugins/pocketsphinx/pocketsphinxconfig.kcfg -------------------------------------------------------------------------------- /src/speechplugins/pocketsphinx/pocketsphinxconfig.kcfgc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/speechplugins/pocketsphinx/pocketsphinxconfig.kcfgc -------------------------------------------------------------------------------- /src/speechplugins/pocketsphinx/pocketsphinxconfigwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/speechplugins/pocketsphinx/pocketsphinxconfigwidget.cpp -------------------------------------------------------------------------------- /src/speechplugins/pocketsphinx/pocketsphinxconfigwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/speechplugins/pocketsphinx/pocketsphinxconfigwidget.h -------------------------------------------------------------------------------- /src/speechplugins/pocketsphinx/pocketsphinxconfigwidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/speechplugins/pocketsphinx/pocketsphinxconfigwidget.ui -------------------------------------------------------------------------------- /src/speechplugins/pocketsphinx/pocketsphinxplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/speechplugins/pocketsphinx/pocketsphinxplugin.cpp -------------------------------------------------------------------------------- /src/speechplugins/pocketsphinx/pocketsphinxplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/speechplugins/pocketsphinx/pocketsphinxplugin.h -------------------------------------------------------------------------------- /src/speechprocessor/speechplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/speechprocessor/speechplugin.cpp -------------------------------------------------------------------------------- /src/speechprocessor/speechplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/speechprocessor/speechplugin.h -------------------------------------------------------------------------------- /src/speechprocessor/speechprocessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/speechprocessor/speechprocessor.cpp -------------------------------------------------------------------------------- /src/speechprocessor/speechprocessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/speechprocessor/speechprocessor.h -------------------------------------------------------------------------------- /src/streamprocessor/streamprocessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/streamprocessor/streamprocessor.cpp -------------------------------------------------------------------------------- /src/streamprocessor/streamprocessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/streamprocessor/streamprocessor.h -------------------------------------------------------------------------------- /src/subtitlecomposer.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/subtitlecomposer.qrc -------------------------------------------------------------------------------- /src/subtitlecomposer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/subtitlecomposer.xml -------------------------------------------------------------------------------- /src/subtitlecomposerrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/subtitlecomposerrc -------------------------------------------------------------------------------- /src/subtitlecomposerui.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/subtitlecomposerui.rc -------------------------------------------------------------------------------- /src/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/tests/CMakeLists.txt -------------------------------------------------------------------------------- /src/tests/objectreftest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/tests/objectreftest.cpp -------------------------------------------------------------------------------- /src/tests/objectreftest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/tests/objectreftest.h -------------------------------------------------------------------------------- /src/tests/rangelisttest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/tests/rangelisttest.cpp -------------------------------------------------------------------------------- /src/tests/rangelisttest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/tests/rangelisttest.h -------------------------------------------------------------------------------- /src/tests/rangetest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/tests/rangetest.cpp -------------------------------------------------------------------------------- /src/tests/rangetest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/tests/rangetest.h -------------------------------------------------------------------------------- /src/tests/richcsstest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/tests/richcsstest.cpp -------------------------------------------------------------------------------- /src/tests/richcsstest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/tests/richcsstest.h -------------------------------------------------------------------------------- /src/tests/richdocumentlayouttest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/tests/richdocumentlayouttest.cpp -------------------------------------------------------------------------------- /src/tests/richdocumentlayouttest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/tests/richdocumentlayouttest.h -------------------------------------------------------------------------------- /src/tests/richdocumenttest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/tests/richdocumenttest.cpp -------------------------------------------------------------------------------- /src/tests/richdocumenttest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/tests/richdocumenttest.h -------------------------------------------------------------------------------- /src/tests/richstringtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/tests/richstringtest.cpp -------------------------------------------------------------------------------- /src/tests/richstringtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/tests/richstringtest.h -------------------------------------------------------------------------------- /src/tests/subtitletest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/tests/subtitletest.cpp -------------------------------------------------------------------------------- /src/tests/subtitletest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/tests/subtitletest.h -------------------------------------------------------------------------------- /src/tests/timetest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/tests/timetest.cpp -------------------------------------------------------------------------------- /src/tests/timetest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/tests/timetest.h -------------------------------------------------------------------------------- /src/translate/deeplengine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/translate/deeplengine.cpp -------------------------------------------------------------------------------- /src/translate/deeplengine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/translate/deeplengine.h -------------------------------------------------------------------------------- /src/translate/deeplengine.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/translate/deeplengine.ui -------------------------------------------------------------------------------- /src/translate/googlecloudengine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/translate/googlecloudengine.cpp -------------------------------------------------------------------------------- /src/translate/googlecloudengine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/translate/googlecloudengine.h -------------------------------------------------------------------------------- /src/translate/googlecloudengine.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/translate/googlecloudengine.ui -------------------------------------------------------------------------------- /src/translate/mintengine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/translate/mintengine.cpp -------------------------------------------------------------------------------- /src/translate/mintengine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/translate/mintengine.h -------------------------------------------------------------------------------- /src/translate/mintengine.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/translate/mintengine.ui -------------------------------------------------------------------------------- /src/translate/translatedialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/translate/translatedialog.cpp -------------------------------------------------------------------------------- /src/translate/translatedialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/translate/translatedialog.h -------------------------------------------------------------------------------- /src/translate/translateengine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/translate/translateengine.cpp -------------------------------------------------------------------------------- /src/translate/translateengine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/translate/translateengine.h -------------------------------------------------------------------------------- /src/utils/finder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/utils/finder.cpp -------------------------------------------------------------------------------- /src/utils/finder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/utils/finder.h -------------------------------------------------------------------------------- /src/utils/replacer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/utils/replacer.cpp -------------------------------------------------------------------------------- /src/utils/replacer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/utils/replacer.h -------------------------------------------------------------------------------- /src/utils/speller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/utils/speller.cpp -------------------------------------------------------------------------------- /src/utils/speller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/utils/speller.h -------------------------------------------------------------------------------- /src/videoplayer/backend/audiodecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/videoplayer/backend/audiodecoder.cpp -------------------------------------------------------------------------------- /src/videoplayer/backend/audiodecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/videoplayer/backend/audiodecoder.h -------------------------------------------------------------------------------- /src/videoplayer/backend/clock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/videoplayer/backend/clock.cpp -------------------------------------------------------------------------------- /src/videoplayer/backend/clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/videoplayer/backend/clock.h -------------------------------------------------------------------------------- /src/videoplayer/backend/decoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/videoplayer/backend/decoder.cpp -------------------------------------------------------------------------------- /src/videoplayer/backend/decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/videoplayer/backend/decoder.h -------------------------------------------------------------------------------- /src/videoplayer/backend/ffplayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/videoplayer/backend/ffplayer.cpp -------------------------------------------------------------------------------- /src/videoplayer/backend/ffplayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/videoplayer/backend/ffplayer.h -------------------------------------------------------------------------------- /src/videoplayer/backend/framequeue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/videoplayer/backend/framequeue.cpp -------------------------------------------------------------------------------- /src/videoplayer/backend/framequeue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/videoplayer/backend/framequeue.h -------------------------------------------------------------------------------- /src/videoplayer/backend/glcolorspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/videoplayer/backend/glcolorspace.h -------------------------------------------------------------------------------- /src/videoplayer/backend/glcolorspace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/videoplayer/backend/glcolorspace.js -------------------------------------------------------------------------------- /src/videoplayer/backend/glrenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/videoplayer/backend/glrenderer.cpp -------------------------------------------------------------------------------- /src/videoplayer/backend/glrenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/videoplayer/backend/glrenderer.h -------------------------------------------------------------------------------- /src/videoplayer/backend/packetqueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/videoplayer/backend/packetqueue.cpp -------------------------------------------------------------------------------- /src/videoplayer/backend/packetqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/videoplayer/backend/packetqueue.h -------------------------------------------------------------------------------- /src/videoplayer/backend/renderthread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/videoplayer/backend/renderthread.cpp -------------------------------------------------------------------------------- /src/videoplayer/backend/renderthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/videoplayer/backend/renderthread.h -------------------------------------------------------------------------------- /src/videoplayer/backend/streamdemuxer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/videoplayer/backend/streamdemuxer.cpp -------------------------------------------------------------------------------- /src/videoplayer/backend/streamdemuxer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/videoplayer/backend/streamdemuxer.h -------------------------------------------------------------------------------- /src/videoplayer/backend/subtitledecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/videoplayer/backend/subtitledecoder.cpp -------------------------------------------------------------------------------- /src/videoplayer/backend/subtitledecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/videoplayer/backend/subtitledecoder.h -------------------------------------------------------------------------------- /src/videoplayer/backend/videodecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/videoplayer/backend/videodecoder.cpp -------------------------------------------------------------------------------- /src/videoplayer/backend/videodecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/videoplayer/backend/videodecoder.h -------------------------------------------------------------------------------- /src/videoplayer/backend/videostate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/videoplayer/backend/videostate.cpp -------------------------------------------------------------------------------- /src/videoplayer/backend/videostate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/videoplayer/backend/videostate.h -------------------------------------------------------------------------------- /src/videoplayer/subtitletextoverlay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/videoplayer/subtitletextoverlay.cpp -------------------------------------------------------------------------------- /src/videoplayer/subtitletextoverlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/videoplayer/subtitletextoverlay.h -------------------------------------------------------------------------------- /src/videoplayer/videoplayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/videoplayer/videoplayer.cpp -------------------------------------------------------------------------------- /src/videoplayer/videoplayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/videoplayer/videoplayer.h -------------------------------------------------------------------------------- /src/videoplayer/videowidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/videoplayer/videowidget.cpp -------------------------------------------------------------------------------- /src/videoplayer/videowidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/videoplayer/videowidget.h -------------------------------------------------------------------------------- /src/videoplayer/waveformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/videoplayer/waveformat.h -------------------------------------------------------------------------------- /src/widgets/attachablewidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/widgets/attachablewidget.cpp -------------------------------------------------------------------------------- /src/widgets/attachablewidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/widgets/attachablewidget.h -------------------------------------------------------------------------------- /src/widgets/layeredwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/widgets/layeredwidget.cpp -------------------------------------------------------------------------------- /src/widgets/layeredwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/widgets/layeredwidget.h -------------------------------------------------------------------------------- /src/widgets/pointingslider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/widgets/pointingslider.cpp -------------------------------------------------------------------------------- /src/widgets/pointingslider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/widgets/pointingslider.h -------------------------------------------------------------------------------- /src/widgets/simplerichtextedit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/widgets/simplerichtextedit.cpp -------------------------------------------------------------------------------- /src/widgets/simplerichtextedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/widgets/simplerichtextedit.h -------------------------------------------------------------------------------- /src/widgets/textoverlaywidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/widgets/textoverlaywidget.cpp -------------------------------------------------------------------------------- /src/widgets/textoverlaywidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/widgets/textoverlaywidget.h -------------------------------------------------------------------------------- /src/widgets/timeedit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/widgets/timeedit.cpp -------------------------------------------------------------------------------- /src/widgets/timeedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxrd2/SubtitleComposer/HEAD/src/widgets/timeedit.h --------------------------------------------------------------------------------