├── .gitignore ├── Makefile.am ├── autogen.sh ├── changes.rst ├── configure.ac ├── doc ├── wibbly.rst └── wobbly.rst ├── msvc ├── Wibbly │ ├── Wibbly.vcxproj │ └── Wibbly.vcxproj.filters ├── Wobbly.sln ├── Wobbly │ ├── Wobbly.vcxproj │ └── Wobbly.vcxproj.filters └── WobblyShared │ ├── WobblyShared.vcxproj │ └── WobblyShared.vcxproj.filters ├── rapidjson ├── allocators.h ├── document.h ├── encodedstream.h ├── encodings.h ├── error │ ├── en.h │ └── error.h ├── filereadstream.h ├── filewritestream.h ├── internal │ ├── biginteger.h │ ├── diyfp.h │ ├── dtoa.h │ ├── ieee754.h │ ├── itoa.h │ ├── meta.h │ ├── pow10.h │ ├── stack.h │ ├── strfunc.h │ ├── strtod.h │ └── swap.h ├── memorybuffer.h ├── memorystream.h ├── msinttypes │ ├── inttypes.h │ └── stdint.h ├── pointer.h ├── prettywriter.h ├── rapidjson.h ├── reader.h ├── stringbuffer.h └── writer.h ├── readme.rst └── src ├── shared ├── BookmarksModel.cpp ├── BookmarksModel.h ├── CombedFramesModel.cpp ├── CombedFramesModel.h ├── CustomListsModel.cpp ├── CustomListsModel.h ├── DockWidget.cpp ├── DockWidget.h ├── FrameRangesModel.cpp ├── FrameRangesModel.h ├── FrozenFramesModel.cpp ├── FrozenFramesModel.h ├── ListWidget.cpp ├── ListWidget.h ├── PresetsModel.cpp ├── PresetsModel.h ├── ProgressDialog.cpp ├── ProgressDialog.h ├── RandomStuff.h ├── ScrollArea.cpp ├── ScrollArea.h ├── SectionsModel.cpp ├── SectionsModel.h ├── WobblyException.h ├── WobblyProject.cpp ├── WobblyProject.h ├── WobblyShared.cpp ├── WobblyShared.h └── WobblyTypes.h ├── wibbly ├── Wibbly.cpp ├── WibblyJob.cpp ├── WibblyJob.h ├── WibblyWindow.cpp └── WibblyWindow.h └── wobbly ├── CombedFramesCollector.cpp ├── CombedFramesCollector.h ├── FrameLabel.cpp ├── FrameLabel.h ├── ImportWindow.cpp ├── ImportWindow.h ├── OverlayLabel.cpp ├── OverlayLabel.h ├── PresetTextEdit.cpp ├── PresetTextEdit.h ├── SectionsProxyModel.cpp ├── SectionsProxyModel.h ├── SpinBox.cpp ├── SpinBox.h ├── TableView.cpp ├── TableView.h ├── TableWidget.cpp ├── TableWidget.h ├── Wobbly.cpp ├── WobblyWindow.cpp └── WobblyWindow.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/Makefile.am -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/autogen.sh -------------------------------------------------------------------------------- /changes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/changes.rst -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/configure.ac -------------------------------------------------------------------------------- /doc/wibbly.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/doc/wibbly.rst -------------------------------------------------------------------------------- /doc/wobbly.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/doc/wobbly.rst -------------------------------------------------------------------------------- /msvc/Wibbly/Wibbly.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/msvc/Wibbly/Wibbly.vcxproj -------------------------------------------------------------------------------- /msvc/Wibbly/Wibbly.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/msvc/Wibbly/Wibbly.vcxproj.filters -------------------------------------------------------------------------------- /msvc/Wobbly.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/msvc/Wobbly.sln -------------------------------------------------------------------------------- /msvc/Wobbly/Wobbly.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/msvc/Wobbly/Wobbly.vcxproj -------------------------------------------------------------------------------- /msvc/Wobbly/Wobbly.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/msvc/Wobbly/Wobbly.vcxproj.filters -------------------------------------------------------------------------------- /msvc/WobblyShared/WobblyShared.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/msvc/WobblyShared/WobblyShared.vcxproj -------------------------------------------------------------------------------- /msvc/WobblyShared/WobblyShared.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/msvc/WobblyShared/WobblyShared.vcxproj.filters -------------------------------------------------------------------------------- /rapidjson/allocators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/rapidjson/allocators.h -------------------------------------------------------------------------------- /rapidjson/document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/rapidjson/document.h -------------------------------------------------------------------------------- /rapidjson/encodedstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/rapidjson/encodedstream.h -------------------------------------------------------------------------------- /rapidjson/encodings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/rapidjson/encodings.h -------------------------------------------------------------------------------- /rapidjson/error/en.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/rapidjson/error/en.h -------------------------------------------------------------------------------- /rapidjson/error/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/rapidjson/error/error.h -------------------------------------------------------------------------------- /rapidjson/filereadstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/rapidjson/filereadstream.h -------------------------------------------------------------------------------- /rapidjson/filewritestream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/rapidjson/filewritestream.h -------------------------------------------------------------------------------- /rapidjson/internal/biginteger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/rapidjson/internal/biginteger.h -------------------------------------------------------------------------------- /rapidjson/internal/diyfp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/rapidjson/internal/diyfp.h -------------------------------------------------------------------------------- /rapidjson/internal/dtoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/rapidjson/internal/dtoa.h -------------------------------------------------------------------------------- /rapidjson/internal/ieee754.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/rapidjson/internal/ieee754.h -------------------------------------------------------------------------------- /rapidjson/internal/itoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/rapidjson/internal/itoa.h -------------------------------------------------------------------------------- /rapidjson/internal/meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/rapidjson/internal/meta.h -------------------------------------------------------------------------------- /rapidjson/internal/pow10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/rapidjson/internal/pow10.h -------------------------------------------------------------------------------- /rapidjson/internal/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/rapidjson/internal/stack.h -------------------------------------------------------------------------------- /rapidjson/internal/strfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/rapidjson/internal/strfunc.h -------------------------------------------------------------------------------- /rapidjson/internal/strtod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/rapidjson/internal/strtod.h -------------------------------------------------------------------------------- /rapidjson/internal/swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/rapidjson/internal/swap.h -------------------------------------------------------------------------------- /rapidjson/memorybuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/rapidjson/memorybuffer.h -------------------------------------------------------------------------------- /rapidjson/memorystream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/rapidjson/memorystream.h -------------------------------------------------------------------------------- /rapidjson/msinttypes/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/rapidjson/msinttypes/inttypes.h -------------------------------------------------------------------------------- /rapidjson/msinttypes/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/rapidjson/msinttypes/stdint.h -------------------------------------------------------------------------------- /rapidjson/pointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/rapidjson/pointer.h -------------------------------------------------------------------------------- /rapidjson/prettywriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/rapidjson/prettywriter.h -------------------------------------------------------------------------------- /rapidjson/rapidjson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/rapidjson/rapidjson.h -------------------------------------------------------------------------------- /rapidjson/reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/rapidjson/reader.h -------------------------------------------------------------------------------- /rapidjson/stringbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/rapidjson/stringbuffer.h -------------------------------------------------------------------------------- /rapidjson/writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/rapidjson/writer.h -------------------------------------------------------------------------------- /readme.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/readme.rst -------------------------------------------------------------------------------- /src/shared/BookmarksModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/src/shared/BookmarksModel.cpp -------------------------------------------------------------------------------- /src/shared/BookmarksModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/src/shared/BookmarksModel.h -------------------------------------------------------------------------------- /src/shared/CombedFramesModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/src/shared/CombedFramesModel.cpp -------------------------------------------------------------------------------- /src/shared/CombedFramesModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/src/shared/CombedFramesModel.h -------------------------------------------------------------------------------- /src/shared/CustomListsModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/src/shared/CustomListsModel.cpp -------------------------------------------------------------------------------- /src/shared/CustomListsModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/src/shared/CustomListsModel.h -------------------------------------------------------------------------------- /src/shared/DockWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/src/shared/DockWidget.cpp -------------------------------------------------------------------------------- /src/shared/DockWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/src/shared/DockWidget.h -------------------------------------------------------------------------------- /src/shared/FrameRangesModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/src/shared/FrameRangesModel.cpp -------------------------------------------------------------------------------- /src/shared/FrameRangesModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/src/shared/FrameRangesModel.h -------------------------------------------------------------------------------- /src/shared/FrozenFramesModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/src/shared/FrozenFramesModel.cpp -------------------------------------------------------------------------------- /src/shared/FrozenFramesModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/src/shared/FrozenFramesModel.h -------------------------------------------------------------------------------- /src/shared/ListWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/src/shared/ListWidget.cpp -------------------------------------------------------------------------------- /src/shared/ListWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/src/shared/ListWidget.h -------------------------------------------------------------------------------- /src/shared/PresetsModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/src/shared/PresetsModel.cpp -------------------------------------------------------------------------------- /src/shared/PresetsModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/src/shared/PresetsModel.h -------------------------------------------------------------------------------- /src/shared/ProgressDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/src/shared/ProgressDialog.cpp -------------------------------------------------------------------------------- /src/shared/ProgressDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/src/shared/ProgressDialog.h -------------------------------------------------------------------------------- /src/shared/RandomStuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/src/shared/RandomStuff.h -------------------------------------------------------------------------------- /src/shared/ScrollArea.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/src/shared/ScrollArea.cpp -------------------------------------------------------------------------------- /src/shared/ScrollArea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/src/shared/ScrollArea.h -------------------------------------------------------------------------------- /src/shared/SectionsModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/src/shared/SectionsModel.cpp -------------------------------------------------------------------------------- /src/shared/SectionsModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/src/shared/SectionsModel.h -------------------------------------------------------------------------------- /src/shared/WobblyException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/src/shared/WobblyException.h -------------------------------------------------------------------------------- /src/shared/WobblyProject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/src/shared/WobblyProject.cpp -------------------------------------------------------------------------------- /src/shared/WobblyProject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/src/shared/WobblyProject.h -------------------------------------------------------------------------------- /src/shared/WobblyShared.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/src/shared/WobblyShared.cpp -------------------------------------------------------------------------------- /src/shared/WobblyShared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/src/shared/WobblyShared.h -------------------------------------------------------------------------------- /src/shared/WobblyTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/src/shared/WobblyTypes.h -------------------------------------------------------------------------------- /src/wibbly/Wibbly.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/src/wibbly/Wibbly.cpp -------------------------------------------------------------------------------- /src/wibbly/WibblyJob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/src/wibbly/WibblyJob.cpp -------------------------------------------------------------------------------- /src/wibbly/WibblyJob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/src/wibbly/WibblyJob.h -------------------------------------------------------------------------------- /src/wibbly/WibblyWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/src/wibbly/WibblyWindow.cpp -------------------------------------------------------------------------------- /src/wibbly/WibblyWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/src/wibbly/WibblyWindow.h -------------------------------------------------------------------------------- /src/wobbly/CombedFramesCollector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/src/wobbly/CombedFramesCollector.cpp -------------------------------------------------------------------------------- /src/wobbly/CombedFramesCollector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/src/wobbly/CombedFramesCollector.h -------------------------------------------------------------------------------- /src/wobbly/FrameLabel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/src/wobbly/FrameLabel.cpp -------------------------------------------------------------------------------- /src/wobbly/FrameLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/src/wobbly/FrameLabel.h -------------------------------------------------------------------------------- /src/wobbly/ImportWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/src/wobbly/ImportWindow.cpp -------------------------------------------------------------------------------- /src/wobbly/ImportWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/src/wobbly/ImportWindow.h -------------------------------------------------------------------------------- /src/wobbly/OverlayLabel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/src/wobbly/OverlayLabel.cpp -------------------------------------------------------------------------------- /src/wobbly/OverlayLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/src/wobbly/OverlayLabel.h -------------------------------------------------------------------------------- /src/wobbly/PresetTextEdit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/src/wobbly/PresetTextEdit.cpp -------------------------------------------------------------------------------- /src/wobbly/PresetTextEdit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/src/wobbly/PresetTextEdit.h -------------------------------------------------------------------------------- /src/wobbly/SectionsProxyModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/src/wobbly/SectionsProxyModel.cpp -------------------------------------------------------------------------------- /src/wobbly/SectionsProxyModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/src/wobbly/SectionsProxyModel.h -------------------------------------------------------------------------------- /src/wobbly/SpinBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/src/wobbly/SpinBox.cpp -------------------------------------------------------------------------------- /src/wobbly/SpinBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/src/wobbly/SpinBox.h -------------------------------------------------------------------------------- /src/wobbly/TableView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/src/wobbly/TableView.cpp -------------------------------------------------------------------------------- /src/wobbly/TableView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/src/wobbly/TableView.h -------------------------------------------------------------------------------- /src/wobbly/TableWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/src/wobbly/TableWidget.cpp -------------------------------------------------------------------------------- /src/wobbly/TableWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/src/wobbly/TableWidget.h -------------------------------------------------------------------------------- /src/wobbly/Wobbly.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/src/wobbly/Wobbly.cpp -------------------------------------------------------------------------------- /src/wobbly/WobblyWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/src/wobbly/WobblyWindow.cpp -------------------------------------------------------------------------------- /src/wobbly/WobblyWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dubhater/Wobbly/HEAD/src/wobbly/WobblyWindow.h --------------------------------------------------------------------------------