├── README.md ├── apache_license_2.txt └── src ├── .gitignore ├── Filters ├── bellfilter.cpp ├── bellfilter.h ├── bicubicfilter.cpp ├── bicubicfilter.h ├── bsplinefilter.cpp ├── bsplinefilter.h ├── filter.h ├── filterop.cpp ├── filterop.h ├── filters.cpp ├── filters.h ├── hermitefilter.cpp ├── hermitefilter.h ├── lanczos3filter.cpp ├── lanczos3filter.h ├── mitchellfilter.cpp ├── mitchellfilter.h ├── trianglefilter.cpp └── trianglefilter.h ├── Subtitles ├── bitmap.cpp ├── bitmap.h ├── erasepatch.cpp ├── erasepatch.h ├── imageobject.cpp ├── imageobject.h ├── imageobjectfragment.cpp ├── imageobjectfragment.h ├── palette.cpp ├── palette.h ├── palettebitmap.cpp ├── palettebitmap.h ├── paletteinfo.cpp ├── paletteinfo.h ├── subdvd.cpp ├── subdvd.h ├── subpicture.cpp ├── subpicture.h ├── subpicturebd.cpp ├── subpicturebd.h ├── subpicturedvd.cpp ├── subpicturedvd.h ├── subpicturehd.cpp ├── subpicturehd.h ├── subpicturexml.cpp ├── subpicturexml.h ├── substream.h ├── substreamdvd.cpp ├── substreamdvd.h ├── subtitleprocessor.cpp ├── subtitleprocessor.h ├── supbd.cpp ├── supbd.h ├── supdvd.cpp ├── supdvd.h ├── suphd.cpp ├── suphd.h ├── supxml.cpp └── supxml.h ├── Tools ├── bitstream.cpp ├── bitstream.h ├── filebuffer.cpp ├── filebuffer.h ├── hr_time.cpp ├── hr_time.h ├── numberutil.cpp ├── numberutil.h ├── quantizefilter.cpp ├── quantizefilter.h ├── timeutil.cpp └── timeutil.h ├── bdsup2sub++.pro ├── bdsup2sub.cpp ├── bdsup2sub.h ├── bdsup2sub.icns ├── bdsup2sub.ico ├── bdsup2sub.qrc ├── bdsup2sub.rc ├── bdsup2sub.ui ├── colordialog.cpp ├── colordialog.h ├── colordialog.ui ├── conversiondialog.cpp ├── conversiondialog.h ├── conversiondialog.ui ├── editdialog.cpp ├── editdialog.h ├── editdialog.ui ├── editpane.cpp ├── editpane.h ├── exportdialog.cpp ├── exportdialog.h ├── exportdialog.ui ├── framepalettedialog.cpp ├── framepalettedialog.h ├── framepalettedialog.ui ├── help.htm ├── help.ini ├── helpdialog.cpp ├── helpdialog.h ├── helpdialog.ui ├── main.cpp ├── movedialog.cpp ├── movedialog.h ├── movedialog.ui ├── progressdialog.cpp ├── progressdialog.h ├── progressdialog.ui ├── qrc_bdsup2sub.cpp ├── types.h ├── zoomableimagearea.cpp └── zoomableimagearea.h /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/README.md -------------------------------------------------------------------------------- /apache_license_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/apache_license_2.txt -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/Filters/bellfilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/Filters/bellfilter.cpp -------------------------------------------------------------------------------- /src/Filters/bellfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/Filters/bellfilter.h -------------------------------------------------------------------------------- /src/Filters/bicubicfilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/Filters/bicubicfilter.cpp -------------------------------------------------------------------------------- /src/Filters/bicubicfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/Filters/bicubicfilter.h -------------------------------------------------------------------------------- /src/Filters/bsplinefilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/Filters/bsplinefilter.cpp -------------------------------------------------------------------------------- /src/Filters/bsplinefilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/Filters/bsplinefilter.h -------------------------------------------------------------------------------- /src/Filters/filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/Filters/filter.h -------------------------------------------------------------------------------- /src/Filters/filterop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/Filters/filterop.cpp -------------------------------------------------------------------------------- /src/Filters/filterop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/Filters/filterop.h -------------------------------------------------------------------------------- /src/Filters/filters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/Filters/filters.cpp -------------------------------------------------------------------------------- /src/Filters/filters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/Filters/filters.h -------------------------------------------------------------------------------- /src/Filters/hermitefilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/Filters/hermitefilter.cpp -------------------------------------------------------------------------------- /src/Filters/hermitefilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/Filters/hermitefilter.h -------------------------------------------------------------------------------- /src/Filters/lanczos3filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/Filters/lanczos3filter.cpp -------------------------------------------------------------------------------- /src/Filters/lanczos3filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/Filters/lanczos3filter.h -------------------------------------------------------------------------------- /src/Filters/mitchellfilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/Filters/mitchellfilter.cpp -------------------------------------------------------------------------------- /src/Filters/mitchellfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/Filters/mitchellfilter.h -------------------------------------------------------------------------------- /src/Filters/trianglefilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/Filters/trianglefilter.cpp -------------------------------------------------------------------------------- /src/Filters/trianglefilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/Filters/trianglefilter.h -------------------------------------------------------------------------------- /src/Subtitles/bitmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/Subtitles/bitmap.cpp -------------------------------------------------------------------------------- /src/Subtitles/bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/Subtitles/bitmap.h -------------------------------------------------------------------------------- /src/Subtitles/erasepatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/Subtitles/erasepatch.cpp -------------------------------------------------------------------------------- /src/Subtitles/erasepatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/Subtitles/erasepatch.h -------------------------------------------------------------------------------- /src/Subtitles/imageobject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/Subtitles/imageobject.cpp -------------------------------------------------------------------------------- /src/Subtitles/imageobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/Subtitles/imageobject.h -------------------------------------------------------------------------------- /src/Subtitles/imageobjectfragment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/Subtitles/imageobjectfragment.cpp -------------------------------------------------------------------------------- /src/Subtitles/imageobjectfragment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/Subtitles/imageobjectfragment.h -------------------------------------------------------------------------------- /src/Subtitles/palette.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/Subtitles/palette.cpp -------------------------------------------------------------------------------- /src/Subtitles/palette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/Subtitles/palette.h -------------------------------------------------------------------------------- /src/Subtitles/palettebitmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/Subtitles/palettebitmap.cpp -------------------------------------------------------------------------------- /src/Subtitles/palettebitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/Subtitles/palettebitmap.h -------------------------------------------------------------------------------- /src/Subtitles/paletteinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/Subtitles/paletteinfo.cpp -------------------------------------------------------------------------------- /src/Subtitles/paletteinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/Subtitles/paletteinfo.h -------------------------------------------------------------------------------- /src/Subtitles/subdvd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/Subtitles/subdvd.cpp -------------------------------------------------------------------------------- /src/Subtitles/subdvd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/Subtitles/subdvd.h -------------------------------------------------------------------------------- /src/Subtitles/subpicture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/Subtitles/subpicture.cpp -------------------------------------------------------------------------------- /src/Subtitles/subpicture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/Subtitles/subpicture.h -------------------------------------------------------------------------------- /src/Subtitles/subpicturebd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/Subtitles/subpicturebd.cpp -------------------------------------------------------------------------------- /src/Subtitles/subpicturebd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/Subtitles/subpicturebd.h -------------------------------------------------------------------------------- /src/Subtitles/subpicturedvd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/Subtitles/subpicturedvd.cpp -------------------------------------------------------------------------------- /src/Subtitles/subpicturedvd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/Subtitles/subpicturedvd.h -------------------------------------------------------------------------------- /src/Subtitles/subpicturehd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/Subtitles/subpicturehd.cpp -------------------------------------------------------------------------------- /src/Subtitles/subpicturehd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/Subtitles/subpicturehd.h -------------------------------------------------------------------------------- /src/Subtitles/subpicturexml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/Subtitles/subpicturexml.cpp -------------------------------------------------------------------------------- /src/Subtitles/subpicturexml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/Subtitles/subpicturexml.h -------------------------------------------------------------------------------- /src/Subtitles/substream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/Subtitles/substream.h -------------------------------------------------------------------------------- /src/Subtitles/substreamdvd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/Subtitles/substreamdvd.cpp -------------------------------------------------------------------------------- /src/Subtitles/substreamdvd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/Subtitles/substreamdvd.h -------------------------------------------------------------------------------- /src/Subtitles/subtitleprocessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/Subtitles/subtitleprocessor.cpp -------------------------------------------------------------------------------- /src/Subtitles/subtitleprocessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/Subtitles/subtitleprocessor.h -------------------------------------------------------------------------------- /src/Subtitles/supbd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/Subtitles/supbd.cpp -------------------------------------------------------------------------------- /src/Subtitles/supbd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/Subtitles/supbd.h -------------------------------------------------------------------------------- /src/Subtitles/supdvd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/Subtitles/supdvd.cpp -------------------------------------------------------------------------------- /src/Subtitles/supdvd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/Subtitles/supdvd.h -------------------------------------------------------------------------------- /src/Subtitles/suphd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/Subtitles/suphd.cpp -------------------------------------------------------------------------------- /src/Subtitles/suphd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/Subtitles/suphd.h -------------------------------------------------------------------------------- /src/Subtitles/supxml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/Subtitles/supxml.cpp -------------------------------------------------------------------------------- /src/Subtitles/supxml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/Subtitles/supxml.h -------------------------------------------------------------------------------- /src/Tools/bitstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/Tools/bitstream.cpp -------------------------------------------------------------------------------- /src/Tools/bitstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/Tools/bitstream.h -------------------------------------------------------------------------------- /src/Tools/filebuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/Tools/filebuffer.cpp -------------------------------------------------------------------------------- /src/Tools/filebuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/Tools/filebuffer.h -------------------------------------------------------------------------------- /src/Tools/hr_time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/Tools/hr_time.cpp -------------------------------------------------------------------------------- /src/Tools/hr_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/Tools/hr_time.h -------------------------------------------------------------------------------- /src/Tools/numberutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/Tools/numberutil.cpp -------------------------------------------------------------------------------- /src/Tools/numberutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/Tools/numberutil.h -------------------------------------------------------------------------------- /src/Tools/quantizefilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/Tools/quantizefilter.cpp -------------------------------------------------------------------------------- /src/Tools/quantizefilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/Tools/quantizefilter.h -------------------------------------------------------------------------------- /src/Tools/timeutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/Tools/timeutil.cpp -------------------------------------------------------------------------------- /src/Tools/timeutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/Tools/timeutil.h -------------------------------------------------------------------------------- /src/bdsup2sub++.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/bdsup2sub++.pro -------------------------------------------------------------------------------- /src/bdsup2sub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/bdsup2sub.cpp -------------------------------------------------------------------------------- /src/bdsup2sub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/bdsup2sub.h -------------------------------------------------------------------------------- /src/bdsup2sub.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/bdsup2sub.icns -------------------------------------------------------------------------------- /src/bdsup2sub.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/bdsup2sub.ico -------------------------------------------------------------------------------- /src/bdsup2sub.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/bdsup2sub.qrc -------------------------------------------------------------------------------- /src/bdsup2sub.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/bdsup2sub.rc -------------------------------------------------------------------------------- /src/bdsup2sub.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/bdsup2sub.ui -------------------------------------------------------------------------------- /src/colordialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/colordialog.cpp -------------------------------------------------------------------------------- /src/colordialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/colordialog.h -------------------------------------------------------------------------------- /src/colordialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/colordialog.ui -------------------------------------------------------------------------------- /src/conversiondialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/conversiondialog.cpp -------------------------------------------------------------------------------- /src/conversiondialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/conversiondialog.h -------------------------------------------------------------------------------- /src/conversiondialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/conversiondialog.ui -------------------------------------------------------------------------------- /src/editdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/editdialog.cpp -------------------------------------------------------------------------------- /src/editdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/editdialog.h -------------------------------------------------------------------------------- /src/editdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/editdialog.ui -------------------------------------------------------------------------------- /src/editpane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/editpane.cpp -------------------------------------------------------------------------------- /src/editpane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/editpane.h -------------------------------------------------------------------------------- /src/exportdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/exportdialog.cpp -------------------------------------------------------------------------------- /src/exportdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/exportdialog.h -------------------------------------------------------------------------------- /src/exportdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/exportdialog.ui -------------------------------------------------------------------------------- /src/framepalettedialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/framepalettedialog.cpp -------------------------------------------------------------------------------- /src/framepalettedialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/framepalettedialog.h -------------------------------------------------------------------------------- /src/framepalettedialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/framepalettedialog.ui -------------------------------------------------------------------------------- /src/help.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/help.htm -------------------------------------------------------------------------------- /src/help.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/help.ini -------------------------------------------------------------------------------- /src/helpdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/helpdialog.cpp -------------------------------------------------------------------------------- /src/helpdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/helpdialog.h -------------------------------------------------------------------------------- /src/helpdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/helpdialog.ui -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/movedialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/movedialog.cpp -------------------------------------------------------------------------------- /src/movedialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/movedialog.h -------------------------------------------------------------------------------- /src/movedialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/movedialog.ui -------------------------------------------------------------------------------- /src/progressdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/progressdialog.cpp -------------------------------------------------------------------------------- /src/progressdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/progressdialog.h -------------------------------------------------------------------------------- /src/progressdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/progressdialog.ui -------------------------------------------------------------------------------- /src/qrc_bdsup2sub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/qrc_bdsup2sub.cpp -------------------------------------------------------------------------------- /src/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/types.h -------------------------------------------------------------------------------- /src/zoomableimagearea.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/zoomableimagearea.cpp -------------------------------------------------------------------------------- /src/zoomableimagearea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amichaelt/BDSup2SubPlusPlus/HEAD/src/zoomableimagearea.h --------------------------------------------------------------------------------