├── .gitignore ├── CIFE ├── .cproject ├── .project ├── .settings │ ├── language.settings.xml │ ├── org.eclipse.cdt.codan.core.prefs │ ├── org.eclipse.cdt.core.prefs │ └── org.eclipse.core.resources.prefs ├── Bitmaps │ ├── about.png │ ├── appiconsmall.ico │ ├── appiconsmall.png │ ├── attributes.png │ ├── check_image.png │ ├── close.png │ ├── copy.png │ ├── create_new.png │ ├── cut.png │ ├── datei.png │ ├── delete.png │ ├── edit.png │ ├── paste.png │ ├── permissions.png │ ├── quit.png │ ├── refresh.png │ └── select_all.png ├── CIFE.rc ├── GUI-Designs │ ├── Ui_CreateFileDialog.wxcp │ ├── Ui_CreateFileDialog_bitmaps.xrc │ ├── Ui_FileAttributesDialog.wxcp │ ├── Ui_FileAttributesDialog_bitmaps.xrc │ ├── Ui_FileCopySettingsDialog.wxcp │ ├── Ui_FileCopySettingsDialog_bitmaps.xrc │ ├── Ui_FileProtectionsDialog.wxcp │ ├── Ui_FileProtectionsDialog_bitmaps.xrc │ ├── Ui_GeneralSettingsDialog.wxcp │ ├── Ui_GeneralSettingsDialog_bitmaps.xrc │ ├── Ui_MainWindow.wxcp │ ├── Ui_MainWindow_bitmaps.xrc │ ├── Ui_RenameFileDialog.wxcp │ └── Ui_RenameFileDialog_bitmaps.xrc └── Sources │ ├── CifeListView.cpp │ ├── CifeListView.hpp │ ├── CpmDefs.h │ ├── CpmDevice.cpp │ ├── CpmDevice.hpp │ ├── CpmFs.cpp │ ├── CpmFs.hpp │ ├── CpmGuiInterface.cpp │ ├── CpmGuiInterface.hpp │ ├── CpmTools.cpp │ ├── CpmTools.hpp │ ├── CreateFileDialog.cpp │ ├── CreateFileDialog.hpp │ ├── FileAttributesDialog.cpp │ ├── FileAttributesDialog.hpp │ ├── FileCopySettingsDialog.cpp │ ├── FileCopySettingsDialog.hpp │ ├── FileDialogImageTypesPanel.cpp │ ├── FileDialogImageTypesPanel.hpp │ ├── FileProtectionsDialog.cpp │ ├── FileProtectionsDialog.hpp │ ├── GeneralSettingsDialog.cpp │ ├── GeneralSettingsDialog.hpp │ ├── ImagesHistory.cpp │ ├── ImagesHistory.hpp │ ├── MainWindow.cpp │ ├── MainWindow.hpp │ ├── RenameFileDialog.cpp │ ├── RenameFileDialog.hpp │ ├── Ui_CreateFileDialog.cpp │ ├── Ui_CreateFileDialog.hpp │ ├── Ui_CreateFileDialog_bitmaps.cpp │ ├── Ui_FileAttributesDialog.cpp │ ├── Ui_FileAttributesDialog.hpp │ ├── Ui_FileAttributesDialog_bitmaps.cpp │ ├── Ui_FileCopySettingsDialog.cpp │ ├── Ui_FileCopySettingsDialog.hpp │ ├── Ui_FileCopySettingsDialog_bitmaps.cpp │ ├── Ui_FileProtectionsDialog.cpp │ ├── Ui_FileProtectionsDialog.hpp │ ├── Ui_FileProtectionsDialog_bitmaps.cpp │ ├── Ui_GeneralSettingsDialog.cpp │ ├── Ui_GeneralSettingsDialog.hpp │ ├── Ui_GeneralSettingsDialog_bitmaps.cpp │ ├── Ui_MainWindow.cpp │ ├── Ui_MainWindow.hpp │ ├── Ui_MainWindow_bitmaps.cpp │ ├── Ui_RenameFileDialog.cpp │ ├── Ui_RenameFileDialog.hpp │ ├── Ui_RenameFileDialog_bitmaps.cpp │ ├── Version.h │ ├── diskdefs.cpp │ ├── diskdefs.hpp │ ├── main.cpp │ ├── wxXmlConfig.cpp │ └── wxXmlConfig.hpp ├── CIFE_Linux.jpg ├── GNUmakefile ├── astylerc ├── license.md ├── readme.de.md └── readme.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/.gitignore -------------------------------------------------------------------------------- /CIFE/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/.cproject -------------------------------------------------------------------------------- /CIFE/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/.project -------------------------------------------------------------------------------- /CIFE/.settings/language.settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/.settings/language.settings.xml -------------------------------------------------------------------------------- /CIFE/.settings/org.eclipse.cdt.codan.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/.settings/org.eclipse.cdt.codan.core.prefs -------------------------------------------------------------------------------- /CIFE/.settings/org.eclipse.cdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/.settings/org.eclipse.cdt.core.prefs -------------------------------------------------------------------------------- /CIFE/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /CIFE/Bitmaps/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/Bitmaps/about.png -------------------------------------------------------------------------------- /CIFE/Bitmaps/appiconsmall.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/Bitmaps/appiconsmall.ico -------------------------------------------------------------------------------- /CIFE/Bitmaps/appiconsmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/Bitmaps/appiconsmall.png -------------------------------------------------------------------------------- /CIFE/Bitmaps/attributes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/Bitmaps/attributes.png -------------------------------------------------------------------------------- /CIFE/Bitmaps/check_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/Bitmaps/check_image.png -------------------------------------------------------------------------------- /CIFE/Bitmaps/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/Bitmaps/close.png -------------------------------------------------------------------------------- /CIFE/Bitmaps/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/Bitmaps/copy.png -------------------------------------------------------------------------------- /CIFE/Bitmaps/create_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/Bitmaps/create_new.png -------------------------------------------------------------------------------- /CIFE/Bitmaps/cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/Bitmaps/cut.png -------------------------------------------------------------------------------- /CIFE/Bitmaps/datei.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/Bitmaps/datei.png -------------------------------------------------------------------------------- /CIFE/Bitmaps/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/Bitmaps/delete.png -------------------------------------------------------------------------------- /CIFE/Bitmaps/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/Bitmaps/edit.png -------------------------------------------------------------------------------- /CIFE/Bitmaps/paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/Bitmaps/paste.png -------------------------------------------------------------------------------- /CIFE/Bitmaps/permissions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/Bitmaps/permissions.png -------------------------------------------------------------------------------- /CIFE/Bitmaps/quit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/Bitmaps/quit.png -------------------------------------------------------------------------------- /CIFE/Bitmaps/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/Bitmaps/refresh.png -------------------------------------------------------------------------------- /CIFE/Bitmaps/select_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/Bitmaps/select_all.png -------------------------------------------------------------------------------- /CIFE/CIFE.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/CIFE.rc -------------------------------------------------------------------------------- /CIFE/GUI-Designs/Ui_CreateFileDialog.wxcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/GUI-Designs/Ui_CreateFileDialog.wxcp -------------------------------------------------------------------------------- /CIFE/GUI-Designs/Ui_CreateFileDialog_bitmaps.xrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/GUI-Designs/Ui_CreateFileDialog_bitmaps.xrc -------------------------------------------------------------------------------- /CIFE/GUI-Designs/Ui_FileAttributesDialog.wxcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/GUI-Designs/Ui_FileAttributesDialog.wxcp -------------------------------------------------------------------------------- /CIFE/GUI-Designs/Ui_FileAttributesDialog_bitmaps.xrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/GUI-Designs/Ui_FileAttributesDialog_bitmaps.xrc -------------------------------------------------------------------------------- /CIFE/GUI-Designs/Ui_FileCopySettingsDialog.wxcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/GUI-Designs/Ui_FileCopySettingsDialog.wxcp -------------------------------------------------------------------------------- /CIFE/GUI-Designs/Ui_FileCopySettingsDialog_bitmaps.xrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/GUI-Designs/Ui_FileCopySettingsDialog_bitmaps.xrc -------------------------------------------------------------------------------- /CIFE/GUI-Designs/Ui_FileProtectionsDialog.wxcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/GUI-Designs/Ui_FileProtectionsDialog.wxcp -------------------------------------------------------------------------------- /CIFE/GUI-Designs/Ui_FileProtectionsDialog_bitmaps.xrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/GUI-Designs/Ui_FileProtectionsDialog_bitmaps.xrc -------------------------------------------------------------------------------- /CIFE/GUI-Designs/Ui_GeneralSettingsDialog.wxcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/GUI-Designs/Ui_GeneralSettingsDialog.wxcp -------------------------------------------------------------------------------- /CIFE/GUI-Designs/Ui_GeneralSettingsDialog_bitmaps.xrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/GUI-Designs/Ui_GeneralSettingsDialog_bitmaps.xrc -------------------------------------------------------------------------------- /CIFE/GUI-Designs/Ui_MainWindow.wxcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/GUI-Designs/Ui_MainWindow.wxcp -------------------------------------------------------------------------------- /CIFE/GUI-Designs/Ui_MainWindow_bitmaps.xrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/GUI-Designs/Ui_MainWindow_bitmaps.xrc -------------------------------------------------------------------------------- /CIFE/GUI-Designs/Ui_RenameFileDialog.wxcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/GUI-Designs/Ui_RenameFileDialog.wxcp -------------------------------------------------------------------------------- /CIFE/GUI-Designs/Ui_RenameFileDialog_bitmaps.xrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/GUI-Designs/Ui_RenameFileDialog_bitmaps.xrc -------------------------------------------------------------------------------- /CIFE/Sources/CifeListView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/Sources/CifeListView.cpp -------------------------------------------------------------------------------- /CIFE/Sources/CifeListView.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/Sources/CifeListView.hpp -------------------------------------------------------------------------------- /CIFE/Sources/CpmDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/Sources/CpmDefs.h -------------------------------------------------------------------------------- /CIFE/Sources/CpmDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/Sources/CpmDevice.cpp -------------------------------------------------------------------------------- /CIFE/Sources/CpmDevice.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/Sources/CpmDevice.hpp -------------------------------------------------------------------------------- /CIFE/Sources/CpmFs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/Sources/CpmFs.cpp -------------------------------------------------------------------------------- /CIFE/Sources/CpmFs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/Sources/CpmFs.hpp -------------------------------------------------------------------------------- /CIFE/Sources/CpmGuiInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/Sources/CpmGuiInterface.cpp -------------------------------------------------------------------------------- /CIFE/Sources/CpmGuiInterface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/Sources/CpmGuiInterface.hpp -------------------------------------------------------------------------------- /CIFE/Sources/CpmTools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/Sources/CpmTools.cpp -------------------------------------------------------------------------------- /CIFE/Sources/CpmTools.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/Sources/CpmTools.hpp -------------------------------------------------------------------------------- /CIFE/Sources/CreateFileDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/Sources/CreateFileDialog.cpp -------------------------------------------------------------------------------- /CIFE/Sources/CreateFileDialog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/Sources/CreateFileDialog.hpp -------------------------------------------------------------------------------- /CIFE/Sources/FileAttributesDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/Sources/FileAttributesDialog.cpp -------------------------------------------------------------------------------- /CIFE/Sources/FileAttributesDialog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/Sources/FileAttributesDialog.hpp -------------------------------------------------------------------------------- /CIFE/Sources/FileCopySettingsDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/Sources/FileCopySettingsDialog.cpp -------------------------------------------------------------------------------- /CIFE/Sources/FileCopySettingsDialog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/Sources/FileCopySettingsDialog.hpp -------------------------------------------------------------------------------- /CIFE/Sources/FileDialogImageTypesPanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/Sources/FileDialogImageTypesPanel.cpp -------------------------------------------------------------------------------- /CIFE/Sources/FileDialogImageTypesPanel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/Sources/FileDialogImageTypesPanel.hpp -------------------------------------------------------------------------------- /CIFE/Sources/FileProtectionsDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/Sources/FileProtectionsDialog.cpp -------------------------------------------------------------------------------- /CIFE/Sources/FileProtectionsDialog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/Sources/FileProtectionsDialog.hpp -------------------------------------------------------------------------------- /CIFE/Sources/GeneralSettingsDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/Sources/GeneralSettingsDialog.cpp -------------------------------------------------------------------------------- /CIFE/Sources/GeneralSettingsDialog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/Sources/GeneralSettingsDialog.hpp -------------------------------------------------------------------------------- /CIFE/Sources/ImagesHistory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/Sources/ImagesHistory.cpp -------------------------------------------------------------------------------- /CIFE/Sources/ImagesHistory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/Sources/ImagesHistory.hpp -------------------------------------------------------------------------------- /CIFE/Sources/MainWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/Sources/MainWindow.cpp -------------------------------------------------------------------------------- /CIFE/Sources/MainWindow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/Sources/MainWindow.hpp -------------------------------------------------------------------------------- /CIFE/Sources/RenameFileDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/Sources/RenameFileDialog.cpp -------------------------------------------------------------------------------- /CIFE/Sources/RenameFileDialog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/Sources/RenameFileDialog.hpp -------------------------------------------------------------------------------- /CIFE/Sources/Ui_CreateFileDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/Sources/Ui_CreateFileDialog.cpp -------------------------------------------------------------------------------- /CIFE/Sources/Ui_CreateFileDialog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/Sources/Ui_CreateFileDialog.hpp -------------------------------------------------------------------------------- /CIFE/Sources/Ui_CreateFileDialog_bitmaps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/Sources/Ui_CreateFileDialog_bitmaps.cpp -------------------------------------------------------------------------------- /CIFE/Sources/Ui_FileAttributesDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/Sources/Ui_FileAttributesDialog.cpp -------------------------------------------------------------------------------- /CIFE/Sources/Ui_FileAttributesDialog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/Sources/Ui_FileAttributesDialog.hpp -------------------------------------------------------------------------------- /CIFE/Sources/Ui_FileAttributesDialog_bitmaps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/Sources/Ui_FileAttributesDialog_bitmaps.cpp -------------------------------------------------------------------------------- /CIFE/Sources/Ui_FileCopySettingsDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/Sources/Ui_FileCopySettingsDialog.cpp -------------------------------------------------------------------------------- /CIFE/Sources/Ui_FileCopySettingsDialog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/Sources/Ui_FileCopySettingsDialog.hpp -------------------------------------------------------------------------------- /CIFE/Sources/Ui_FileCopySettingsDialog_bitmaps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/Sources/Ui_FileCopySettingsDialog_bitmaps.cpp -------------------------------------------------------------------------------- /CIFE/Sources/Ui_FileProtectionsDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/Sources/Ui_FileProtectionsDialog.cpp -------------------------------------------------------------------------------- /CIFE/Sources/Ui_FileProtectionsDialog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/Sources/Ui_FileProtectionsDialog.hpp -------------------------------------------------------------------------------- /CIFE/Sources/Ui_FileProtectionsDialog_bitmaps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/Sources/Ui_FileProtectionsDialog_bitmaps.cpp -------------------------------------------------------------------------------- /CIFE/Sources/Ui_GeneralSettingsDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/Sources/Ui_GeneralSettingsDialog.cpp -------------------------------------------------------------------------------- /CIFE/Sources/Ui_GeneralSettingsDialog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/Sources/Ui_GeneralSettingsDialog.hpp -------------------------------------------------------------------------------- /CIFE/Sources/Ui_GeneralSettingsDialog_bitmaps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/Sources/Ui_GeneralSettingsDialog_bitmaps.cpp -------------------------------------------------------------------------------- /CIFE/Sources/Ui_MainWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/Sources/Ui_MainWindow.cpp -------------------------------------------------------------------------------- /CIFE/Sources/Ui_MainWindow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/Sources/Ui_MainWindow.hpp -------------------------------------------------------------------------------- /CIFE/Sources/Ui_MainWindow_bitmaps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/Sources/Ui_MainWindow_bitmaps.cpp -------------------------------------------------------------------------------- /CIFE/Sources/Ui_RenameFileDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/Sources/Ui_RenameFileDialog.cpp -------------------------------------------------------------------------------- /CIFE/Sources/Ui_RenameFileDialog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/Sources/Ui_RenameFileDialog.hpp -------------------------------------------------------------------------------- /CIFE/Sources/Ui_RenameFileDialog_bitmaps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/Sources/Ui_RenameFileDialog_bitmaps.cpp -------------------------------------------------------------------------------- /CIFE/Sources/Version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/Sources/Version.h -------------------------------------------------------------------------------- /CIFE/Sources/diskdefs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/Sources/diskdefs.cpp -------------------------------------------------------------------------------- /CIFE/Sources/diskdefs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/Sources/diskdefs.hpp -------------------------------------------------------------------------------- /CIFE/Sources/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/Sources/main.cpp -------------------------------------------------------------------------------- /CIFE/Sources/wxXmlConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/Sources/wxXmlConfig.cpp -------------------------------------------------------------------------------- /CIFE/Sources/wxXmlConfig.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE/Sources/wxXmlConfig.hpp -------------------------------------------------------------------------------- /CIFE_Linux.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/CIFE_Linux.jpg -------------------------------------------------------------------------------- /GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/GNUmakefile -------------------------------------------------------------------------------- /astylerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/astylerc -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/license.md -------------------------------------------------------------------------------- /readme.de.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/readme.de.md -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammingHobby/CPM_Image-File_Explorer/HEAD/readme.md --------------------------------------------------------------------------------