├── .github └── FUNDING.yml ├── .gitignore ├── .gitmodules ├── .idea ├── SceneExplorer.iml ├── misc.xml ├── modules.xml └── vcs.xml ├── .nonusasciiignore ├── ExitBatch.bat ├── History.txt ├── LICENSE ├── README.jp.md ├── README.md ├── TestSceneExplorer ├── TestSceneExplorer.pro ├── main.h ├── main_linux.cpp ├── main_win32.cpp └── stdafx.h ├── _config.yml ├── dist.json ├── docs ├── 32x32icon.ico ├── icon.ico ├── index.html ├── main.css └── screenshot.png ├── funcvsproj.bat ├── index.jp.md ├── index.md ├── information ├── Can I hyperlink source code of Qt instead of distributing it with my installer Qt Forum.URL ├── How do I convert a video to GIF using ffmpeg, with reasonable quality_ - Super User.url ├── License.txt ├── Qtでプリコンパイルヘッダを使う – ブーログ.url ├── Softpedia - Free Downloads Encyclopedia.url ├── VirusTotal.URL ├── buildffmpegmsvc.txt ├── buildffmpegmsys2.txt ├── configure.hlp.txt ├── createthumb-ffmpeg.txt ├── file_identity.txt ├── fileandfolder.txt ├── github.URL ├── i18n.txt ├── info-ffprobe-json.txt └── qtqt5 Qt5 super module.URL ├── material ├── bird.png └── old.jpg ├── obsoletes └── build.bat ├── prepare.bat.sample ├── prepareGitrev.bat ├── qtSamples ├── listproxy │ └── src │ │ └── listproxy │ │ ├── listproxy.pro │ │ ├── main.cpp │ │ ├── mainwindow.cpp │ │ ├── mainwindow.h │ │ ├── mainwindow.ui │ │ ├── mydirmodel.cpp │ │ └── mydirmodel.h ├── mapspeedtest │ └── src │ │ ├── main.cpp │ │ └── mapspeedtest.pro └── sortdirbyphysical │ ├── .gitignore │ └── src │ ├── main.cpp │ └── sortdirbyphysical.pro ├── qtcmd.bat ├── scripts ├── .vscode │ └── launch.json ├── create_prepare.bat.py └── startvscode.bat ├── sdel.com ├── src ├── .gitignore ├── FolderConfig.ini ├── IFFTask2Main.h ├── SceneExplorer.pro ├── aboutdialog.cpp ├── aboutdialog.h ├── aboutdialog.ui ├── app.rc ├── commandoption.cpp ├── commandoption.h ├── consts.h ├── debugflag.h ├── directorycheckthread.cpp ├── directorycheckthread.h ├── directoryentry.cpp ├── directoryentry.h ├── directoryentrydialog.cpp ├── directoryentrydialog.h ├── directoryentrydialog.ui ├── directoryitem.cpp ├── directoryitem.h ├── docinfodialog.cpp ├── docinfodialog.h ├── docinfodialog.ui ├── document.cpp ├── document.h ├── documentsql.cpp ├── documentsql.h ├── errorinfoexception.cpp ├── errorinfoexception.h ├── extension.cpp ├── extension.h ├── externaltoolitem.cpp ├── externaltoolitem.h ├── ffmpeg.cpp ├── ffmpeg.h ├── findcombobox.cpp ├── findcombobox.h ├── folder.ini ├── globals.cpp ├── globals.h ├── helper.cpp ├── helper.h ├── historylist.cpp ├── historylist.h ├── icon.ico ├── imainwindow.h ├── itempropertydialog.cpp ├── itempropertydialog.h ├── itempropertydialog.ui ├── main.cpp ├── mainwindow.cpp ├── mainwindow.h ├── mainwindow.ui ├── mainwindow_action.cpp ├── mainwindow_contextmenu.cpp ├── mainwindow_ctor.cpp ├── mainwindow_debugtest.cpp ├── mainwindow_document.cpp ├── mainwindow_event.cpp ├── mainwindow_history.cpp ├── mainwindow_oncopy.cpp ├── mainwindow_onedit.cpp ├── mainwindow_onpaste.cpp ├── mainwindow_onselectall.cpp ├── mainwindow_slot.cpp ├── mainwindow_working.cpp ├── materials │ ├── unixutils.cpp │ └── unixutils.h ├── mycontextmenu.cpp ├── mycontextmenu.h ├── mytableview.cpp.delete ├── mytableview.h.delete ├── obsoletes │ ├── exeffmpeg.cpp │ ├── exeffmpeg.h │ ├── listitemdata.cpp │ ├── listitemdata.h │ ├── listmodel.cpp │ ├── listmodel.h │ ├── missing.png │ ├── taskfilter.cpp │ └── taskfilter.h ├── option.ui ├── optiondialog.cpp ├── optiondialog.h ├── optionextension.cpp ├── optionextension.h ├── optionextension.ui ├── optionexternaltoolsdialog.cpp ├── optionexternaltoolsdialog.h ├── optionexternaltoolsdialog.ui ├── osd.h ├── osd_linux.cpp ├── osd_win32.cpp ├── renamedialog.cpp ├── renamedialog.h ├── renamedialog.ui ├── resource.qrc ├── resource │ ├── images │ │ ├── bottom.png │ │ ├── eraser.png │ │ ├── left-arrow.png │ │ ├── mailbox.png │ │ ├── missing.png │ │ ├── notags.png │ │ ├── refresh.png │ │ ├── research.png │ │ ├── right-arrow.png │ │ ├── settings.png │ │ ├── sort-by-alphabet-rev.png │ │ ├── sort-by-alphabet.png │ │ ├── sort-by-size-rev.png │ │ ├── sort-by-size.png │ │ ├── sort-lastaccess-rev.png │ │ ├── sort-lastaccess.png │ │ ├── sort-opencount-rev.png │ │ ├── sort-opencount.png │ │ ├── sort-wtime-rev.png │ │ ├── sort-wtime.png │ │ ├── tag.png │ │ ├── tagmenu-check.png │ │ └── top.png │ └── license │ │ └── GPLv3.html ├── showlastscanerrorsdialog.cpp ├── showlastscanerrorsdialog.h ├── showlastscanerrorsdialog.ui ├── sql.cpp ├── sql.h ├── sqlcommon.h ├── stable.h ├── stdafx.h ├── tableitemdata.cpp ├── tableitemdata.h ├── tableitemdelegate.cpp ├── tableitemdelegate.h ├── tablemodel.cpp ├── tablemodel.h ├── tablemodel_data.cpp ├── tagentry.cpp ├── tagentry.h ├── tagidsinfo.cpp ├── tagidsinfo.h ├── taginputdialog.cpp ├── taginputdialog.h ├── taginputdialog.ui ├── tagitem.cpp ├── tagitem.h ├── taskcheckthumbs.cpp ├── taskcheckthumbs.h ├── taskffmpeg.cpp ├── taskffmpeg.h ├── taskgetdir.cpp ├── taskgetdir.h ├── tasklistdata.cpp ├── tasklistdata.h ├── taskmodel.cpp ├── taskmodel.h └── translations │ ├── .gitignore │ ├── i18n_Japanese.ts │ └── readme.txt ├── startqtcreator.bat ├── startvsproj2013-64.bat ├── startvsproj2015-32.bat ├── startvsproj2017-64.bat ├── startvsproj2019-32.bat ├── startvsproj2022-32.bat ├── startvsproj2022-64.bat └── tools └── thunar-open-file.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/.gitmodules -------------------------------------------------------------------------------- /.idea/SceneExplorer.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/.idea/SceneExplorer.iml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.nonusasciiignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/.nonusasciiignore -------------------------------------------------------------------------------- /ExitBatch.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/ExitBatch.bat -------------------------------------------------------------------------------- /History.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/History.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.jp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/README.jp.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/README.md -------------------------------------------------------------------------------- /TestSceneExplorer/TestSceneExplorer.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/TestSceneExplorer/TestSceneExplorer.pro -------------------------------------------------------------------------------- /TestSceneExplorer/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/TestSceneExplorer/main.h -------------------------------------------------------------------------------- /TestSceneExplorer/main_linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/TestSceneExplorer/main_linux.cpp -------------------------------------------------------------------------------- /TestSceneExplorer/main_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/TestSceneExplorer/main_win32.cpp -------------------------------------------------------------------------------- /TestSceneExplorer/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/TestSceneExplorer/stdafx.h -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/_config.yml -------------------------------------------------------------------------------- /dist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/dist.json -------------------------------------------------------------------------------- /docs/32x32icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/docs/32x32icon.ico -------------------------------------------------------------------------------- /docs/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/docs/icon.ico -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/main.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/docs/screenshot.png -------------------------------------------------------------------------------- /funcvsproj.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/funcvsproj.bat -------------------------------------------------------------------------------- /index.jp.md: -------------------------------------------------------------------------------- 1 | 日本語ページ 2 | -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- 1 | new page 2 | -------------------------------------------------------------------------------- /information/Can I hyperlink source code of Qt instead of distributing it with my installer Qt Forum.URL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/information/Can I hyperlink source code of Qt instead of distributing it with my installer Qt Forum.URL -------------------------------------------------------------------------------- /information/How do I convert a video to GIF using ffmpeg, with reasonable quality_ - Super User.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/information/How do I convert a video to GIF using ffmpeg, with reasonable quality_ - Super User.url -------------------------------------------------------------------------------- /information/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/information/License.txt -------------------------------------------------------------------------------- /information/Qtでプリコンパイルヘッダを使う – ブーログ.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=http://ambiesoft.com/blog/archives/5240 3 | 4 | -------------------------------------------------------------------------------- /information/Softpedia - Free Downloads Encyclopedia.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=http://www.softpedia.com/ 3 | -------------------------------------------------------------------------------- /information/VirusTotal.URL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/information/VirusTotal.URL -------------------------------------------------------------------------------- /information/buildffmpegmsvc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/information/buildffmpegmsvc.txt -------------------------------------------------------------------------------- /information/buildffmpegmsys2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/information/buildffmpegmsys2.txt -------------------------------------------------------------------------------- /information/configure.hlp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/information/configure.hlp.txt -------------------------------------------------------------------------------- /information/createthumb-ffmpeg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/information/createthumb-ffmpeg.txt -------------------------------------------------------------------------------- /information/file_identity.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/information/file_identity.txt -------------------------------------------------------------------------------- /information/fileandfolder.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/information/fileandfolder.txt -------------------------------------------------------------------------------- /information/github.URL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/information/github.URL -------------------------------------------------------------------------------- /information/i18n.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/information/i18n.txt -------------------------------------------------------------------------------- /information/info-ffprobe-json.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/information/info-ffprobe-json.txt -------------------------------------------------------------------------------- /information/qtqt5 Qt5 super module.URL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/information/qtqt5 Qt5 super module.URL -------------------------------------------------------------------------------- /material/bird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/material/bird.png -------------------------------------------------------------------------------- /material/old.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/material/old.jpg -------------------------------------------------------------------------------- /obsoletes/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/obsoletes/build.bat -------------------------------------------------------------------------------- /prepare.bat.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/prepare.bat.sample -------------------------------------------------------------------------------- /prepareGitrev.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/prepareGitrev.bat -------------------------------------------------------------------------------- /qtSamples/listproxy/src/listproxy/listproxy.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/qtSamples/listproxy/src/listproxy/listproxy.pro -------------------------------------------------------------------------------- /qtSamples/listproxy/src/listproxy/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/qtSamples/listproxy/src/listproxy/main.cpp -------------------------------------------------------------------------------- /qtSamples/listproxy/src/listproxy/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/qtSamples/listproxy/src/listproxy/mainwindow.cpp -------------------------------------------------------------------------------- /qtSamples/listproxy/src/listproxy/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/qtSamples/listproxy/src/listproxy/mainwindow.h -------------------------------------------------------------------------------- /qtSamples/listproxy/src/listproxy/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/qtSamples/listproxy/src/listproxy/mainwindow.ui -------------------------------------------------------------------------------- /qtSamples/listproxy/src/listproxy/mydirmodel.cpp: -------------------------------------------------------------------------------- 1 | #include "mydirmodel.h" 2 | 3 | -------------------------------------------------------------------------------- /qtSamples/listproxy/src/listproxy/mydirmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/qtSamples/listproxy/src/listproxy/mydirmodel.h -------------------------------------------------------------------------------- /qtSamples/mapspeedtest/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/qtSamples/mapspeedtest/src/main.cpp -------------------------------------------------------------------------------- /qtSamples/mapspeedtest/src/mapspeedtest.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/qtSamples/mapspeedtest/src/mapspeedtest.pro -------------------------------------------------------------------------------- /qtSamples/sortdirbyphysical/.gitignore: -------------------------------------------------------------------------------- 1 | build-*/ 2 | 3 | -------------------------------------------------------------------------------- /qtSamples/sortdirbyphysical/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/qtSamples/sortdirbyphysical/src/main.cpp -------------------------------------------------------------------------------- /qtSamples/sortdirbyphysical/src/sortdirbyphysical.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/qtSamples/sortdirbyphysical/src/sortdirbyphysical.pro -------------------------------------------------------------------------------- /qtcmd.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/qtcmd.bat -------------------------------------------------------------------------------- /scripts/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/scripts/.vscode/launch.json -------------------------------------------------------------------------------- /scripts/create_prepare.bat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/scripts/create_prepare.bat.py -------------------------------------------------------------------------------- /scripts/startvscode.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/scripts/startvscode.bat -------------------------------------------------------------------------------- /sdel.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/sdel.com -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- 1 | SceneExplorer.pro.user.4.*-pre1 2 | -------------------------------------------------------------------------------- /src/FolderConfig.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/FolderConfig.ini -------------------------------------------------------------------------------- /src/IFFTask2Main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/IFFTask2Main.h -------------------------------------------------------------------------------- /src/SceneExplorer.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/SceneExplorer.pro -------------------------------------------------------------------------------- /src/aboutdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/aboutdialog.cpp -------------------------------------------------------------------------------- /src/aboutdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/aboutdialog.h -------------------------------------------------------------------------------- /src/aboutdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/aboutdialog.ui -------------------------------------------------------------------------------- /src/app.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/app.rc -------------------------------------------------------------------------------- /src/commandoption.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/commandoption.cpp -------------------------------------------------------------------------------- /src/commandoption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/commandoption.h -------------------------------------------------------------------------------- /src/consts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/consts.h -------------------------------------------------------------------------------- /src/debugflag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/debugflag.h -------------------------------------------------------------------------------- /src/directorycheckthread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/directorycheckthread.cpp -------------------------------------------------------------------------------- /src/directorycheckthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/directorycheckthread.h -------------------------------------------------------------------------------- /src/directoryentry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/directoryentry.cpp -------------------------------------------------------------------------------- /src/directoryentry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/directoryentry.h -------------------------------------------------------------------------------- /src/directoryentrydialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/directoryentrydialog.cpp -------------------------------------------------------------------------------- /src/directoryentrydialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/directoryentrydialog.h -------------------------------------------------------------------------------- /src/directoryentrydialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/directoryentrydialog.ui -------------------------------------------------------------------------------- /src/directoryitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/directoryitem.cpp -------------------------------------------------------------------------------- /src/directoryitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/directoryitem.h -------------------------------------------------------------------------------- /src/docinfodialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/docinfodialog.cpp -------------------------------------------------------------------------------- /src/docinfodialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/docinfodialog.h -------------------------------------------------------------------------------- /src/docinfodialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/docinfodialog.ui -------------------------------------------------------------------------------- /src/document.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/document.cpp -------------------------------------------------------------------------------- /src/document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/document.h -------------------------------------------------------------------------------- /src/documentsql.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/documentsql.cpp -------------------------------------------------------------------------------- /src/documentsql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/documentsql.h -------------------------------------------------------------------------------- /src/errorinfoexception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/errorinfoexception.cpp -------------------------------------------------------------------------------- /src/errorinfoexception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/errorinfoexception.h -------------------------------------------------------------------------------- /src/extension.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/extension.cpp -------------------------------------------------------------------------------- /src/extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/extension.h -------------------------------------------------------------------------------- /src/externaltoolitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/externaltoolitem.cpp -------------------------------------------------------------------------------- /src/externaltoolitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/externaltoolitem.h -------------------------------------------------------------------------------- /src/ffmpeg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/ffmpeg.cpp -------------------------------------------------------------------------------- /src/ffmpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/ffmpeg.h -------------------------------------------------------------------------------- /src/findcombobox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/findcombobox.cpp -------------------------------------------------------------------------------- /src/findcombobox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/findcombobox.h -------------------------------------------------------------------------------- /src/folder.ini: -------------------------------------------------------------------------------- 1 | [Main] 2 | folder=N:\Ambiesoft\SceneExplorer 3 | PathType=3 4 | 5 | -------------------------------------------------------------------------------- /src/globals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/globals.cpp -------------------------------------------------------------------------------- /src/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/globals.h -------------------------------------------------------------------------------- /src/helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/helper.cpp -------------------------------------------------------------------------------- /src/helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/helper.h -------------------------------------------------------------------------------- /src/historylist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/historylist.cpp -------------------------------------------------------------------------------- /src/historylist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/historylist.h -------------------------------------------------------------------------------- /src/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/icon.ico -------------------------------------------------------------------------------- /src/imainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/imainwindow.h -------------------------------------------------------------------------------- /src/itempropertydialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/itempropertydialog.cpp -------------------------------------------------------------------------------- /src/itempropertydialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/itempropertydialog.h -------------------------------------------------------------------------------- /src/itempropertydialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/itempropertydialog.ui -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/mainwindow.cpp -------------------------------------------------------------------------------- /src/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/mainwindow.h -------------------------------------------------------------------------------- /src/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/mainwindow.ui -------------------------------------------------------------------------------- /src/mainwindow_action.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/mainwindow_action.cpp -------------------------------------------------------------------------------- /src/mainwindow_contextmenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/mainwindow_contextmenu.cpp -------------------------------------------------------------------------------- /src/mainwindow_ctor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/mainwindow_ctor.cpp -------------------------------------------------------------------------------- /src/mainwindow_debugtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/mainwindow_debugtest.cpp -------------------------------------------------------------------------------- /src/mainwindow_document.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/mainwindow_document.cpp -------------------------------------------------------------------------------- /src/mainwindow_event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/mainwindow_event.cpp -------------------------------------------------------------------------------- /src/mainwindow_history.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/mainwindow_history.cpp -------------------------------------------------------------------------------- /src/mainwindow_oncopy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/mainwindow_oncopy.cpp -------------------------------------------------------------------------------- /src/mainwindow_onedit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/mainwindow_onedit.cpp -------------------------------------------------------------------------------- /src/mainwindow_onpaste.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/mainwindow_onpaste.cpp -------------------------------------------------------------------------------- /src/mainwindow_onselectall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/mainwindow_onselectall.cpp -------------------------------------------------------------------------------- /src/mainwindow_slot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/mainwindow_slot.cpp -------------------------------------------------------------------------------- /src/mainwindow_working.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/mainwindow_working.cpp -------------------------------------------------------------------------------- /src/materials/unixutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/materials/unixutils.cpp -------------------------------------------------------------------------------- /src/materials/unixutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/materials/unixutils.h -------------------------------------------------------------------------------- /src/mycontextmenu.cpp: -------------------------------------------------------------------------------- 1 | #include "mycontextmenu.h" 2 | 3 | -------------------------------------------------------------------------------- /src/mycontextmenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/mycontextmenu.h -------------------------------------------------------------------------------- /src/mytableview.cpp.delete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/mytableview.cpp.delete -------------------------------------------------------------------------------- /src/mytableview.h.delete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/mytableview.h.delete -------------------------------------------------------------------------------- /src/obsoletes/exeffmpeg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/obsoletes/exeffmpeg.cpp -------------------------------------------------------------------------------- /src/obsoletes/exeffmpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/obsoletes/exeffmpeg.h -------------------------------------------------------------------------------- /src/obsoletes/listitemdata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/obsoletes/listitemdata.cpp -------------------------------------------------------------------------------- /src/obsoletes/listitemdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/obsoletes/listitemdata.h -------------------------------------------------------------------------------- /src/obsoletes/listmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/obsoletes/listmodel.cpp -------------------------------------------------------------------------------- /src/obsoletes/listmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/obsoletes/listmodel.h -------------------------------------------------------------------------------- /src/obsoletes/missing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/obsoletes/missing.png -------------------------------------------------------------------------------- /src/obsoletes/taskfilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/obsoletes/taskfilter.cpp -------------------------------------------------------------------------------- /src/obsoletes/taskfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/obsoletes/taskfilter.h -------------------------------------------------------------------------------- /src/option.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/option.ui -------------------------------------------------------------------------------- /src/optiondialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/optiondialog.cpp -------------------------------------------------------------------------------- /src/optiondialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/optiondialog.h -------------------------------------------------------------------------------- /src/optionextension.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/optionextension.cpp -------------------------------------------------------------------------------- /src/optionextension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/optionextension.h -------------------------------------------------------------------------------- /src/optionextension.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/optionextension.ui -------------------------------------------------------------------------------- /src/optionexternaltoolsdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/optionexternaltoolsdialog.cpp -------------------------------------------------------------------------------- /src/optionexternaltoolsdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/optionexternaltoolsdialog.h -------------------------------------------------------------------------------- /src/optionexternaltoolsdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/optionexternaltoolsdialog.ui -------------------------------------------------------------------------------- /src/osd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/osd.h -------------------------------------------------------------------------------- /src/osd_linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/osd_linux.cpp -------------------------------------------------------------------------------- /src/osd_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/osd_win32.cpp -------------------------------------------------------------------------------- /src/renamedialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/renamedialog.cpp -------------------------------------------------------------------------------- /src/renamedialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/renamedialog.h -------------------------------------------------------------------------------- /src/renamedialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/renamedialog.ui -------------------------------------------------------------------------------- /src/resource.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/resource.qrc -------------------------------------------------------------------------------- /src/resource/images/bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/resource/images/bottom.png -------------------------------------------------------------------------------- /src/resource/images/eraser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/resource/images/eraser.png -------------------------------------------------------------------------------- /src/resource/images/left-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/resource/images/left-arrow.png -------------------------------------------------------------------------------- /src/resource/images/mailbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/resource/images/mailbox.png -------------------------------------------------------------------------------- /src/resource/images/missing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/resource/images/missing.png -------------------------------------------------------------------------------- /src/resource/images/notags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/resource/images/notags.png -------------------------------------------------------------------------------- /src/resource/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/resource/images/refresh.png -------------------------------------------------------------------------------- /src/resource/images/research.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/resource/images/research.png -------------------------------------------------------------------------------- /src/resource/images/right-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/resource/images/right-arrow.png -------------------------------------------------------------------------------- /src/resource/images/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/resource/images/settings.png -------------------------------------------------------------------------------- /src/resource/images/sort-by-alphabet-rev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/resource/images/sort-by-alphabet-rev.png -------------------------------------------------------------------------------- /src/resource/images/sort-by-alphabet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/resource/images/sort-by-alphabet.png -------------------------------------------------------------------------------- /src/resource/images/sort-by-size-rev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/resource/images/sort-by-size-rev.png -------------------------------------------------------------------------------- /src/resource/images/sort-by-size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/resource/images/sort-by-size.png -------------------------------------------------------------------------------- /src/resource/images/sort-lastaccess-rev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/resource/images/sort-lastaccess-rev.png -------------------------------------------------------------------------------- /src/resource/images/sort-lastaccess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/resource/images/sort-lastaccess.png -------------------------------------------------------------------------------- /src/resource/images/sort-opencount-rev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/resource/images/sort-opencount-rev.png -------------------------------------------------------------------------------- /src/resource/images/sort-opencount.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/resource/images/sort-opencount.png -------------------------------------------------------------------------------- /src/resource/images/sort-wtime-rev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/resource/images/sort-wtime-rev.png -------------------------------------------------------------------------------- /src/resource/images/sort-wtime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/resource/images/sort-wtime.png -------------------------------------------------------------------------------- /src/resource/images/tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/resource/images/tag.png -------------------------------------------------------------------------------- /src/resource/images/tagmenu-check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/resource/images/tagmenu-check.png -------------------------------------------------------------------------------- /src/resource/images/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/resource/images/top.png -------------------------------------------------------------------------------- /src/resource/license/GPLv3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/resource/license/GPLv3.html -------------------------------------------------------------------------------- /src/showlastscanerrorsdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/showlastscanerrorsdialog.cpp -------------------------------------------------------------------------------- /src/showlastscanerrorsdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/showlastscanerrorsdialog.h -------------------------------------------------------------------------------- /src/showlastscanerrorsdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/showlastscanerrorsdialog.ui -------------------------------------------------------------------------------- /src/sql.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/sql.cpp -------------------------------------------------------------------------------- /src/sql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/sql.h -------------------------------------------------------------------------------- /src/sqlcommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/sqlcommon.h -------------------------------------------------------------------------------- /src/stable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/stable.h -------------------------------------------------------------------------------- /src/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/stdafx.h -------------------------------------------------------------------------------- /src/tableitemdata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/tableitemdata.cpp -------------------------------------------------------------------------------- /src/tableitemdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/tableitemdata.h -------------------------------------------------------------------------------- /src/tableitemdelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/tableitemdelegate.cpp -------------------------------------------------------------------------------- /src/tableitemdelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/tableitemdelegate.h -------------------------------------------------------------------------------- /src/tablemodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/tablemodel.cpp -------------------------------------------------------------------------------- /src/tablemodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/tablemodel.h -------------------------------------------------------------------------------- /src/tablemodel_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/tablemodel_data.cpp -------------------------------------------------------------------------------- /src/tagentry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/tagentry.cpp -------------------------------------------------------------------------------- /src/tagentry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/tagentry.h -------------------------------------------------------------------------------- /src/tagidsinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/tagidsinfo.cpp -------------------------------------------------------------------------------- /src/tagidsinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/tagidsinfo.h -------------------------------------------------------------------------------- /src/taginputdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/taginputdialog.cpp -------------------------------------------------------------------------------- /src/taginputdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/taginputdialog.h -------------------------------------------------------------------------------- /src/taginputdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/taginputdialog.ui -------------------------------------------------------------------------------- /src/tagitem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/tagitem.cpp -------------------------------------------------------------------------------- /src/tagitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/tagitem.h -------------------------------------------------------------------------------- /src/taskcheckthumbs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/taskcheckthumbs.cpp -------------------------------------------------------------------------------- /src/taskcheckthumbs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/taskcheckthumbs.h -------------------------------------------------------------------------------- /src/taskffmpeg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/taskffmpeg.cpp -------------------------------------------------------------------------------- /src/taskffmpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/taskffmpeg.h -------------------------------------------------------------------------------- /src/taskgetdir.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/taskgetdir.cpp -------------------------------------------------------------------------------- /src/taskgetdir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/taskgetdir.h -------------------------------------------------------------------------------- /src/tasklistdata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/tasklistdata.cpp -------------------------------------------------------------------------------- /src/tasklistdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/tasklistdata.h -------------------------------------------------------------------------------- /src/taskmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/taskmodel.cpp -------------------------------------------------------------------------------- /src/taskmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/taskmodel.h -------------------------------------------------------------------------------- /src/translations/.gitignore: -------------------------------------------------------------------------------- 1 | *.qm 2 | -------------------------------------------------------------------------------- /src/translations/i18n_Japanese.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/src/translations/i18n_Japanese.ts -------------------------------------------------------------------------------- /src/translations/readme.txt: -------------------------------------------------------------------------------- 1 | See SceneExplorer\information\i18n.txt 2 | -------------------------------------------------------------------------------- /startqtcreator.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/startqtcreator.bat -------------------------------------------------------------------------------- /startvsproj2013-64.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/startvsproj2013-64.bat -------------------------------------------------------------------------------- /startvsproj2015-32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/startvsproj2015-32.bat -------------------------------------------------------------------------------- /startvsproj2017-64.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/startvsproj2017-64.bat -------------------------------------------------------------------------------- /startvsproj2019-32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/startvsproj2019-32.bat -------------------------------------------------------------------------------- /startvsproj2022-32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/startvsproj2022-32.bat -------------------------------------------------------------------------------- /startvsproj2022-64.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/startvsproj2022-64.bat -------------------------------------------------------------------------------- /tools/thunar-open-file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambiesoft/SceneExplorer/HEAD/tools/thunar-open-file.py --------------------------------------------------------------------------------