├── .clang-format ├── .github └── workflows │ ├── ci.yml │ ├── linux-release.yml │ ├── source-release.yml │ └── windows-release.yml ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── DeepTags.qrc ├── LICENSE ├── README.md ├── Screenshot.png ├── deeptags.png ├── images ├── DeepTags.ico ├── add.png ├── addFile.png ├── addFolder.png ├── all_notes.png ├── arrowdown.png ├── arrowup.png ├── collapse.png ├── color_blue.png ├── color_cyan.png ├── color_green.png ├── color_magenta.png ├── color_orange.png ├── color_red.png ├── color_yellow.png ├── delete.png ├── expand.png ├── favorite.png ├── favpin.png ├── icon128.png ├── icon256.png ├── newFile.png ├── notebook.png ├── pin.png ├── quit.png ├── spinner.gif ├── star.png ├── trash.png └── untagged.png ├── locale ├── DeepTags_fr.qm └── DeepTags_fr.ts ├── packaging ├── archlinux │ └── PKGBUILD ├── linux-build.sh ├── package-deb.sh └── resources │ ├── deeptags.appdata.xml │ ├── deeptags.desktop │ └── icons │ └── hicolor │ ├── 128x128 │ └── apps │ │ └── deeptags.png │ ├── 16x16 │ └── apps │ │ └── deeptags.png │ ├── 192x192 │ └── apps │ │ └── deeptags.png │ ├── 256x256 │ └── apps │ │ └── deeptags.png │ ├── 32x32 │ └── apps │ │ └── deeptags.png │ ├── 384x384 │ └── apps │ │ └── deeptags.png │ ├── 48x48 │ └── apps │ │ └── deeptags.png │ ├── 512x512 │ └── apps │ │ └── deeptags.png │ ├── 64x64 │ └── apps │ │ └── deeptags.png │ ├── 80x80 │ └── apps │ │ └── deeptags.png │ ├── 8x8 │ └── apps │ │ └── deeptags.png │ ├── 96x96 │ └── apps │ │ └── deeptags.png │ └── scalable │ └── apps │ └── deeptags.svg ├── src ├── Benchmark.h ├── DataDirectoryCentralWidget.cpp ├── DataDirectoryCentralWidget.h ├── DataDirectoryCentralWidget.ui ├── DataDirectoryDialog.cpp ├── DataDirectoryDialog.h ├── DataDirectoryDialog.ui ├── Document.cpp ├── Document.h ├── DocumentContentView.cpp ├── DocumentContentView.h ├── DocumentInfoDialog.cpp ├── DocumentInfoDialog.h ├── DocumentInfoDialog.ui ├── DocumentListDelegate.cpp ├── DocumentListDelegate.h ├── DocumentListItem.cpp ├── DocumentListItem.h ├── DocumentListModel.cpp ├── DocumentListModel.h ├── DocumentUtils.cpp ├── DocumentUtils.h ├── DocumentsListView.cpp ├── DocumentsListView.h ├── ExternalReadersCentralWidget.cpp ├── ExternalReadersCentralWidget.h ├── ExternalReadersCentralWidget.ui ├── ExternalReadersDialog.cpp ├── ExternalReadersDialog.h ├── ExternalReadersDialog.ui ├── MainWindow.cpp ├── MainWindow.h ├── MainWindow.ui ├── Settings.cpp ├── Settings.h ├── SettingsDialog.cpp ├── SettingsDialog.h ├── SettingsDialog.ui ├── TagTreeDelegate.cpp ├── TagTreeDelegate.h ├── TagTreeItem.cpp ├── TagTreeItem.h ├── TagTreeModel.cpp ├── TagTreeModel.h ├── TagsTreeView.cpp ├── TagsTreeView.h └── main.cpp ├── tag_hierarchy.png └── tests └── DocumentUtilsTest.cpp /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/linux-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/.github/workflows/linux-release.yml -------------------------------------------------------------------------------- /.github/workflows/source-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/.github/workflows/source-release.yml -------------------------------------------------------------------------------- /.github/workflows/windows-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/.github/workflows/windows-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /DeepTags.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/DeepTags.qrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/README.md -------------------------------------------------------------------------------- /Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/Screenshot.png -------------------------------------------------------------------------------- /deeptags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/deeptags.png -------------------------------------------------------------------------------- /images/DeepTags.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/images/DeepTags.ico -------------------------------------------------------------------------------- /images/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/images/add.png -------------------------------------------------------------------------------- /images/addFile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/images/addFile.png -------------------------------------------------------------------------------- /images/addFolder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/images/addFolder.png -------------------------------------------------------------------------------- /images/all_notes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/images/all_notes.png -------------------------------------------------------------------------------- /images/arrowdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/images/arrowdown.png -------------------------------------------------------------------------------- /images/arrowup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/images/arrowup.png -------------------------------------------------------------------------------- /images/collapse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/images/collapse.png -------------------------------------------------------------------------------- /images/color_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/images/color_blue.png -------------------------------------------------------------------------------- /images/color_cyan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/images/color_cyan.png -------------------------------------------------------------------------------- /images/color_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/images/color_green.png -------------------------------------------------------------------------------- /images/color_magenta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/images/color_magenta.png -------------------------------------------------------------------------------- /images/color_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/images/color_orange.png -------------------------------------------------------------------------------- /images/color_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/images/color_red.png -------------------------------------------------------------------------------- /images/color_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/images/color_yellow.png -------------------------------------------------------------------------------- /images/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/images/delete.png -------------------------------------------------------------------------------- /images/expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/images/expand.png -------------------------------------------------------------------------------- /images/favorite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/images/favorite.png -------------------------------------------------------------------------------- /images/favpin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/images/favpin.png -------------------------------------------------------------------------------- /images/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/images/icon128.png -------------------------------------------------------------------------------- /images/icon256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/images/icon256.png -------------------------------------------------------------------------------- /images/newFile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/images/newFile.png -------------------------------------------------------------------------------- /images/notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/images/notebook.png -------------------------------------------------------------------------------- /images/pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/images/pin.png -------------------------------------------------------------------------------- /images/quit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/images/quit.png -------------------------------------------------------------------------------- /images/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/images/spinner.gif -------------------------------------------------------------------------------- /images/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/images/star.png -------------------------------------------------------------------------------- /images/trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/images/trash.png -------------------------------------------------------------------------------- /images/untagged.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/images/untagged.png -------------------------------------------------------------------------------- /locale/DeepTags_fr.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/locale/DeepTags_fr.qm -------------------------------------------------------------------------------- /locale/DeepTags_fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/locale/DeepTags_fr.ts -------------------------------------------------------------------------------- /packaging/archlinux/PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/packaging/archlinux/PKGBUILD -------------------------------------------------------------------------------- /packaging/linux-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/packaging/linux-build.sh -------------------------------------------------------------------------------- /packaging/package-deb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/packaging/package-deb.sh -------------------------------------------------------------------------------- /packaging/resources/deeptags.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/packaging/resources/deeptags.appdata.xml -------------------------------------------------------------------------------- /packaging/resources/deeptags.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/packaging/resources/deeptags.desktop -------------------------------------------------------------------------------- /packaging/resources/icons/hicolor/128x128/apps/deeptags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/packaging/resources/icons/hicolor/128x128/apps/deeptags.png -------------------------------------------------------------------------------- /packaging/resources/icons/hicolor/16x16/apps/deeptags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/packaging/resources/icons/hicolor/16x16/apps/deeptags.png -------------------------------------------------------------------------------- /packaging/resources/icons/hicolor/192x192/apps/deeptags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/packaging/resources/icons/hicolor/192x192/apps/deeptags.png -------------------------------------------------------------------------------- /packaging/resources/icons/hicolor/256x256/apps/deeptags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/packaging/resources/icons/hicolor/256x256/apps/deeptags.png -------------------------------------------------------------------------------- /packaging/resources/icons/hicolor/32x32/apps/deeptags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/packaging/resources/icons/hicolor/32x32/apps/deeptags.png -------------------------------------------------------------------------------- /packaging/resources/icons/hicolor/384x384/apps/deeptags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/packaging/resources/icons/hicolor/384x384/apps/deeptags.png -------------------------------------------------------------------------------- /packaging/resources/icons/hicolor/48x48/apps/deeptags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/packaging/resources/icons/hicolor/48x48/apps/deeptags.png -------------------------------------------------------------------------------- /packaging/resources/icons/hicolor/512x512/apps/deeptags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/packaging/resources/icons/hicolor/512x512/apps/deeptags.png -------------------------------------------------------------------------------- /packaging/resources/icons/hicolor/64x64/apps/deeptags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/packaging/resources/icons/hicolor/64x64/apps/deeptags.png -------------------------------------------------------------------------------- /packaging/resources/icons/hicolor/80x80/apps/deeptags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/packaging/resources/icons/hicolor/80x80/apps/deeptags.png -------------------------------------------------------------------------------- /packaging/resources/icons/hicolor/8x8/apps/deeptags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/packaging/resources/icons/hicolor/8x8/apps/deeptags.png -------------------------------------------------------------------------------- /packaging/resources/icons/hicolor/96x96/apps/deeptags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/packaging/resources/icons/hicolor/96x96/apps/deeptags.png -------------------------------------------------------------------------------- /packaging/resources/icons/hicolor/scalable/apps/deeptags.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/packaging/resources/icons/hicolor/scalable/apps/deeptags.svg -------------------------------------------------------------------------------- /src/Benchmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/src/Benchmark.h -------------------------------------------------------------------------------- /src/DataDirectoryCentralWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/src/DataDirectoryCentralWidget.cpp -------------------------------------------------------------------------------- /src/DataDirectoryCentralWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/src/DataDirectoryCentralWidget.h -------------------------------------------------------------------------------- /src/DataDirectoryCentralWidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/src/DataDirectoryCentralWidget.ui -------------------------------------------------------------------------------- /src/DataDirectoryDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/src/DataDirectoryDialog.cpp -------------------------------------------------------------------------------- /src/DataDirectoryDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/src/DataDirectoryDialog.h -------------------------------------------------------------------------------- /src/DataDirectoryDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/src/DataDirectoryDialog.ui -------------------------------------------------------------------------------- /src/Document.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/src/Document.cpp -------------------------------------------------------------------------------- /src/Document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/src/Document.h -------------------------------------------------------------------------------- /src/DocumentContentView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/src/DocumentContentView.cpp -------------------------------------------------------------------------------- /src/DocumentContentView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/src/DocumentContentView.h -------------------------------------------------------------------------------- /src/DocumentInfoDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/src/DocumentInfoDialog.cpp -------------------------------------------------------------------------------- /src/DocumentInfoDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/src/DocumentInfoDialog.h -------------------------------------------------------------------------------- /src/DocumentInfoDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/src/DocumentInfoDialog.ui -------------------------------------------------------------------------------- /src/DocumentListDelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/src/DocumentListDelegate.cpp -------------------------------------------------------------------------------- /src/DocumentListDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/src/DocumentListDelegate.h -------------------------------------------------------------------------------- /src/DocumentListItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/src/DocumentListItem.cpp -------------------------------------------------------------------------------- /src/DocumentListItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/src/DocumentListItem.h -------------------------------------------------------------------------------- /src/DocumentListModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/src/DocumentListModel.cpp -------------------------------------------------------------------------------- /src/DocumentListModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/src/DocumentListModel.h -------------------------------------------------------------------------------- /src/DocumentUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/src/DocumentUtils.cpp -------------------------------------------------------------------------------- /src/DocumentUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/src/DocumentUtils.h -------------------------------------------------------------------------------- /src/DocumentsListView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/src/DocumentsListView.cpp -------------------------------------------------------------------------------- /src/DocumentsListView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/src/DocumentsListView.h -------------------------------------------------------------------------------- /src/ExternalReadersCentralWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/src/ExternalReadersCentralWidget.cpp -------------------------------------------------------------------------------- /src/ExternalReadersCentralWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/src/ExternalReadersCentralWidget.h -------------------------------------------------------------------------------- /src/ExternalReadersCentralWidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/src/ExternalReadersCentralWidget.ui -------------------------------------------------------------------------------- /src/ExternalReadersDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/src/ExternalReadersDialog.cpp -------------------------------------------------------------------------------- /src/ExternalReadersDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/src/ExternalReadersDialog.h -------------------------------------------------------------------------------- /src/ExternalReadersDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/src/ExternalReadersDialog.ui -------------------------------------------------------------------------------- /src/MainWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/src/MainWindow.cpp -------------------------------------------------------------------------------- /src/MainWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/src/MainWindow.h -------------------------------------------------------------------------------- /src/MainWindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/src/MainWindow.ui -------------------------------------------------------------------------------- /src/Settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/src/Settings.cpp -------------------------------------------------------------------------------- /src/Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/src/Settings.h -------------------------------------------------------------------------------- /src/SettingsDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/src/SettingsDialog.cpp -------------------------------------------------------------------------------- /src/SettingsDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/src/SettingsDialog.h -------------------------------------------------------------------------------- /src/SettingsDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/src/SettingsDialog.ui -------------------------------------------------------------------------------- /src/TagTreeDelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/src/TagTreeDelegate.cpp -------------------------------------------------------------------------------- /src/TagTreeDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/src/TagTreeDelegate.h -------------------------------------------------------------------------------- /src/TagTreeItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/src/TagTreeItem.cpp -------------------------------------------------------------------------------- /src/TagTreeItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/src/TagTreeItem.h -------------------------------------------------------------------------------- /src/TagTreeModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/src/TagTreeModel.cpp -------------------------------------------------------------------------------- /src/TagTreeModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/src/TagTreeModel.h -------------------------------------------------------------------------------- /src/TagsTreeView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/src/TagsTreeView.cpp -------------------------------------------------------------------------------- /src/TagsTreeView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/src/TagsTreeView.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/src/main.cpp -------------------------------------------------------------------------------- /tag_hierarchy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/tag_hierarchy.png -------------------------------------------------------------------------------- /tests/DocumentUtilsTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SZinedine/DeepTags/HEAD/tests/DocumentUtilsTest.cpp --------------------------------------------------------------------------------