├── .appveyor ├── after_build.ps1 └── test_script.ps1 ├── .clang-format ├── .clang-tidy ├── .gitattributes ├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── crash_report.md ├── .gitignore ├── .gitmodules ├── .readthedocs.yaml ├── .tgitconfig ├── BUILDING.md ├── CONTRIBUTING.md ├── Directory.Build.props ├── Directory.Build.targets ├── Documentation └── User │ ├── History.txt │ ├── License.txt │ ├── Readme.txt │ └── Sphinx │ ├── .gitignore │ ├── Makefile │ ├── _static │ ├── css │ │ └── custom.css │ └── images │ │ ├── common │ │ └── arrow_rt.gif │ │ ├── icons │ │ ├── btn_back.png │ │ ├── btn_bookmark_tab.png │ │ ├── btn_command_prompt.png │ │ ├── btn_copy.png │ │ ├── btn_copy_to.png │ │ ├── btn_cut.png │ │ ├── btn_delete.png │ │ ├── btn_delete_perm.png │ │ ├── btn_folders_off.png │ │ ├── btn_folders_on.png │ │ ├── btn_forward.png │ │ ├── btn_history.png │ │ ├── btn_move_to.png │ │ ├── btn_new_folder.png │ │ ├── btn_new_tab.png │ │ ├── btn_organize_bookmarks.png │ │ ├── btn_paste.png │ │ ├── btn_properties.png │ │ ├── btn_refresh.png │ │ ├── btn_search.png │ │ ├── btn_up.png │ │ ├── btn_views.png │ │ ├── new_tab.png │ │ └── organize_bookmarks.png │ │ ├── mnu_actions │ │ ├── destroy.png │ │ ├── merge_error.png │ │ ├── merge_files.png │ │ ├── new_folder.gif │ │ └── split_file.png │ │ ├── mnu_edit │ │ ├── hard_link_diagram.png │ │ └── shortcut_missing.png │ │ ├── mnu_file │ │ ├── New_Tab_Task.png │ │ ├── calendar.png │ │ ├── chg_attributes.png │ │ ├── column_headings_example.png │ │ ├── command_prompt.png │ │ ├── files_paths_example.png │ │ ├── properties.png │ │ ├── rename_mass.png │ │ └── rename_single_item.png │ │ ├── mnu_help │ │ └── nohelpfile.png │ │ ├── mnu_selection │ │ ├── inv_select1.png │ │ ├── inv_select2.png │ │ ├── wildcard_deselect.png │ │ └── wildcard_select.png │ │ ├── mnu_tools │ │ ├── browse_for_fldr.png │ │ ├── customize_colors.png │ │ ├── customize_colors_edit.png │ │ ├── filesize_flexible.png │ │ ├── filesize_menu.png │ │ ├── languages.png │ │ ├── search.png │ │ ├── select_fullrow.png │ │ ├── select_normal.png │ │ ├── titlebar_normal.png │ │ ├── titlebar_path.png │ │ ├── titlebar_privilege.png │ │ └── titlebar_username.png │ │ ├── mnu_view │ │ ├── ascend_name.png │ │ ├── auto-arrange_off.png │ │ ├── autosize_col1.png │ │ ├── autosize_col2.png │ │ ├── descend_name.png │ │ ├── dispwin_mod.png │ │ ├── filter_set.png │ │ ├── filtering_applied.gif │ │ ├── node_minus.png │ │ ├── node_plus.png │ │ ├── sel_col.png │ │ ├── status_bar.png │ │ ├── view_details.png │ │ ├── view_icons.png │ │ ├── view_list.png │ │ ├── view_smicons.png │ │ ├── view_thnails.png │ │ └── view_tiles.png │ │ ├── nav │ │ ├── mnu-view-group_by.png │ │ ├── mnu-view-sort_by.png │ │ ├── mnu-view-toolbar.png │ │ ├── options-default_settings.png │ │ ├── options-files_and_folders.png │ │ ├── options-general.png │ │ ├── options-tabs.png │ │ └── options-window.png │ │ ├── pane_tabs │ │ ├── tab_bar.png │ │ ├── tab_bar_closebtn.png │ │ ├── tab_bar_context.png │ │ ├── tab_locked.png │ │ └── tab_rename.png │ │ └── toolbars │ │ ├── address_bar.png │ │ ├── app_btn_context.png │ │ ├── app_toolbar.png │ │ ├── chevron.png │ │ ├── chevron_list.png │ │ ├── customize_tb.png │ │ ├── drives_toolbar-menu.png │ │ ├── drives_toolbar.png │ │ ├── main_toolbar.png │ │ ├── new_app_btn.png │ │ └── toolbar_grip.png │ ├── about_explorer++.rst │ ├── conf.py │ ├── global.rst │ ├── index.rst │ ├── make.bat │ ├── menus │ ├── actions │ │ ├── destroy_files.rst │ │ ├── index.rst │ │ ├── merge_files.rst │ │ ├── new_folder.rst │ │ └── split_file.rst │ ├── bookmarks │ │ ├── bookmark_all_tabs.rst │ │ ├── bookmark_tab.rst │ │ ├── index.rst │ │ └── manage_bookmarks.rst │ ├── edit │ │ ├── copy.rst │ │ ├── copy_to_folder.rst │ │ ├── cut.rst │ │ ├── index.rst │ │ ├── move_to_folder.rst │ │ ├── paste.rst │ │ ├── paste_hard_link.rst │ │ ├── paste_shortcut.rst │ │ ├── resolve_link.rst │ │ └── undo.rst │ ├── file │ │ ├── clone_window.rst │ │ ├── close_tab.rst │ │ ├── copy_column_text.rst │ │ ├── copy_file_paths.rst │ │ ├── copy_folder_path.rst │ │ ├── copy_universal_file_paths.rst │ │ ├── delete.rst │ │ ├── delete_permanently.rst │ │ ├── exit.rst │ │ ├── index.rst │ │ ├── new_tab.rst │ │ ├── properties.rst │ │ ├── rename.rst │ │ ├── save_directory_listing.rst │ │ ├── set_file_attributes.rst │ │ └── show_command_prompt.rst │ ├── go │ │ ├── back.rst │ │ ├── cd_burning.rst │ │ ├── control_panel.rst │ │ ├── desktop.rst │ │ ├── forward.rst │ │ ├── index.rst │ │ ├── my_computer.rst │ │ ├── my_documents.rst │ │ ├── my_music.rst │ │ ├── my_network_places.rst │ │ ├── my_pictures.rst │ │ ├── network_connections.rst │ │ ├── printers_and_faxes.rst │ │ ├── recycle_bin.rst │ │ └── up.rst │ ├── help │ │ ├── about.rst │ │ ├── help.rst │ │ └── index.rst │ ├── index.rst │ ├── selection │ │ ├── index.rst │ │ ├── invert_selection.rst │ │ ├── select_all.rst │ │ ├── select_all_of_same_type.rst │ │ ├── select_none.rst │ │ ├── wildcard_deselect.rst │ │ └── wildcard_select.rst │ ├── tools │ │ ├── customize_colors.rst │ │ ├── index.rst │ │ ├── options │ │ │ ├── default_settings.rst │ │ │ ├── files_and_folders.rst │ │ │ ├── general.rst │ │ │ ├── index.rst │ │ │ ├── tabs.rst │ │ │ └── window.rst │ │ └── search.rst │ └── view │ │ ├── auto_arrange.rst │ │ ├── autosize_columns.rst │ │ ├── change_display_window_colors.rst │ │ ├── display_window.rst │ │ ├── filter.rst │ │ ├── folders.rst │ │ ├── group_by.rst │ │ ├── index.rst │ │ ├── refresh.rst │ │ ├── save_column_layout.rst │ │ ├── select_columns.rst │ │ ├── show_hidden_files.rst │ │ ├── sort_by.rst │ │ ├── status_bar.rst │ │ ├── toolbars.rst │ │ └── view_modes.rst │ ├── panes │ ├── index.rst │ └── tab_bar.rst │ ├── requirements.in │ ├── requirements.txt │ └── toolbars │ ├── address.rst │ ├── application.rst │ ├── bookmarks.rst │ ├── customize.rst │ ├── drives.rst │ ├── index.rst │ ├── lock.rst │ └── main.rst ├── Explorer++ ├── Clang.props ├── Common.props ├── Explorer++.sln ├── Explorer++.sln.licenseheader ├── Explorer++ │ ├── AboutDialog.cpp │ ├── AboutDialog.h │ ├── Accelerator.h │ ├── AcceleratorHelper.cpp │ ├── AcceleratorHelper.h │ ├── AcceleratorManager.cpp │ ├── AcceleratorManager.h │ ├── AcceleratorMappings.h │ ├── AcceleratorUpdater.cpp │ ├── AcceleratorUpdater.h │ ├── AddressBar.cpp │ ├── AddressBar.h │ ├── AddressBarView.cpp │ ├── AddressBarView.h │ ├── AddressBarViewDelegate.h │ ├── AdvancedOptionsPage.cpp │ ├── AdvancedOptionsPage.h │ ├── App.cpp │ ├── App.h │ ├── AppStorage.h │ ├── AppearanceOptionsPage.cpp │ ├── AppearanceOptionsPage.h │ ├── Application.cpp │ ├── Application.h │ ├── ApplicationContextMenu.cpp │ ├── ApplicationContextMenu.h │ ├── ApplicationContextMenuController.cpp │ ├── ApplicationContextMenuController.h │ ├── ApplicationCrashedDialog.cpp │ ├── ApplicationCrashedDialog.h │ ├── ApplicationDropper.cpp │ ├── ApplicationDropper.h │ ├── ApplicationEditorDialog.cpp │ ├── ApplicationEditorDialog.h │ ├── ApplicationExecutor.h │ ├── ApplicationExecutorImpl.cpp │ ├── ApplicationExecutorImpl.h │ ├── ApplicationHelper.cpp │ ├── ApplicationHelper.h │ ├── ApplicationModel.h │ ├── ApplicationToolbar.cpp │ ├── ApplicationToolbar.h │ ├── ApplicationToolbarRegistryStorage.cpp │ ├── ApplicationToolbarRegistryStorage.h │ ├── ApplicationToolbarView.cpp │ ├── ApplicationToolbarView.h │ ├── ApplicationToolbarXmlStorage.cpp │ ├── ApplicationToolbarXmlStorage.h │ ├── AsyncIconFetcher.cpp │ ├── AsyncIconFetcher.h │ ├── BackgroundContextMenuDelegate.cpp │ ├── BackgroundContextMenuDelegate.h │ ├── BaseDialog.cpp │ ├── BaseDialog.h │ ├── Bookmarks │ │ ├── BookmarkClipboard.cpp │ │ ├── BookmarkClipboard.h │ │ ├── BookmarkDataExchange.cpp │ │ ├── BookmarkDataExchange.h │ │ ├── BookmarkDropper.cpp │ │ ├── BookmarkDropper.h │ │ ├── BookmarkHelper.cpp │ │ ├── BookmarkHelper.h │ │ ├── BookmarkIconManager.cpp │ │ ├── BookmarkIconManager.h │ │ ├── BookmarkItem.cpp │ │ ├── BookmarkItem.h │ │ ├── BookmarkNavigationController.cpp │ │ ├── BookmarkNavigationController.h │ │ ├── BookmarkNavigatorInterface.h │ │ ├── BookmarkRegistryStorage.cpp │ │ ├── BookmarkRegistryStorage.h │ │ ├── BookmarkStorage.h │ │ ├── BookmarkTree.cpp │ │ ├── BookmarkTree.h │ │ ├── BookmarkXmlStorage.cpp │ │ ├── BookmarkXmlStorage.h │ │ └── UI │ │ │ ├── AddBookmarkDialog.cpp │ │ │ ├── AddBookmarkDialog.h │ │ │ ├── BookmarkColumn.h │ │ │ ├── BookmarkColumnHelper.cpp │ │ │ ├── BookmarkColumnHelper.h │ │ │ ├── BookmarkColumnModel.cpp │ │ │ ├── BookmarkColumnModel.h │ │ │ ├── BookmarkContextMenu.cpp │ │ │ ├── BookmarkContextMenu.h │ │ │ ├── BookmarkDropTargetWindow.cpp │ │ │ ├── BookmarkDropTargetWindow.h │ │ │ ├── BookmarkListPresenter.cpp │ │ │ ├── BookmarkListPresenter.h │ │ │ ├── BookmarkListViewItem.cpp │ │ │ ├── BookmarkListViewItem.h │ │ │ ├── BookmarkListViewModel.cpp │ │ │ ├── BookmarkListViewModel.h │ │ │ ├── BookmarkMenu.cpp │ │ │ ├── BookmarkMenu.h │ │ │ ├── BookmarkMenuBuilder.cpp │ │ │ ├── BookmarkMenuBuilder.h │ │ │ ├── BookmarkMenuController.cpp │ │ │ ├── BookmarkMenuController.h │ │ │ ├── BookmarkMenuDropTarget.cpp │ │ │ ├── BookmarkMenuDropTarget.h │ │ │ ├── BookmarkTreePresenter.cpp │ │ │ ├── BookmarkTreePresenter.h │ │ │ ├── BookmarkTreeViewAdapter.cpp │ │ │ ├── BookmarkTreeViewAdapter.h │ │ │ ├── BookmarkTreeViewContextMenu.cpp │ │ │ ├── BookmarkTreeViewContextMenu.h │ │ │ ├── BookmarkTreeViewNode.cpp │ │ │ ├── BookmarkTreeViewNode.h │ │ │ ├── BookmarksMainMenu.cpp │ │ │ ├── BookmarksMainMenu.h │ │ │ ├── BookmarksToolbar.cpp │ │ │ ├── BookmarksToolbar.h │ │ │ ├── ManageBookmarksDialog.cpp │ │ │ ├── ManageBookmarksDialog.h │ │ │ ├── OrganizeBookmarksContextMenu.cpp │ │ │ ├── OrganizeBookmarksContextMenu.h │ │ │ ├── OrganizeBookmarksContextMenuDelegate.h │ │ │ └── Views │ │ │ ├── BookmarksToolbarView.cpp │ │ │ └── BookmarksToolbarView.h │ ├── BrowserCommandController.cpp │ ├── BrowserCommandController.h │ ├── BrowserCommandTarget.h │ ├── BrowserCommandTargetManager.cpp │ ├── BrowserCommandTargetManager.h │ ├── BrowserList.cpp │ ├── BrowserList.h │ ├── BrowserPane.cpp │ ├── BrowserPane.h │ ├── BrowserWindow.cpp │ ├── BrowserWindow.h │ ├── ChangeNotifyMode.h │ ├── ClangCLLibs.cpp │ ├── ClangCLLibs.h │ ├── ClipboardOperations.cpp │ ├── ClipboardOperations.h │ ├── ColorProvider.h │ ├── ColorRule.cpp │ ├── ColorRule.h │ ├── ColorRuleEditorDialog.cpp │ ├── ColorRuleEditorDialog.h │ ├── ColorRuleListView.cpp │ ├── ColorRuleListView.h │ ├── ColorRuleModel.h │ ├── ColorRuleModelFactory.cpp │ ├── ColorRuleModelFactory.h │ ├── ColorRuleRegistryStorage.cpp │ ├── ColorRuleRegistryStorage.h │ ├── ColorRuleXmlStorage.cpp │ ├── ColorRuleXmlStorage.h │ ├── ColumnRegistryStorage.cpp │ ├── ColumnRegistryStorage.h │ ├── ColumnStorage.cpp │ ├── ColumnStorage.h │ ├── ColumnXmlStorage.cpp │ ├── ColumnXmlStorage.h │ ├── ComStaThreadPoolExecutor.cpp │ ├── ComStaThreadPoolExecutor.h │ ├── CommandLine.cpp │ ├── CommandLine.h │ ├── CommandLineSplitter.cpp │ ├── CommandLineSplitter.h │ ├── Config.h │ ├── ConfigRegistryStorage.cpp │ ├── ConfigRegistryStorage.h │ ├── ConfigXmlStorage.cpp │ ├── ConfigXmlStorage.h │ ├── CoreInterface.h │ ├── CrashHandlerHelper.cpp │ ├── CrashHandlerHelper.h │ ├── CustomFont.cpp │ ├── CustomFont.h │ ├── CustomFontStorage.cpp │ ├── CustomFontStorage.h │ ├── CustomizeColorsDialog.cpp │ ├── CustomizeColorsDialog.h │ ├── DarkModeColorProvider.cpp │ ├── DarkModeColorProvider.h │ ├── DarkModeManager.cpp │ ├── DarkModeManager.h │ ├── DefaultAccelerators.cpp │ ├── DefaultAccelerators.h │ ├── DefaultColumnRegistryStorage.cpp │ ├── DefaultColumnRegistryStorage.h │ ├── DefaultColumnXmlStorage.cpp │ ├── DefaultColumnXmlStorage.h │ ├── DefaultColumns.h │ ├── DefaultSettingsOptionsPage.cpp │ ├── DefaultSettingsOptionsPage.h │ ├── DefaultToolbarButtons.h │ ├── DestroyFilesDialog.cpp │ ├── DestroyFilesDialog.h │ ├── DialogConstants.h │ ├── DialogHelper.cpp │ ├── DialogHelper.h │ ├── DialogStorageHelper.cpp │ ├── DialogStorageHelper.h │ ├── DirectoryOperationsHelper.cpp │ ├── DirectoryOperationsHelper.h │ ├── DirectoryWatcher.h │ ├── DirectoryWatcherFactory.h │ ├── DirectoryWatcherFactoryImpl.cpp │ ├── DirectoryWatcherFactoryImpl.h │ ├── DisplayColoursDialog.cpp │ ├── DisplayColoursDialog.h │ ├── DisplayWindow.cpp │ ├── DisplayWindow │ │ ├── DisplayWindow.cpp │ │ ├── DisplayWindow.h │ │ └── MsgHandler.cpp │ ├── DisplayWindowDefaults.h │ ├── DriveEnumerator.h │ ├── DriveEnumeratorImpl.cpp │ ├── DriveEnumeratorImpl.h │ ├── DriveModel.cpp │ ├── DriveModel.h │ ├── DriveWatcher.cpp │ ├── DriveWatcher.h │ ├── DriveWatcherImpl.cpp │ ├── DriveWatcherImpl.h │ ├── DrivesToolbar.cpp │ ├── DrivesToolbar.h │ ├── DrivesToolbarView.cpp │ ├── DrivesToolbarView.h │ ├── EventScope.cpp │ ├── EventScope.h │ ├── EventSwitcher.cpp │ ├── EventWindow.cpp │ ├── EventWindow.h │ ├── ExitCode.h │ ├── Explorer++.args.json │ ├── Explorer++.cpp │ ├── Explorer++.exe.manifest │ ├── Explorer++.h │ ├── Explorer++.rc │ ├── Explorer++.vcxproj │ ├── Explorer++.vcxproj.filters │ ├── Explorer++Main.rc │ ├── Explorer++VersionInfo.h │ ├── Explorer++VersionInfo.rc │ ├── Explorer++_NoTranslation.rc │ ├── Explorer++_internal.h │ ├── Feature.h │ ├── FeatureList.cpp │ ├── FeatureList.h │ ├── FileOperations.cpp │ ├── FileOperations.h │ ├── FileProgressSink.cpp │ ├── FileProgressSink.h │ ├── FileSelectionTests.cpp │ ├── FileSystemWatcher.cpp │ ├── FileSystemWatcher.h │ ├── FilesFoldersOptionsPage.cpp │ ├── FilesFoldersOptionsPage.h │ ├── FilterDialog.cpp │ ├── FilterDialog.h │ ├── FolderView.cpp │ ├── FolderView.h │ ├── FontHelper.cpp │ ├── FontHelper.h │ ├── FontsOptionsPage.cpp │ ├── FontsOptionsPage.h │ ├── FrequentLocationsMenu.cpp │ ├── FrequentLocationsMenu.h │ ├── FrequentLocationsModel.cpp │ ├── FrequentLocationsModel.h │ ├── FrequentLocationsRegistryStorage.cpp │ ├── FrequentLocationsRegistryStorage.h │ ├── FrequentLocationsStorageHelper.h │ ├── FrequentLocationsTracker.cpp │ ├── FrequentLocationsTracker.h │ ├── FrequentLocationsXmlStorage.cpp │ ├── FrequentLocationsXmlStorage.h │ ├── GeneralOptionsPage.cpp │ ├── GeneralOptionsPage.h │ ├── HandleWindowState.cpp │ ├── HistoryMenu.cpp │ ├── HistoryMenu.h │ ├── HistoryModel.cpp │ ├── HistoryModel.h │ ├── HistoryTracker.cpp │ ├── HistoryTracker.h │ ├── HolderWindow.cpp │ ├── HolderWindow.h │ ├── IDropFilesCallback.cpp │ ├── IDropFilesCallback.h │ ├── Icon.h │ ├── IconFetcher.h │ ├── IconFetcherImpl.cpp │ ├── IconFetcherImpl.h │ ├── IconMappings.h │ ├── IconModel.h │ ├── IconSet.h │ ├── IconUpdateCallback.h │ ├── InsertMarkPosition.h │ ├── ItemStateOp.h │ ├── LabelEditHandler.cpp │ ├── LabelEditHandler.h │ ├── LanguageHelper.cpp │ ├── LanguageHelper.h │ ├── LayoutDefaults.cpp │ ├── LayoutDefaults.h │ ├── ListView.cpp │ ├── ListView.h │ ├── ListViewColumn.h │ ├── ListViewColumnModel.cpp │ ├── ListViewColumnModel.h │ ├── ListViewDelegate.h │ ├── ListViewHandler.cpp │ ├── ListViewItem.h │ ├── ListViewModel.cpp │ ├── ListViewModel.h │ ├── Literals.h │ ├── LocationVisitInfo.cpp │ ├── LocationVisitInfo.h │ ├── MainFontSetter.cpp │ ├── MainFontSetter.h │ ├── MainMenu.cpp │ ├── MainMenuHandler.cpp │ ├── MainMenuSubMenuView.cpp │ ├── MainMenuSubMenuView.h │ ├── MainRebar.cpp │ ├── MainRebarRegistryStorage.cpp │ ├── MainRebarRegistryStorage.h │ ├── MainRebarStorage.h │ ├── MainRebarView.cpp │ ├── MainRebarView.h │ ├── MainRebarXmlStorage.cpp │ ├── MainRebarXmlStorage.h │ ├── MainResource.h │ ├── MainTabView.cpp │ ├── MainTabView.h │ ├── MainTabViewImageListManager.cpp │ ├── MainTabViewImageListManager.h │ ├── MainToolbar.cpp │ ├── MainToolbar.h │ ├── MainToolbarButtons.h │ ├── MainToolbarStorage.cpp │ ├── MainToolbarStorage.h │ ├── MainWindow.cpp │ ├── MainWindow.h │ ├── MainWndSwitch.cpp │ ├── MassRenameDialog.cpp │ ├── MassRenameDialog.h │ ├── MenuBase.cpp │ ├── MenuBase.h │ ├── MenuRanges.h │ ├── MenuView.cpp │ ├── MenuView.h │ ├── MergeFilesDialog.cpp │ ├── MergeFilesDialog.h │ ├── Misc.cpp │ ├── ModelessDialogHelper.cpp │ ├── ModelessDialogHelper.h │ ├── ModelessDialogList.cpp │ ├── ModelessDialogList.h │ ├── MouseEvent.h │ ├── MsgHandler.cpp │ ├── NavigationController.h │ ├── NavigationHelper.cpp │ ├── NavigationHelper.h │ ├── NewMenuClient.cpp │ ├── NewMenuClient.h │ ├── NoOpMenuHelpTextHost.cpp │ ├── NoOpMenuHelpTextHost.h │ ├── NoTranslationResource.h │ ├── OneShotTimer.cpp │ ├── OneShotTimer.h │ ├── OneShotTimerManager.cpp │ ├── OneShotTimerManager.h │ ├── OpenItemLocationContextMenuDelegate.cpp │ ├── OpenItemLocationContextMenuDelegate.h │ ├── OpenItemsContextMenuDelegate.cpp │ ├── OpenItemsContextMenuDelegate.h │ ├── OptionsDialog.cpp │ ├── OptionsDialog.h │ ├── OptionsPage.cpp │ ├── OptionsPage.h │ ├── PasteSymLinksClient.cpp │ ├── PasteSymLinksClient.h │ ├── PasteSymLinksServer.cpp │ ├── PasteSymLinksServer.h │ ├── PasteSymLinksServerClientBase.h │ ├── PlatformContext.h │ ├── PlatformContextImpl.cpp │ ├── PlatformContextImpl.h │ ├── PluginInitialization.cpp │ ├── PluginInterface.cpp │ ├── PluginInterface.h │ ├── Plugins │ │ ├── AcceleratorParser.cpp │ │ ├── AcceleratorParser.h │ │ ├── ApiBinding.cpp │ │ ├── ApiBinding.h │ │ ├── CommandApi │ │ │ └── Events │ │ │ │ ├── CommandInvoked.cpp │ │ │ │ └── CommandInvoked.h │ │ ├── Event.cpp │ │ ├── Event.h │ │ ├── LuaPlugin.cpp │ │ ├── LuaPlugin.h │ │ ├── Manifest.cpp │ │ ├── Manifest.h │ │ ├── MenuApi.cpp │ │ ├── MenuApi.h │ │ ├── PluginCommandManager.cpp │ │ ├── PluginCommandManager.h │ │ ├── PluginManager.cpp │ │ ├── PluginManager.h │ │ ├── PluginMenuManager.cpp │ │ ├── PluginMenuManager.h │ │ └── TabsApi │ │ │ ├── Events │ │ │ ├── TabCreated.cpp │ │ │ ├── TabCreated.h │ │ │ ├── TabMoved.cpp │ │ │ ├── TabMoved.h │ │ │ ├── TabRemoved.cpp │ │ │ ├── TabRemoved.h │ │ │ ├── TabUpdated.cpp │ │ │ └── TabUpdated.h │ │ │ ├── TabProperties.cpp │ │ │ ├── TabProperties.h │ │ │ ├── TabsApi.cpp │ │ │ └── TabsApi.h │ ├── PopupMenuView.cpp │ ├── PopupMenuView.h │ ├── PreservedTab.cpp │ ├── PreservedTab.h │ ├── ProcessManager.cpp │ ├── ProcessManager.h │ ├── RebarView.cpp │ ├── RebarView.h │ ├── RegistryAppStorage.cpp │ ├── RegistryAppStorage.h │ ├── RegistryAppStorageFactory.cpp │ ├── RegistryAppStorageFactory.h │ ├── RenameTabDialog.cpp │ ├── RenameTabDialog.h │ ├── ResourceHelper.cpp │ ├── ResourceHelper.h │ ├── ResourceIconModel.cpp │ ├── ResourceIconModel.h │ ├── ResourceLoader.h │ ├── Runtime.cpp │ ├── Runtime.h │ ├── RuntimeHelper.cpp │ ├── RuntimeHelper.h │ ├── ScopedBrowserCommandTarget.cpp │ ├── ScopedBrowserCommandTarget.h │ ├── ScriptingDialog.cpp │ ├── ScriptingDialog.h │ ├── SearchDialog.cpp │ ├── SearchDialog.h │ ├── SearchTabsDialog.cpp │ ├── SearchTabsDialog.h │ ├── SearchTabsModel.cpp │ ├── SearchTabsModel.h │ ├── SelectColumnsDialog.cpp │ ├── SelectColumnsDialog.h │ ├── SelectionType.h │ ├── ServiceProvider.cpp │ ├── ServiceProvider.h │ ├── SetDefaultColumnsDialog.cpp │ ├── SetDefaultColumnsDialog.h │ ├── SetFileAttributesDialog.cpp │ ├── SetFileAttributesDialog.h │ ├── ShellBrowser │ │ ├── BrowsingHandler.cpp │ │ ├── ColumnDataRetrieval.cpp │ │ ├── ColumnDataRetrieval.h │ │ ├── ColumnHelper.cpp │ │ ├── ColumnHelper.h │ │ ├── ColumnManager.cpp │ │ ├── Columns.h │ │ ├── DirectoryModificationHandler.cpp │ │ ├── DocumentServiceProvider.cpp │ │ ├── DocumentServiceProvider.h │ │ ├── DropTarget.cpp │ │ ├── Filtering.cpp │ │ ├── FolderSettings.h │ │ ├── GroupManager.cpp │ │ ├── HandleThumbnails.cpp │ │ ├── HistoryEntry.cpp │ │ ├── HistoryEntry.h │ │ ├── ItemData.h │ │ ├── ListView.cpp │ │ ├── NavigateParams.h │ │ ├── NavigationEvents.cpp │ │ ├── NavigationEvents.h │ │ ├── NavigationManager.cpp │ │ ├── NavigationManager.h │ │ ├── NavigationRequest.cpp │ │ ├── NavigationRequest.h │ │ ├── NavigationRequestDelegate.h │ │ ├── PreservedHistoryEntry.cpp │ │ ├── PreservedHistoryEntry.h │ │ ├── PreservedShellBrowser.cpp │ │ ├── PreservedShellBrowser.h │ │ ├── ShellBrowser.cpp │ │ ├── ShellBrowser.h │ │ ├── ShellBrowserContextMenuDelegate.cpp │ │ ├── ShellBrowserContextMenuDelegate.h │ │ ├── ShellBrowserEvents.cpp │ │ ├── ShellBrowserEvents.h │ │ ├── ShellBrowserFactory.h │ │ ├── ShellBrowserFactoryImpl.cpp │ │ ├── ShellBrowserFactoryImpl.h │ │ ├── ShellBrowserImpl.cpp │ │ ├── ShellBrowserImpl.h │ │ ├── ShellNavigationController.cpp │ │ ├── ShellNavigationController.h │ │ ├── SortHelper.cpp │ │ ├── SortHelper.h │ │ ├── SortManager.cpp │ │ ├── SortModes.h │ │ ├── TileView.cpp │ │ ├── ViewModes.cpp │ │ ├── ViewModes.h │ │ ├── WebBrowserApp.cpp │ │ └── WebBrowserApp.h │ ├── ShellEnumerator.h │ ├── ShellEnumeratorImpl.cpp │ ├── ShellEnumeratorImpl.h │ ├── ShellIconLoader.h │ ├── ShellIconLoaderImpl.cpp │ ├── ShellIconLoaderImpl.h │ ├── ShellIconModel.cpp │ ├── ShellIconModel.h │ ├── ShellItemsMenu.cpp │ ├── ShellItemsMenu.h │ ├── ShellTreeView │ │ ├── DirectoryModificationHandler.cpp │ │ ├── DropTarget.cpp │ │ ├── ShellTreeNode.cpp │ │ ├── ShellTreeNode.h │ │ ├── ShellTreeView.cpp │ │ ├── ShellTreeView.h │ │ ├── ShellTreeViewContextMenuDelegate.cpp │ │ └── ShellTreeViewContextMenuDelegate.h │ ├── ShellView.cpp │ ├── ShellView.h │ ├── ShellWatcher.cpp │ ├── ShellWatcher.h │ ├── ShellWatcherManager.cpp │ ├── ShellWatcherManager.h │ ├── SortMenuBuilder.cpp │ ├── SortMenuBuilder.h │ ├── SortModeMenuMappings.cpp │ ├── SortModeMenuMappings.h │ ├── SplitFileDialog.cpp │ ├── SplitFileDialog.h │ ├── StartupCommandLineProcessor.cpp │ ├── StartupCommandLineProcessor.h │ ├── StartupFoldersRegistryStorage.cpp │ ├── StartupFoldersRegistryStorage.h │ ├── StartupFoldersXmlStorage.cpp │ ├── StartupFoldersXmlStorage.h │ ├── StartupOptionsPage.cpp │ ├── StartupOptionsPage.h │ ├── StatusBar.cpp │ ├── StatusBar.h │ ├── StatusBarView.cpp │ ├── StatusBarView.h │ ├── Storage.cpp │ ├── Storage.h │ ├── SystemFontHelper.cpp │ ├── SystemFontHelper.h │ ├── Tab.cpp │ ├── Tab.h │ ├── TabBacking.cpp │ ├── TabBacking.h │ ├── TabContainer.cpp │ ├── TabContainer.h │ ├── TabContainerBackgroundContextMenu.cpp │ ├── TabContainerBackgroundContextMenu.h │ ├── TabContextMenu.cpp │ ├── TabContextMenu.h │ ├── TabEvents.cpp │ ├── TabEvents.h │ ├── TabHandler.cpp │ ├── TabHistoryMenu.cpp │ ├── TabHistoryMenu.h │ ├── TabList.cpp │ ├── TabList.h │ ├── TabParentItemsMenu.cpp │ ├── TabParentItemsMenu.h │ ├── TabRegistryStorage.cpp │ ├── TabRegistryStorage.h │ ├── TabRestorer.cpp │ ├── TabRestorer.h │ ├── TabRestorerMenu.cpp │ ├── TabRestorerMenu.h │ ├── TabStorage.h │ ├── TabView.cpp │ ├── TabView.h │ ├── TabViewDelegate.h │ ├── TabXmlStorage.cpp │ ├── TabXmlStorage.h │ ├── TabsOptionsPage.cpp │ ├── TabsOptionsPage.h │ ├── TaskbarThumbnails.cpp │ ├── TaskbarThumbnails.h │ ├── TestHelper.cpp │ ├── TestHelper.h │ ├── Theme.cpp │ ├── Theme.h │ ├── ThemeManager.cpp │ ├── ThemeManager.h │ ├── ThemeWindowTracker.cpp │ ├── ThemeWindowTracker.h │ ├── ThemedTabControlPainter.cpp │ ├── ThemedTabControlPainter.h │ ├── ThirdPartyCreditsDialog.cpp │ ├── ThirdPartyCreditsDialog.h │ ├── ToolbarContextMenu.cpp │ ├── ToolbarContextMenu.h │ ├── ToolbarHelper.cpp │ ├── ToolbarHelper.h │ ├── ToolbarView.cpp │ ├── ToolbarView.h │ ├── TreeView.cpp │ ├── TreeView.h │ ├── TreeViewAdapter.cpp │ ├── TreeViewAdapter.h │ ├── TreeViewDelegate.h │ ├── TreeViewNode.cpp │ ├── TreeViewNode.h │ ├── UIThreadExecutor.cpp │ ├── UIThreadExecutor.h │ ├── UpdateCheckDialog.cpp │ ├── UpdateCheckDialog.h │ ├── ValueWrapper.h │ ├── Version.cpp │ ├── Version.h │ ├── VersionConstants.h │ ├── VersionHelper.cpp │ ├── VersionHelper.h │ ├── ViewModeHelper.h │ ├── ViewsMenuBuilder.cpp │ ├── ViewsMenuBuilder.h │ ├── WildcardSelectDialog.cpp │ ├── WildcardSelectDialog.h │ ├── Win32ResourceLoader.cpp │ ├── Win32ResourceLoader.h │ ├── WinMain.cpp │ ├── WindowOptionsPage.cpp │ ├── WindowOptionsPage.h │ ├── WindowRegistryStorage.cpp │ ├── WindowRegistryStorage.h │ ├── WindowStorage.cpp │ ├── WindowStorage.h │ ├── WindowXmlStorage.cpp │ ├── WindowXmlStorage.h │ ├── XmlAppStorage.cpp │ ├── XmlAppStorage.h │ ├── XmlAppStorageFactory.cpp │ ├── XmlAppStorageFactory.h │ ├── res │ │ ├── Display Window.ico │ │ ├── Explorer++.ico │ │ ├── No Preview Available.bmp │ │ └── icons │ │ │ ├── color │ │ │ ├── 16x16 │ │ │ │ ├── add-bookmark.png │ │ │ │ ├── arrow-right.png │ │ │ │ ├── back.png │ │ │ │ ├── bookmarks.png │ │ │ │ ├── close-button.png │ │ │ │ ├── close-tab.png │ │ │ │ ├── command-line-admin.png │ │ │ │ ├── command-line.png │ │ │ │ ├── copy-to.png │ │ │ │ ├── copy.png │ │ │ │ ├── customize-colors.png │ │ │ │ ├── cut.png │ │ │ │ ├── delete-permanently.png │ │ │ │ ├── delete.png │ │ │ │ ├── filter.png │ │ │ │ ├── folder-tree.png │ │ │ │ ├── folder.png │ │ │ │ ├── forward.png │ │ │ │ ├── help.png │ │ │ │ ├── lock.png │ │ │ │ ├── mass-rename.png │ │ │ │ ├── merge-files.png │ │ │ │ ├── move-to.png │ │ │ │ ├── new-folder.png │ │ │ │ ├── new-tab.png │ │ │ │ ├── options.png │ │ │ │ ├── paste-shortcut.png │ │ │ │ ├── paste.png │ │ │ │ ├── properties.png │ │ │ │ ├── refresh.png │ │ │ │ ├── rename.png │ │ │ │ ├── search.png │ │ │ │ ├── select-columns.png │ │ │ │ ├── split-files.png │ │ │ │ ├── undo.png │ │ │ │ ├── up.png │ │ │ │ └── views.png │ │ │ ├── 24x24 │ │ │ │ ├── add-bookmark.png │ │ │ │ ├── arrow-right.png │ │ │ │ ├── back.png │ │ │ │ ├── bookmarks.png │ │ │ │ ├── close-button.png │ │ │ │ ├── close-tab.png │ │ │ │ ├── command-line-admin.png │ │ │ │ ├── command-line.png │ │ │ │ ├── copy-to.png │ │ │ │ ├── copy.png │ │ │ │ ├── customize-colors.png │ │ │ │ ├── cut.png │ │ │ │ ├── delete-permanently.png │ │ │ │ ├── delete.png │ │ │ │ ├── filter.png │ │ │ │ ├── folder-tree.png │ │ │ │ ├── folder.png │ │ │ │ ├── forward.png │ │ │ │ ├── help.png │ │ │ │ ├── lock.png │ │ │ │ ├── mass-rename.png │ │ │ │ ├── merge-files.png │ │ │ │ ├── move-to.png │ │ │ │ ├── new-folder.png │ │ │ │ ├── new-tab.png │ │ │ │ ├── options.png │ │ │ │ ├── paste-shortcut.png │ │ │ │ ├── paste.png │ │ │ │ ├── properties.png │ │ │ │ ├── refresh.png │ │ │ │ ├── rename.png │ │ │ │ ├── search.png │ │ │ │ ├── select-columns.png │ │ │ │ ├── split-files.png │ │ │ │ ├── undo.png │ │ │ │ ├── up.png │ │ │ │ └── views.png │ │ │ ├── 32x32 │ │ │ │ ├── add-bookmark.png │ │ │ │ ├── arrow-right.png │ │ │ │ ├── back.png │ │ │ │ ├── bookmarks.png │ │ │ │ ├── close-button.png │ │ │ │ ├── close-tab.png │ │ │ │ ├── command-line-admin.png │ │ │ │ ├── command-line.png │ │ │ │ ├── copy-to.png │ │ │ │ ├── copy.png │ │ │ │ ├── customize-colors.png │ │ │ │ ├── cut.png │ │ │ │ ├── delete-permanently.png │ │ │ │ ├── delete.png │ │ │ │ ├── filter.png │ │ │ │ ├── folder-tree.png │ │ │ │ ├── folder.png │ │ │ │ ├── forward.png │ │ │ │ ├── help.png │ │ │ │ ├── lock.png │ │ │ │ ├── mass-rename.png │ │ │ │ ├── merge-files.png │ │ │ │ ├── move-to.png │ │ │ │ ├── new-folder.png │ │ │ │ ├── new-tab.png │ │ │ │ ├── options.png │ │ │ │ ├── paste-shortcut.png │ │ │ │ ├── paste.png │ │ │ │ ├── properties.png │ │ │ │ ├── refresh.png │ │ │ │ ├── rename.png │ │ │ │ ├── search.png │ │ │ │ ├── select-columns.png │ │ │ │ ├── split-files.png │ │ │ │ ├── undo.png │ │ │ │ ├── up.png │ │ │ │ └── views.png │ │ │ └── 48x48 │ │ │ │ ├── add-bookmark.png │ │ │ │ ├── arrow-right.png │ │ │ │ ├── back.png │ │ │ │ ├── bookmarks.png │ │ │ │ ├── close-button.png │ │ │ │ ├── close-tab.png │ │ │ │ ├── command-line-admin.png │ │ │ │ ├── command-line.png │ │ │ │ ├── copy-to.png │ │ │ │ ├── copy.png │ │ │ │ ├── customize-colors.png │ │ │ │ ├── cut.png │ │ │ │ ├── delete-permanently.png │ │ │ │ ├── delete.png │ │ │ │ ├── filter.png │ │ │ │ ├── folder-tree.png │ │ │ │ ├── folder.png │ │ │ │ ├── forward.png │ │ │ │ ├── help.png │ │ │ │ ├── lock.png │ │ │ │ ├── mass-rename.png │ │ │ │ ├── merge-files.png │ │ │ │ ├── move-to.png │ │ │ │ ├── new-folder.png │ │ │ │ ├── new-tab.png │ │ │ │ ├── options.png │ │ │ │ ├── paste-shortcut.png │ │ │ │ ├── paste.png │ │ │ │ ├── properties.png │ │ │ │ ├── refresh.png │ │ │ │ ├── rename.png │ │ │ │ ├── search.png │ │ │ │ ├── select-columns.png │ │ │ │ ├── split-files.png │ │ │ │ ├── undo.png │ │ │ │ ├── up.png │ │ │ │ └── views.png │ │ │ ├── fluent-ui │ │ │ ├── 16x16 │ │ │ │ ├── add-bookmark.png │ │ │ │ ├── arrow-right.png │ │ │ │ ├── back.png │ │ │ │ ├── bookmarks.png │ │ │ │ ├── close-button.png │ │ │ │ ├── close-tab.png │ │ │ │ ├── command-line-admin.png │ │ │ │ ├── command-line.png │ │ │ │ ├── copy-to.png │ │ │ │ ├── copy.png │ │ │ │ ├── customize-colors.png │ │ │ │ ├── cut.png │ │ │ │ ├── delete-permanently.png │ │ │ │ ├── delete.png │ │ │ │ ├── filter.png │ │ │ │ ├── folder-tree.png │ │ │ │ ├── folder.png │ │ │ │ ├── forward.png │ │ │ │ ├── help.png │ │ │ │ ├── lock.png │ │ │ │ ├── mass-rename.png │ │ │ │ ├── merge-files.png │ │ │ │ ├── move-to.png │ │ │ │ ├── new-folder.png │ │ │ │ ├── new-tab.png │ │ │ │ ├── options.png │ │ │ │ ├── paste-shortcut.png │ │ │ │ ├── paste.png │ │ │ │ ├── properties.png │ │ │ │ ├── refresh.png │ │ │ │ ├── rename.png │ │ │ │ ├── search.png │ │ │ │ ├── select-columns.png │ │ │ │ ├── split-files.png │ │ │ │ ├── undo.png │ │ │ │ ├── up.png │ │ │ │ └── views.png │ │ │ ├── 24x24 │ │ │ │ ├── add-bookmark.png │ │ │ │ ├── arrow-right.png │ │ │ │ ├── back.png │ │ │ │ ├── bookmarks.png │ │ │ │ ├── close-button.png │ │ │ │ ├── close-tab.png │ │ │ │ ├── command-line-admin.png │ │ │ │ ├── command-line.png │ │ │ │ ├── copy-to.png │ │ │ │ ├── copy.png │ │ │ │ ├── customize-colors.png │ │ │ │ ├── cut.png │ │ │ │ ├── delete-permanently.png │ │ │ │ ├── delete.png │ │ │ │ ├── filter.png │ │ │ │ ├── folder-tree.png │ │ │ │ ├── folder.png │ │ │ │ ├── forward.png │ │ │ │ ├── help.png │ │ │ │ ├── lock.png │ │ │ │ ├── mass-rename.png │ │ │ │ ├── merge-files.png │ │ │ │ ├── move-to.png │ │ │ │ ├── new-folder.png │ │ │ │ ├── new-tab.png │ │ │ │ ├── options.png │ │ │ │ ├── paste-shortcut.png │ │ │ │ ├── paste.png │ │ │ │ ├── properties.png │ │ │ │ ├── refresh.png │ │ │ │ ├── rename.png │ │ │ │ ├── search.png │ │ │ │ ├── select-columns.png │ │ │ │ ├── split-files.png │ │ │ │ ├── undo.png │ │ │ │ ├── up.png │ │ │ │ └── views.png │ │ │ ├── 32x32 │ │ │ │ ├── add-bookmark.png │ │ │ │ ├── arrow-right.png │ │ │ │ ├── back.png │ │ │ │ ├── bookmarks.png │ │ │ │ ├── close-button.png │ │ │ │ ├── close-tab.png │ │ │ │ ├── command-line-admin.png │ │ │ │ ├── command-line.png │ │ │ │ ├── copy-to.png │ │ │ │ ├── copy.png │ │ │ │ ├── customize-colors.png │ │ │ │ ├── cut.png │ │ │ │ ├── delete-permanently.png │ │ │ │ ├── delete.png │ │ │ │ ├── filter.png │ │ │ │ ├── folder-tree.png │ │ │ │ ├── folder.png │ │ │ │ ├── forward.png │ │ │ │ ├── help.png │ │ │ │ ├── lock.png │ │ │ │ ├── mass-rename.png │ │ │ │ ├── merge-files.png │ │ │ │ ├── move-to.png │ │ │ │ ├── new-folder.png │ │ │ │ ├── new-tab.png │ │ │ │ ├── options.png │ │ │ │ ├── paste-shortcut.png │ │ │ │ ├── paste.png │ │ │ │ ├── properties.png │ │ │ │ ├── refresh.png │ │ │ │ ├── rename.png │ │ │ │ ├── search.png │ │ │ │ ├── select-columns.png │ │ │ │ ├── split-files.png │ │ │ │ ├── undo.png │ │ │ │ ├── up.png │ │ │ │ └── views.png │ │ │ └── 48x48 │ │ │ │ ├── add-bookmark.png │ │ │ │ ├── arrow-right.png │ │ │ │ ├── back.png │ │ │ │ ├── bookmarks.png │ │ │ │ ├── close-button.png │ │ │ │ ├── close-tab.png │ │ │ │ ├── command-line-admin.png │ │ │ │ ├── command-line.png │ │ │ │ ├── copy-to.png │ │ │ │ ├── copy.png │ │ │ │ ├── customize-colors.png │ │ │ │ ├── cut.png │ │ │ │ ├── delete-permanently.png │ │ │ │ ├── delete.png │ │ │ │ ├── filter.png │ │ │ │ ├── folder-tree.png │ │ │ │ ├── folder.png │ │ │ │ ├── forward.png │ │ │ │ ├── help.png │ │ │ │ ├── lock.png │ │ │ │ ├── mass-rename.png │ │ │ │ ├── merge-files.png │ │ │ │ ├── move-to.png │ │ │ │ ├── new-folder.png │ │ │ │ ├── new-tab.png │ │ │ │ ├── options.png │ │ │ │ ├── paste-shortcut.png │ │ │ │ ├── paste.png │ │ │ │ ├── properties.png │ │ │ │ ├── refresh.png │ │ │ │ ├── rename.png │ │ │ │ ├── search.png │ │ │ │ ├── select-columns.png │ │ │ │ ├── split-files.png │ │ │ │ ├── undo.png │ │ │ │ ├── up.png │ │ │ │ └── views.png │ │ │ └── windows-10 │ │ │ ├── 16x16 │ │ │ ├── add-bookmark.png │ │ │ ├── arrow-right.png │ │ │ ├── back.png │ │ │ ├── bookmarks.png │ │ │ ├── close-button.png │ │ │ ├── close-tab.png │ │ │ ├── command-line-admin.png │ │ │ ├── command-line.png │ │ │ ├── copy-to.png │ │ │ ├── copy.png │ │ │ ├── customize-colors.png │ │ │ ├── cut.png │ │ │ ├── delete-permanently.png │ │ │ ├── delete.png │ │ │ ├── filter.png │ │ │ ├── folder-tree.png │ │ │ ├── folder.png │ │ │ ├── forward.png │ │ │ ├── help.png │ │ │ ├── lock.png │ │ │ ├── mass-rename.png │ │ │ ├── merge-files.png │ │ │ ├── move-to.png │ │ │ ├── new-folder.png │ │ │ ├── new-tab.png │ │ │ ├── options.png │ │ │ ├── paste-shortcut.png │ │ │ ├── paste.png │ │ │ ├── properties.png │ │ │ ├── refresh.png │ │ │ ├── rename.png │ │ │ ├── search.png │ │ │ ├── select-columns.png │ │ │ ├── split-files.png │ │ │ ├── undo.png │ │ │ ├── up.png │ │ │ └── views.png │ │ │ ├── 24x24 │ │ │ ├── add-bookmark.png │ │ │ ├── arrow-right.png │ │ │ ├── back.png │ │ │ ├── bookmarks.png │ │ │ ├── close-button.png │ │ │ ├── close-tab.png │ │ │ ├── command-line-admin.png │ │ │ ├── command-line.png │ │ │ ├── copy-to.png │ │ │ ├── copy.png │ │ │ ├── customize-colors.png │ │ │ ├── cut.png │ │ │ ├── delete-permanently.png │ │ │ ├── delete.png │ │ │ ├── filter.png │ │ │ ├── folder-tree.png │ │ │ ├── folder.png │ │ │ ├── forward.png │ │ │ ├── help.png │ │ │ ├── lock.png │ │ │ ├── mass-rename.png │ │ │ ├── merge-files.png │ │ │ ├── move-to.png │ │ │ ├── new-folder.png │ │ │ ├── new-tab.png │ │ │ ├── options.png │ │ │ ├── paste-shortcut.png │ │ │ ├── paste.png │ │ │ ├── properties.png │ │ │ ├── refresh.png │ │ │ ├── rename.png │ │ │ ├── search.png │ │ │ ├── select-columns.png │ │ │ ├── split-files.png │ │ │ ├── undo.png │ │ │ ├── up.png │ │ │ └── views.png │ │ │ ├── 32x32 │ │ │ ├── add-bookmark.png │ │ │ ├── arrow-right.png │ │ │ ├── back.png │ │ │ ├── bookmarks.png │ │ │ ├── close-button.png │ │ │ ├── close-tab.png │ │ │ ├── command-line-admin.png │ │ │ ├── command-line.png │ │ │ ├── copy-to.png │ │ │ ├── copy.png │ │ │ ├── customize-colors.png │ │ │ ├── cut.png │ │ │ ├── delete-permanently.png │ │ │ ├── delete.png │ │ │ ├── filter.png │ │ │ ├── folder-tree.png │ │ │ ├── folder.png │ │ │ ├── forward.png │ │ │ ├── help.png │ │ │ ├── lock.png │ │ │ ├── mass-rename.png │ │ │ ├── merge-files.png │ │ │ ├── move-to.png │ │ │ ├── new-folder.png │ │ │ ├── new-tab.png │ │ │ ├── options.png │ │ │ ├── paste-shortcut.png │ │ │ ├── paste.png │ │ │ ├── properties.png │ │ │ ├── refresh.png │ │ │ ├── rename.png │ │ │ ├── search.png │ │ │ ├── select-columns.png │ │ │ ├── split-files.png │ │ │ ├── undo.png │ │ │ ├── up.png │ │ │ └── views.png │ │ │ └── 48x48 │ │ │ ├── add-bookmark.png │ │ │ ├── arrow-right.png │ │ │ ├── back.png │ │ │ ├── bookmarks.png │ │ │ ├── close-button.png │ │ │ ├── close-tab.png │ │ │ ├── command-line-admin.png │ │ │ ├── command-line.png │ │ │ ├── copy-to.png │ │ │ ├── copy.png │ │ │ ├── customize-colors.png │ │ │ ├── cut.png │ │ │ ├── delete-permanently.png │ │ │ ├── delete.png │ │ │ ├── filter.png │ │ │ ├── folder-tree.png │ │ │ ├── folder.png │ │ │ ├── forward.png │ │ │ ├── help.png │ │ │ ├── lock.png │ │ │ ├── mass-rename.png │ │ │ ├── merge-files.png │ │ │ ├── move-to.png │ │ │ ├── new-folder.png │ │ │ ├── new-tab.png │ │ │ ├── options.png │ │ │ ├── paste-shortcut.png │ │ │ ├── paste.png │ │ │ ├── properties.png │ │ │ ├── refresh.png │ │ │ ├── rename.png │ │ │ ├── search.png │ │ │ ├── select-columns.png │ │ │ ├── split-files.png │ │ │ ├── undo.png │ │ │ ├── up.png │ │ │ └── views.png │ ├── resource.h │ ├── stdafx.cpp │ └── stdafx.h ├── Helper │ ├── AutoReset.h │ ├── Base64Wrapper.h │ ├── BaseWindow.cpp │ ├── BaseWindow.h │ ├── BetterEnumsWrapper.h │ ├── BulkClipboardWriter.cpp │ ├── BulkClipboardWriter.h │ ├── CachedIcons.cpp │ ├── CachedIcons.h │ ├── Clipboard.cpp │ ├── Clipboard.h │ ├── ClipboardHelper.cpp │ ├── ClipboardHelper.h │ ├── ClipboardStore.h │ ├── ClipboardWatcher.cpp │ ├── ClipboardWatcher.h │ ├── ComboBox.cpp │ ├── ComboBox.h │ ├── ComboBoxHelper.cpp │ ├── ComboBoxHelper.h │ ├── Console.cpp │ ├── Console.h │ ├── Controls.cpp │ ├── Controls.h │ ├── DataExchangeHelper.cpp │ ├── DataExchangeHelper.h │ ├── DataObjectImpl.cpp │ ├── DataObjectImpl.h │ ├── DataObjectWrapper.cpp │ ├── DataObjectWrapper.h │ ├── DetoursHelper.cpp │ ├── DetoursHelper.h │ ├── DialogSettings.cpp │ ├── DialogSettings.h │ ├── DisableUnaligned.h │ ├── DoubleBufferedPaint.cpp │ ├── DoubleBufferedPaint.h │ ├── DpiCompatibility.cpp │ ├── DpiCompatibility.h │ ├── DragDropHelper.cpp │ ├── DragDropHelper.h │ ├── DriveInfo.cpp │ ├── DriveInfo.h │ ├── DropHandler.cpp │ ├── DropHandler.h │ ├── DropSourceImpl.cpp │ ├── DropSourceImpl.h │ ├── DropTargetWindow.cpp │ ├── DropTargetWindow.h │ ├── EnumFormatEtcImpl.cpp │ ├── EnumFormatEtcImpl.h │ ├── FileActionHandler.cpp │ ├── FileActionHandler.h │ ├── FileDialogs.cpp │ ├── FileDialogs.h │ ├── FileOperations.cpp │ ├── FileOperations.h │ ├── FolderSize.cpp │ ├── FolderSize.h │ ├── GdiplusHelper.cpp │ ├── GdiplusHelper.h │ ├── Helper.cpp │ ├── Helper.h │ ├── Helper.vcxproj │ ├── Helper.vcxproj.filters │ ├── ImageHelper.cpp │ ├── ImageHelper.h │ ├── KeyboardState.h │ ├── KeyboardStateImpl.cpp │ ├── KeyboardStateImpl.h │ ├── ListViewHelper.cpp │ ├── ListViewHelper.h │ ├── MenuHelpTextHost.h │ ├── MenuHelper.cpp │ ├── MenuHelper.h │ ├── MessageForwarder.cpp │ ├── MessageForwarder.h │ ├── MessageWindowHelper.cpp │ ├── MessageWindowHelper.h │ ├── MovableModel.h │ ├── PassKey.h │ ├── Pidl.natvis │ ├── PidlHelper.cpp │ ├── PidlHelper.h │ ├── ProcessHelper.cpp │ ├── ProcessHelper.h │ ├── ReferenceCount.cpp │ ├── ReferenceCount.h │ ├── RegistrySettings.cpp │ ├── RegistrySettings.h │ ├── RemoveMode.h │ ├── ResizableDialogHelper.cpp │ ├── ResizableDialogHelper.h │ ├── ResourceHelper.cpp │ ├── ResourceHelper.h │ ├── RichEditHelper.cpp │ ├── RichEditHelper.h │ ├── ScopedBitmapLock.cpp │ ├── ScopedBitmapLock.h │ ├── ScopedRedrawDisabler.cpp │ ├── ScopedRedrawDisabler.h │ ├── ScopedStopSource.cpp │ ├── ScopedStopSource.h │ ├── ServiceProviderBase.cpp │ ├── ServiceProviderBase.h │ ├── SetDefaultFileManager.cpp │ ├── SetDefaultFileManager.h │ ├── ShellBackgroundContextMenu.cpp │ ├── ShellBackgroundContextMenu.h │ ├── ShellBackgroundContextMenuDelegate.cpp │ ├── ShellBackgroundContextMenuDelegate.h │ ├── ShellContextMenu.cpp │ ├── ShellContextMenu.h │ ├── ShellContextMenuBuilder.cpp │ ├── ShellContextMenuBuilder.h │ ├── ShellContextMenuDelegate.h │ ├── ShellContextMenuIdGenerator.cpp │ ├── ShellContextMenuIdGenerator.h │ ├── ShellContextMenuIdRemapper.cpp │ ├── ShellContextMenuIdRemapper.h │ ├── ShellDropTargetWindow.cpp │ ├── ShellDropTargetWindow.h │ ├── ShellHelper.cpp │ ├── ShellHelper.h │ ├── ShellItemContextMenu.cpp │ ├── ShellItemContextMenu.h │ ├── ShellItemContextMenuDelegate.h │ ├── SignalHelper.h │ ├── SignalWrapper.h │ ├── SortDirection.h │ ├── StringHelper.cpp │ ├── StringHelper.h │ ├── SystemClipboardStore.cpp │ ├── SystemClipboardStore.h │ ├── SystemClock.h │ ├── SystemClockImpl.cpp │ ├── SystemClockImpl.h │ ├── TabHelper.cpp │ ├── TabHelper.h │ ├── TimeHelper.cpp │ ├── TimeHelper.h │ ├── UniqueResources.cpp │ ├── UniqueResources.h │ ├── UniqueThreadId.cpp │ ├── UniqueThreadId.h │ ├── UniqueVariableSizeStruct.h │ ├── WeakPtr.h │ ├── WeakPtrFactory.h │ ├── WeakState.h │ ├── WilExtraTypes.cpp │ ├── WilExtraTypes.h │ ├── WinRTBaseWrapper.h │ ├── WinUserBackwardsCompatibility.h │ ├── WindowHelper.cpp │ ├── WindowHelper.h │ ├── WindowSubclass.cpp │ ├── WindowSubclass.h │ ├── XMLSettings.cpp │ ├── XMLSettings.h │ ├── stdafx.cpp │ └── stdafx.h ├── Installer │ ├── Explorer++.wxs │ ├── Installer.wixproj │ └── res │ │ └── gpl-3.0.rtf ├── TestExplorer++ │ ├── AcceleratorHelperTest.cpp │ ├── AcceleratorManagerTest.cpp │ ├── AcceleratorParserTest.cpp │ ├── AcceleratorTestHelper.cpp │ ├── AcceleratorTestHelper.h │ ├── AddressBarTest.cpp │ ├── ApplicationDropperTest.cpp │ ├── ApplicationExecutorMock.h │ ├── ApplicationHelperTest.cpp │ ├── ApplicationTest.cpp │ ├── ApplicationToolbarRegistryStorageTest.cpp │ ├── ApplicationToolbarStorageTestHelper.cpp │ ├── ApplicationToolbarStorageTestHelper.h │ ├── ApplicationToolbarTest.cpp │ ├── ApplicationToolbarXmlStorageTest.cpp │ ├── AsyncIconFetcherTest.cpp │ ├── AutoResetTest.cpp │ ├── BookmarkClipboardTest.cpp │ ├── BookmarkColumnHelperTest.cpp │ ├── BookmarkContextMenuTest.cpp │ ├── BookmarkDropperTest.cpp │ ├── BookmarkItemTest.cpp │ ├── BookmarkListPresenterTest.cpp │ ├── BookmarkRegistryStorageTest.cpp │ ├── BookmarkStorageTestHelper.cpp │ ├── BookmarkStorageTestHelper.h │ ├── BookmarkTestHelper.h │ ├── BookmarkTreeHelper.h │ ├── BookmarkTreePresenterTest.cpp │ ├── BookmarkTreeTest.cpp │ ├── BookmarkTreeViewContextMenuTest.cpp │ ├── BookmarkXmlStorageTest.cpp │ ├── BookmarksToolbarTest.cpp │ ├── BrowserCommandControllerTest.cpp │ ├── BrowserCommandTargetFake.cpp │ ├── BrowserCommandTargetFake.h │ ├── BrowserCommandTargetManagerTest.cpp │ ├── BrowserListTest.cpp │ ├── BrowserTestBase.cpp │ ├── BrowserTestBase.h │ ├── BrowserWindowFake.cpp │ ├── BrowserWindowFake.h │ ├── BrowserWindowMock.h │ ├── CachedIconsTest.cpp │ ├── ClangCLLibs.cpp │ ├── ClipboardHelperTest.cpp │ ├── ClipboardTest.cpp │ ├── ClipboardWatcherTest.cpp │ ├── ColorRuleRegistryStorageTest.cpp │ ├── ColorRuleTest.cpp │ ├── ColorRuleXmlStorageTest.cpp │ ├── ColorRulesStorageTestHelper.cpp │ ├── ColorRulesStorageTestHelper.h │ ├── ColumnHelperTest.cpp │ ├── ColumnRegistryStorageTest.cpp │ ├── ColumnStorageTest.cpp │ ├── ColumnStorageTestHelper.cpp │ ├── ColumnStorageTestHelper.h │ ├── ColumnXmlStorageTest.cpp │ ├── ComStaThreadPoolExecutorTest.cpp │ ├── CommandLineSplitterTest.cpp │ ├── CommandLineTest.cpp │ ├── ConfigRegistryStorageTest.cpp │ ├── ConfigStorageTestHelper.cpp │ ├── ConfigStorageTestHelper.h │ ├── ConfigXmlStorageTest.cpp │ ├── ControlsTest.cpp │ ├── CopiedBookmark.cpp │ ├── CopiedBookmark.h │ ├── CustomFontStorageTest.cpp │ ├── DataExchangeHelperTest.cpp │ ├── DataObjectImplTest.cpp │ ├── DefaultColumnRegistryStorageTest.cpp │ ├── DefaultColumnXmlStorageTest.cpp │ ├── DragDropHelperTest.cpp │ ├── DragDropTestHelper.cpp │ ├── DragDropTestHelper.h │ ├── DriveEnumeratorFake.cpp │ ├── DriveEnumeratorFake.h │ ├── DriveEnumeratorImplTest.cpp │ ├── DriveModelTest.cpp │ ├── DriveWatcherFake.cpp │ ├── DriveWatcherFake.h │ ├── DrivesToolbarTest.cpp │ ├── EmbeddedResources │ │ └── basic.png │ ├── EventScopeTest.cpp │ ├── ExecutorTestBase.cpp │ ├── ExecutorTestBase.h │ ├── ExecutorTestHelper.cpp │ ├── ExecutorTestHelper.h │ ├── ExecutorWrapper.h │ ├── FeatureListTest.cpp │ ├── FileSystemWatcherTest.cpp │ ├── FrequentLocationsMenuTest.cpp │ ├── FrequentLocationsModelTest.cpp │ ├── FrequentLocationsRegistryStorageTest.cpp │ ├── FrequentLocationsStorageTestHelper.cpp │ ├── FrequentLocationsStorageTestHelper.h │ ├── FrequentLocationsTrackerTest.cpp │ ├── FrequentLocationsXmlStorageTest.cpp │ ├── GTestHelper.h │ ├── GdiplusHelperTest.cpp │ ├── GeneratorTestHelper.h │ ├── HelperTest.cpp │ ├── HistoryMenuTest.cpp │ ├── HistoryModelTest.cpp │ ├── HistoryTrackerTest.cpp │ ├── IconFetcherFake.cpp │ ├── IconFetcherFake.h │ ├── ImageHelperTest.cpp │ ├── ImageTestHelper.cpp │ ├── ImageTestHelper.h │ ├── KeyboardStateFake.cpp │ ├── KeyboardStateFake.h │ ├── LanguageHelperTest.cpp │ ├── ListViewColumnModelFake.cpp │ ├── ListViewColumnModelFake.h │ ├── ListViewColumnModelTest.cpp │ ├── ListViewHelperTest.cpp │ ├── ListViewItemFake.cpp │ ├── ListViewItemFake.h │ ├── ListViewModelFake.cpp │ ├── ListViewModelFake.h │ ├── ListViewModelTest.cpp │ ├── ListViewTest.cpp │ ├── Main.cpp │ ├── MainRebarRegistryStorageTest.cpp │ ├── MainRebarStorageTestHelper.cpp │ ├── MainRebarStorageTestHelper.h │ ├── MainRebarXmlStorageTest.cpp │ ├── MainToolbarStorageTest.cpp │ ├── ManifestTest.cpp │ ├── MenuHelperTest.cpp │ ├── MenuViewFake.cpp │ ├── MenuViewFake.h │ ├── MenuViewFakeTestHelper.cpp │ ├── MenuViewFakeTestHelper.h │ ├── MenuViewTest.cpp │ ├── MessageLoop.cpp │ ├── MessageLoop.h │ ├── ModelessDialogListTest.cpp │ ├── MovableModelHelper.h │ ├── MovableModelTest.cpp │ ├── NavigationEventsTest.cpp │ ├── NavigationManagerTest.cpp │ ├── NavigationRequestDelegateMock.h │ ├── NavigationRequestTest.cpp │ ├── NavigationRequestTestHelper.h │ ├── OneShotTimerTest.cpp │ ├── OrganizeBookmarksContextMenuTest.cpp │ ├── PasteSymLinksServerClientTest.cpp │ ├── PidlHelperTest.cpp │ ├── PlatformContextFake.cpp │ ├── PlatformContextFake.h │ ├── ProcessManagerTest.cpp │ ├── RegistrySettingsTest.cpp │ ├── RegistryStorageTestHelper.cpp │ ├── RegistryStorageTestHelper.h │ ├── ResourceHelperTest.cpp │ ├── ResourceIconModelTest.cpp │ ├── ResourceLoaderFake.cpp │ ├── ResourceLoaderFake.h │ ├── ResourceTestHelper.cpp │ ├── ResourceTestHelper.h │ ├── Resources │ │ ├── EnumerationTestDirectory │ │ │ ├── folder1 │ │ │ │ └── .gitkeep │ │ │ ├── folder2 │ │ │ │ └── .gitkeep │ │ │ ├── hidden.txt │ │ │ ├── item1.txt │ │ │ ├── item2.txt │ │ │ └── item3.txt │ │ ├── application-toolbar.reg │ │ ├── application-toolbar.xml │ │ ├── bookmarks-v1-nested-show-on-toolbar.reg │ │ ├── bookmarks-v1-nested-show-on-toolbar.xml │ │ ├── bookmarks-v1.reg │ │ ├── bookmarks-v1.xml │ │ ├── bookmarks-v2.reg │ │ ├── bookmarks-v2.xml │ │ ├── color-rules.reg │ │ ├── color-rules.xml │ │ ├── columns.reg │ │ ├── columns.xml │ │ ├── config-migration.reg │ │ ├── config-migration.xml │ │ ├── custom-font.reg │ │ ├── custom-font.xml │ │ ├── default-columns.reg │ │ ├── default-columns.xml │ │ ├── frequent-locations.reg │ │ ├── frequent-locations.xml │ │ ├── main-rebar.reg │ │ ├── main-rebar.xml │ │ ├── main-toolbar.reg │ │ ├── main-toolbar.xml │ │ ├── startup-folders.reg │ │ ├── startup-folders.xml │ │ ├── tabs.reg │ │ ├── tabs.xml │ │ ├── windows-v1.reg │ │ ├── windows-v1.xml │ │ ├── windows-v2-fallback.reg │ │ ├── windows-v2-fallback.xml │ │ ├── windows-v2.reg │ │ └── windows-v2.xml │ ├── RuntimeHelperTest.cpp │ ├── RuntimeTest.cpp │ ├── RuntimeTestHelper.cpp │ ├── RuntimeTestHelper.h │ ├── ScopedBrowserCommandTargetTest.cpp │ ├── ScopedRedrawDisablerTest.cpp │ ├── ScopedStopSourceTest.cpp │ ├── ScopedTestDir.cpp │ ├── ScopedTestDir.h │ ├── SearchTabsModelTest.cpp │ ├── ServiceProviderTest.cpp │ ├── ShellBrowserEventsTest.cpp │ ├── ShellBrowserFactoryFake.cpp │ ├── ShellBrowserFactoryFake.h │ ├── ShellBrowserFake.cpp │ ├── ShellBrowserFake.h │ ├── ShellBrowserTest.cpp │ ├── ShellContextMenuBuilderTest.cpp │ ├── ShellContextMenuDelegateFake.cpp │ ├── ShellContextMenuDelegateFake.h │ ├── ShellContextMenuIdGeneratorTest.cpp │ ├── ShellContextMenuIdRemapperTest.cpp │ ├── ShellEnumeratorFake.cpp │ ├── ShellEnumeratorFake.h │ ├── ShellEnumeratorImplTest.cpp │ ├── ShellHelperTest.cpp │ ├── ShellIconLoaderFake.cpp │ ├── ShellIconLoaderFake.h │ ├── ShellItemsMenuTest.cpp │ ├── ShellNavigationControllerTest.cpp │ ├── ShellTestHelper.cpp │ ├── ShellTestHelper.h │ ├── SimulatedClipboardDataObject.cpp │ ├── SimulatedClipboardDataObject.h │ ├── SimulatedClipboardStore.cpp │ ├── SimulatedClipboardStore.h │ ├── SimulatedClipboardStoreTest.cpp │ ├── StartupFoldersRegistryStorageTest.cpp │ ├── StartupFoldersStorageTestHelper.cpp │ ├── StartupFoldersStorageTestHelper.h │ ├── StartupFoldersXmlStorageTest.cpp │ ├── StorageTest.cpp │ ├── StorageTestHelper.h │ ├── StringHelperTest.cpp │ ├── SystemClockFake.cpp │ ├── SystemClockFake.h │ ├── TabContainerTest.cpp │ ├── TabContextMenuTest.cpp │ ├── TabEventsTest.cpp │ ├── TabHelperTest.cpp │ ├── TabHistoryMenuTest.cpp │ ├── TabListTest.cpp │ ├── TabRegistryStorageTest.cpp │ ├── TabRestorerMenuTest.cpp │ ├── TabRestorerTest.cpp │ ├── TabStorageTestHelper.cpp │ ├── TabStorageTestHelper.h │ ├── TabTest.cpp │ ├── TabViewTest.cpp │ ├── TabXmlStorageTest.cpp │ ├── TestExplorer++.rc │ ├── TestExplorer++.vcxproj │ ├── TestExplorer++.vcxproj.filters │ ├── TestResources.h │ ├── TestResources.rc │ ├── ThemedTabControlPainterTest.cpp │ ├── TreeViewAdapterTest.cpp │ ├── TreeViewNodeFake.cpp │ ├── TreeViewNodeFake.h │ ├── TreeViewTest.cpp │ ├── UIThreadExecutorTest.cpp │ ├── VersionHelperTest.cpp │ ├── VersionTest.cpp │ ├── ViewModeHelperTest.cpp │ ├── WeakPtrFactoryTest.cpp │ ├── WindowHelperTest.cpp │ ├── WindowRegistryStorageTest.cpp │ ├── WindowStorageTestHelper.cpp │ ├── WindowStorageTestHelper.h │ ├── WindowSubclassTest.cpp │ ├── WindowXmlStorageTest.cpp │ ├── XMLSettingsTest.cpp │ ├── XmlStorageTestHelper.cpp │ ├── XmlStorageTestHelper.h │ ├── common-controls.manifest │ ├── compatibility.manifest │ ├── pch.cpp │ └── pch.h ├── TestHelper │ ├── Helper.cpp │ ├── Helper.h │ ├── Main.cpp │ ├── Readme.txt │ ├── TestFolderSize.cpp │ ├── TestHelper.cpp │ ├── TestHelper.vcxproj │ ├── TestHelper.vcxproj.filters │ ├── TestResources │ │ ├── Explorer++CA.dll │ │ ├── Explorer++FR.dll │ │ ├── FolderSize │ │ │ ├── Folder1 │ │ │ │ ├── VersionInfo1.dll │ │ │ │ └── VersionInfo2.dll │ │ │ ├── Folder2 │ │ │ │ ├── VersionInfo3.dll │ │ │ │ └── VersionInfo4.dll │ │ │ ├── VersionInfo5.dll │ │ │ └── VersionInfo6.dll │ │ ├── Metadata.jpg │ │ ├── VersionInfo.dll │ │ └── VersionInfo │ │ │ ├── VersionInfo.sln │ │ │ └── VersionInfo │ │ │ ├── VersionInfo.rc │ │ │ ├── VersionInfo.vcxproj │ │ │ ├── VersionInfo.vcxproj.filters │ │ │ └── resource.h │ ├── stdafx.cpp │ └── stdafx.h ├── ThirdParty │ └── CTPL │ │ └── cpl_stl.h ├── Toolset.props ├── VersionNumber.props └── targetver.h ├── LICENSE ├── Plugins ├── Readme.txt ├── sample_manifest.json ├── sort_tabs_by_name │ ├── plugin.json │ └── sort_tabs_by_name.lua ├── update_accelerators │ ├── empty.lua │ └── plugin.json └── update_theme_colors │ ├── plugin.json │ └── update_theme_colors.lua ├── README.md ├── Scripts ├── explorer++_win+e_binding.ahk └── explorer_updater.BAT ├── Translations ├── Explorer++AR_AE │ ├── Explorer++.rc │ ├── Explorer++AR_AE.vcxproj │ ├── Explorer++AR_AE.vcxproj.filters │ ├── Explorer++Main.rc │ ├── Explorer++VersionInfo.h │ ├── Explorer++VersionInfo.rc │ └── resource.h ├── Explorer++CA │ ├── Explorer++.rc │ ├── Explorer++CA.vcxproj │ ├── Explorer++CA.vcxproj.filters │ ├── Explorer++Main.rc │ ├── Explorer++VersionInfo.h │ ├── Explorer++VersionInfo.rc │ └── resource.h ├── Explorer++CS │ ├── Explorer++.rc │ ├── Explorer++CS.vcxproj │ ├── Explorer++CS.vcxproj.filters │ ├── Explorer++Main.rc │ ├── Explorer++VersionInfo.h │ ├── Explorer++VersionInfo.rc │ └── resource.h ├── Explorer++DA │ ├── Explorer++.rc │ ├── Explorer++DA.vcxproj │ ├── Explorer++DA.vcxproj.filters │ ├── Explorer++Main.rc │ ├── Explorer++VersionInfo.h │ ├── Explorer++VersionInfo.rc │ └── resource.h ├── Explorer++DE │ ├── Explorer++.rc │ ├── Explorer++DE.vcxproj │ ├── Explorer++DE.vcxproj.filters │ ├── Explorer++Main.rc │ ├── Explorer++VersionInfo.h │ ├── Explorer++VersionInfo.rc │ └── resource.h ├── Explorer++EL │ ├── Explorer++.rc │ ├── Explorer++EL.vcxproj │ ├── Explorer++EL.vcxproj.filters │ ├── Explorer++Main.rc │ ├── Explorer++VersionInfo.h │ ├── Explorer++VersionInfo.rc │ └── resource.h ├── Explorer++ES │ ├── Explorer++.rc │ ├── Explorer++ES.vcxproj │ ├── Explorer++ES.vcxproj.filters │ ├── Explorer++Main.rc │ ├── Explorer++VersionInfo.h │ ├── Explorer++VersionInfo.rc │ └── resource.h ├── Explorer++FA │ ├── Explorer++.rc │ ├── Explorer++FA.vcxproj │ ├── Explorer++FA.vcxproj.filters │ ├── Explorer++Main.rc │ ├── Explorer++VersionInfo.h │ ├── Explorer++VersionInfo.rc │ └── resource.h ├── Explorer++FI │ ├── Explorer++.rc │ ├── Explorer++FI.vcxproj │ ├── Explorer++FI.vcxproj.filters │ ├── Explorer++Main.rc │ ├── Explorer++VersionInfo.h │ ├── Explorer++VersionInfo.rc │ └── resource.h ├── Explorer++FR │ ├── Explorer++.rc │ ├── Explorer++FR.vcxproj │ ├── Explorer++FR.vcxproj.filters │ ├── Explorer++Main.rc │ ├── Explorer++VersionInfo.h │ ├── Explorer++VersionInfo.rc │ └── resource.h ├── Explorer++HE │ ├── Explorer++.rc │ ├── Explorer++HE.vcxproj │ ├── Explorer++HE.vcxproj.filters │ ├── Explorer++Main.rc │ ├── Explorer++VersionInfo.h │ ├── Explorer++VersionInfo.rc │ └── resource.h ├── Explorer++HU │ ├── Explorer++.rc │ ├── Explorer++HU.vcxproj │ ├── Explorer++HU.vcxproj.filters │ ├── Explorer++Main.rc │ ├── Explorer++VersionInfo.h │ ├── Explorer++VersionInfo.rc │ └── resource.h ├── Explorer++IT │ ├── Explorer++.rc │ ├── Explorer++IT.vcxproj │ ├── Explorer++IT.vcxproj.filters │ ├── Explorer++Main.rc │ ├── Explorer++VersionInfo.h │ ├── Explorer++VersionInfo.rc │ └── resource.h ├── Explorer++JA │ ├── Explorer++.rc │ ├── Explorer++JA.vcxproj │ ├── Explorer++JA.vcxproj.filters │ ├── Explorer++Main.rc │ ├── Explorer++VersionInfo.h │ ├── Explorer++VersionInfo.rc │ └── resource.h ├── Explorer++KO │ ├── Explorer++.rc │ ├── Explorer++KO.vcxproj │ ├── Explorer++KO.vcxproj.filters │ ├── Explorer++Main.rc │ ├── Explorer++VersionInfo.h │ ├── Explorer++VersionInfo.rc │ └── resource.h ├── Explorer++NL │ ├── Explorer++.rc │ ├── Explorer++Main.rc │ ├── Explorer++NL.vcxproj │ ├── Explorer++NL.vcxproj.filters │ ├── Explorer++VersionInfo.h │ ├── Explorer++VersionInfo.rc │ └── resource.h ├── Explorer++NO │ ├── Explorer++.rc │ ├── Explorer++Main.rc │ ├── Explorer++NO.vcxproj │ ├── Explorer++NO.vcxproj.filters │ ├── Explorer++VersionInfo.h │ ├── Explorer++VersionInfo.rc │ └── resource.h ├── Explorer++PL │ ├── Explorer++.rc │ ├── Explorer++Main.rc │ ├── Explorer++PL.vcxproj │ ├── Explorer++PL.vcxproj.filters │ ├── Explorer++VersionInfo.h │ ├── Explorer++VersionInfo.rc │ └── resource.h ├── Explorer++PT │ ├── Explorer++.rc │ ├── Explorer++Main.rc │ ├── Explorer++PT.vcxproj │ ├── Explorer++PT.vcxproj.filters │ ├── Explorer++VersionInfo.h │ ├── Explorer++VersionInfo.rc │ └── resource.h ├── Explorer++PT_BR │ ├── Explorer++.rc │ ├── Explorer++Main.rc │ ├── Explorer++PT_BR.vcxproj │ ├── Explorer++PT_BR.vcxproj.filters │ ├── Explorer++VersionInfo.h │ ├── Explorer++VersionInfo.rc │ └── resource.h ├── Explorer++RO │ ├── Explorer++.rc │ ├── Explorer++Main.rc │ ├── Explorer++RO.vcxproj │ ├── Explorer++RO.vcxproj.filters │ ├── Explorer++VersionInfo.h │ ├── Explorer++VersionInfo.rc │ └── resource.h ├── Explorer++RU │ ├── Explorer++.rc │ ├── Explorer++Main.rc │ ├── Explorer++RU.vcxproj │ ├── Explorer++RU.vcxproj.filters │ ├── Explorer++VersionInfo.h │ ├── Explorer++VersionInfo.rc │ └── resource.h ├── Explorer++SI │ ├── Explorer++.rc │ ├── Explorer++Main.rc │ ├── Explorer++SI.vcxproj │ ├── Explorer++SI.vcxproj.filters │ ├── Explorer++VersionInfo.h │ ├── Explorer++VersionInfo.rc │ └── resource.h ├── Explorer++SV │ ├── Explorer++.rc │ ├── Explorer++Main.rc │ ├── Explorer++SV.vcxproj │ ├── Explorer++SV.vcxproj.filters │ ├── Explorer++VersionInfo.h │ ├── Explorer++VersionInfo.rc │ └── resource.h ├── Explorer++TR │ ├── Explorer++.rc │ ├── Explorer++Main.rc │ ├── Explorer++TR.vcxproj │ ├── Explorer++TR.vcxproj.filters │ ├── Explorer++VersionInfo.h │ ├── Explorer++VersionInfo.rc │ └── resource.h ├── Explorer++UK │ ├── Explorer++.rc │ ├── Explorer++Main.rc │ ├── Explorer++UK.vcxproj │ ├── Explorer++UK.vcxproj.filters │ ├── Explorer++VersionInfo.h │ ├── Explorer++VersionInfo.rc │ └── resource.h ├── Explorer++VI │ ├── Explorer++.rc │ ├── Explorer++Main.rc │ ├── Explorer++VI.vcxproj │ ├── Explorer++VI.vcxproj.filters │ ├── Explorer++VersionInfo.h │ ├── Explorer++VersionInfo.rc │ └── resource.h ├── Explorer++ZH_CN │ ├── Explorer++.rc │ ├── Explorer++Main.rc │ ├── Explorer++VersionInfo.h │ ├── Explorer++VersionInfo.rc │ ├── Explorer++ZH_CN.vcxproj │ ├── Explorer++ZH_CN.vcxproj.filters │ └── resource.h ├── Explorer++ZH_TW │ ├── Explorer++.rc │ ├── Explorer++Main.rc │ ├── Explorer++VersionInfo.h │ ├── Explorer++VersionInfo.rc │ ├── Explorer++ZH_TW.vcxproj │ ├── Explorer++ZH_TW.vcxproj.filters │ └── resource.h └── README.txt ├── VcpkgCustomPorts ├── concurrencpp │ ├── add-include-chrono.patch │ ├── add-include-string.patch │ ├── disable-thread-set-name-call.patch │ ├── fix-include-path.patch │ ├── portfile.cmake │ └── vcpkg.json └── cppcodec │ ├── 0001-Fix-62.patch │ ├── 0002-Clang-Compile-Fix.patch │ ├── portfile.cmake │ └── vcpkg.json ├── VcpkgCustomTriplets ├── x64-windows-asan-static.cmake └── x86-windows-asan-static.cmake ├── appveyor.yml ├── authenticode.pfx.enc ├── crowdin.yaml ├── vcpkg-configuration.json └── vcpkg.json /.appveyor/after_build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/.appveyor/after_build.ps1 -------------------------------------------------------------------------------- /.appveyor/test_script.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/.appveyor/test_script.ps1 -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/.clang-format -------------------------------------------------------------------------------- /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: ["https://www.paypal.me/derceg"] 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/crash_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/.github/ISSUE_TEMPLATE/crash_report.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/.gitmodules -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /.tgitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/.tgitconfig -------------------------------------------------------------------------------- /BUILDING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/BUILDING.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Directory.Build.targets -------------------------------------------------------------------------------- /Documentation/User/History.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Documentation/User/History.txt -------------------------------------------------------------------------------- /Documentation/User/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Documentation/User/License.txt -------------------------------------------------------------------------------- /Documentation/User/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Documentation/User/Readme.txt -------------------------------------------------------------------------------- /Documentation/User/Sphinx/.gitignore: -------------------------------------------------------------------------------- 1 | /_build/ -------------------------------------------------------------------------------- /Documentation/User/Sphinx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Documentation/User/Sphinx/Makefile -------------------------------------------------------------------------------- /Documentation/User/Sphinx/about_explorer++.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Documentation/User/Sphinx/about_explorer++.rst -------------------------------------------------------------------------------- /Documentation/User/Sphinx/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Documentation/User/Sphinx/conf.py -------------------------------------------------------------------------------- /Documentation/User/Sphinx/global.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Documentation/User/Sphinx/global.rst -------------------------------------------------------------------------------- /Documentation/User/Sphinx/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Documentation/User/Sphinx/index.rst -------------------------------------------------------------------------------- /Documentation/User/Sphinx/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Documentation/User/Sphinx/make.bat -------------------------------------------------------------------------------- /Documentation/User/Sphinx/menus/edit/copy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Documentation/User/Sphinx/menus/edit/copy.rst -------------------------------------------------------------------------------- /Documentation/User/Sphinx/menus/edit/cut.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Documentation/User/Sphinx/menus/edit/cut.rst -------------------------------------------------------------------------------- /Documentation/User/Sphinx/menus/edit/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Documentation/User/Sphinx/menus/edit/index.rst -------------------------------------------------------------------------------- /Documentation/User/Sphinx/menus/edit/paste.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Documentation/User/Sphinx/menus/edit/paste.rst -------------------------------------------------------------------------------- /Documentation/User/Sphinx/menus/edit/undo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Documentation/User/Sphinx/menus/edit/undo.rst -------------------------------------------------------------------------------- /Documentation/User/Sphinx/menus/file/delete.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Documentation/User/Sphinx/menus/file/delete.rst -------------------------------------------------------------------------------- /Documentation/User/Sphinx/menus/file/exit.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Documentation/User/Sphinx/menus/file/exit.rst -------------------------------------------------------------------------------- /Documentation/User/Sphinx/menus/file/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Documentation/User/Sphinx/menus/file/index.rst -------------------------------------------------------------------------------- /Documentation/User/Sphinx/menus/file/rename.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Documentation/User/Sphinx/menus/file/rename.rst -------------------------------------------------------------------------------- /Documentation/User/Sphinx/menus/go/back.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Documentation/User/Sphinx/menus/go/back.rst -------------------------------------------------------------------------------- /Documentation/User/Sphinx/menus/go/desktop.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Documentation/User/Sphinx/menus/go/desktop.rst -------------------------------------------------------------------------------- /Documentation/User/Sphinx/menus/go/forward.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Documentation/User/Sphinx/menus/go/forward.rst -------------------------------------------------------------------------------- /Documentation/User/Sphinx/menus/go/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Documentation/User/Sphinx/menus/go/index.rst -------------------------------------------------------------------------------- /Documentation/User/Sphinx/menus/go/my_music.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Documentation/User/Sphinx/menus/go/my_music.rst -------------------------------------------------------------------------------- /Documentation/User/Sphinx/menus/go/up.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Documentation/User/Sphinx/menus/go/up.rst -------------------------------------------------------------------------------- /Documentation/User/Sphinx/menus/help/about.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Documentation/User/Sphinx/menus/help/about.rst -------------------------------------------------------------------------------- /Documentation/User/Sphinx/menus/help/help.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Documentation/User/Sphinx/menus/help/help.rst -------------------------------------------------------------------------------- /Documentation/User/Sphinx/menus/help/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Documentation/User/Sphinx/menus/help/index.rst -------------------------------------------------------------------------------- /Documentation/User/Sphinx/menus/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Documentation/User/Sphinx/menus/index.rst -------------------------------------------------------------------------------- /Documentation/User/Sphinx/menus/tools/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Documentation/User/Sphinx/menus/tools/index.rst -------------------------------------------------------------------------------- /Documentation/User/Sphinx/menus/view/filter.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Documentation/User/Sphinx/menus/view/filter.rst -------------------------------------------------------------------------------- /Documentation/User/Sphinx/menus/view/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Documentation/User/Sphinx/menus/view/index.rst -------------------------------------------------------------------------------- /Documentation/User/Sphinx/panes/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Documentation/User/Sphinx/panes/index.rst -------------------------------------------------------------------------------- /Documentation/User/Sphinx/panes/tab_bar.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Documentation/User/Sphinx/panes/tab_bar.rst -------------------------------------------------------------------------------- /Documentation/User/Sphinx/requirements.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Documentation/User/Sphinx/requirements.in -------------------------------------------------------------------------------- /Documentation/User/Sphinx/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Documentation/User/Sphinx/requirements.txt -------------------------------------------------------------------------------- /Documentation/User/Sphinx/toolbars/address.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Documentation/User/Sphinx/toolbars/address.rst -------------------------------------------------------------------------------- /Documentation/User/Sphinx/toolbars/drives.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Documentation/User/Sphinx/toolbars/drives.rst -------------------------------------------------------------------------------- /Documentation/User/Sphinx/toolbars/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Documentation/User/Sphinx/toolbars/index.rst -------------------------------------------------------------------------------- /Documentation/User/Sphinx/toolbars/lock.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Documentation/User/Sphinx/toolbars/lock.rst -------------------------------------------------------------------------------- /Documentation/User/Sphinx/toolbars/main.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Documentation/User/Sphinx/toolbars/main.rst -------------------------------------------------------------------------------- /Explorer++/Clang.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Clang.props -------------------------------------------------------------------------------- /Explorer++/Common.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Common.props -------------------------------------------------------------------------------- /Explorer++/Explorer++.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++.sln -------------------------------------------------------------------------------- /Explorer++/Explorer++.sln.licenseheader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++.sln.licenseheader -------------------------------------------------------------------------------- /Explorer++/Explorer++/AboutDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/AboutDialog.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/AboutDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/AboutDialog.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/Accelerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/Accelerator.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/AcceleratorHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/AcceleratorHelper.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/AcceleratorHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/AcceleratorHelper.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/AcceleratorManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/AcceleratorManager.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/AcceleratorManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/AcceleratorManager.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/AcceleratorMappings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/AcceleratorMappings.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/AcceleratorUpdater.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/AcceleratorUpdater.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/AcceleratorUpdater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/AcceleratorUpdater.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/AddressBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/AddressBar.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/AddressBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/AddressBar.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/AddressBarView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/AddressBarView.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/AddressBarView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/AddressBarView.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/AddressBarViewDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/AddressBarViewDelegate.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/AdvancedOptionsPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/AdvancedOptionsPage.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/AdvancedOptionsPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/AdvancedOptionsPage.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/App.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/App.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/App.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/App.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/AppStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/AppStorage.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/AppearanceOptionsPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/AppearanceOptionsPage.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/AppearanceOptionsPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/AppearanceOptionsPage.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/Application.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/Application.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/Application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/Application.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/ApplicationContextMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ApplicationContextMenu.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/ApplicationDropper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ApplicationDropper.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/ApplicationDropper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ApplicationDropper.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/ApplicationEditorDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ApplicationEditorDialog.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/ApplicationExecutor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ApplicationExecutor.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/ApplicationExecutorImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ApplicationExecutorImpl.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/ApplicationHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ApplicationHelper.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/ApplicationHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ApplicationHelper.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/ApplicationModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ApplicationModel.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/ApplicationToolbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ApplicationToolbar.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/ApplicationToolbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ApplicationToolbar.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/ApplicationToolbarView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ApplicationToolbarView.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/AsyncIconFetcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/AsyncIconFetcher.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/AsyncIconFetcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/AsyncIconFetcher.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/BaseDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/BaseDialog.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/BaseDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/BaseDialog.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/Bookmarks/BookmarkItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/Bookmarks/BookmarkItem.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/Bookmarks/BookmarkTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/Bookmarks/BookmarkTree.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/BrowserCommandTarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/BrowserCommandTarget.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/BrowserList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/BrowserList.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/BrowserList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/BrowserList.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/BrowserPane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/BrowserPane.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/BrowserPane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/BrowserPane.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/BrowserWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/BrowserWindow.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/BrowserWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/BrowserWindow.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/ChangeNotifyMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ChangeNotifyMode.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/ClangCLLibs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ClangCLLibs.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/ClangCLLibs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ClangCLLibs.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/ClipboardOperations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ClipboardOperations.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/ClipboardOperations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ClipboardOperations.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/ColorProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ColorProvider.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/ColorRule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ColorRule.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/ColorRule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ColorRule.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/ColorRuleEditorDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ColorRuleEditorDialog.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/ColorRuleEditorDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ColorRuleEditorDialog.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/ColorRuleListView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ColorRuleListView.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/ColorRuleListView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ColorRuleListView.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/ColorRuleModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ColorRuleModel.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/ColorRuleModelFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ColorRuleModelFactory.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/ColorRuleModelFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ColorRuleModelFactory.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/ColorRuleXmlStorage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ColorRuleXmlStorage.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/ColorRuleXmlStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ColorRuleXmlStorage.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/ColumnRegistryStorage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ColumnRegistryStorage.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/ColumnRegistryStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ColumnRegistryStorage.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/ColumnStorage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ColumnStorage.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/ColumnStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ColumnStorage.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/ColumnXmlStorage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ColumnXmlStorage.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/ColumnXmlStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ColumnXmlStorage.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/CommandLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/CommandLine.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/CommandLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/CommandLine.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/CommandLineSplitter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/CommandLineSplitter.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/CommandLineSplitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/CommandLineSplitter.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/Config.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/ConfigRegistryStorage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ConfigRegistryStorage.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/ConfigRegistryStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ConfigRegistryStorage.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/ConfigXmlStorage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ConfigXmlStorage.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/ConfigXmlStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ConfigXmlStorage.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/CoreInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/CoreInterface.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/CrashHandlerHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/CrashHandlerHelper.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/CrashHandlerHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/CrashHandlerHelper.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/CustomFont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/CustomFont.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/CustomFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/CustomFont.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/CustomFontStorage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/CustomFontStorage.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/CustomFontStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/CustomFontStorage.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/CustomizeColorsDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/CustomizeColorsDialog.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/CustomizeColorsDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/CustomizeColorsDialog.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/DarkModeColorProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/DarkModeColorProvider.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/DarkModeColorProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/DarkModeColorProvider.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/DarkModeManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/DarkModeManager.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/DarkModeManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/DarkModeManager.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/DefaultAccelerators.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/DefaultAccelerators.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/DefaultAccelerators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/DefaultAccelerators.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/DefaultColumnXmlStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/DefaultColumnXmlStorage.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/DefaultColumns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/DefaultColumns.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/DefaultToolbarButtons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/DefaultToolbarButtons.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/DestroyFilesDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/DestroyFilesDialog.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/DestroyFilesDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/DestroyFilesDialog.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/DialogConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/DialogConstants.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/DialogHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/DialogHelper.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/DialogHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/DialogHelper.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/DialogStorageHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/DialogStorageHelper.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/DialogStorageHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/DialogStorageHelper.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/DirectoryWatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/DirectoryWatcher.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/DirectoryWatcherFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/DirectoryWatcherFactory.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/DisplayColoursDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/DisplayColoursDialog.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/DisplayColoursDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/DisplayColoursDialog.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/DisplayWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/DisplayWindow.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/DisplayWindowDefaults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/DisplayWindowDefaults.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/DriveEnumerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/DriveEnumerator.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/DriveEnumeratorImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/DriveEnumeratorImpl.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/DriveEnumeratorImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/DriveEnumeratorImpl.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/DriveModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/DriveModel.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/DriveModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/DriveModel.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/DriveWatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/DriveWatcher.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/DriveWatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/DriveWatcher.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/DriveWatcherImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/DriveWatcherImpl.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/DriveWatcherImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/DriveWatcherImpl.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/DrivesToolbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/DrivesToolbar.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/DrivesToolbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/DrivesToolbar.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/DrivesToolbarView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/DrivesToolbarView.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/DrivesToolbarView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/DrivesToolbarView.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/EventScope.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/EventScope.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/EventScope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/EventScope.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/EventSwitcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/EventSwitcher.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/EventWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/EventWindow.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/EventWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/EventWindow.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/ExitCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ExitCode.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/Explorer++.args.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/Explorer++.args.json -------------------------------------------------------------------------------- /Explorer++/Explorer++/Explorer++.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/Explorer++.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/Explorer++.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/Explorer++.exe.manifest -------------------------------------------------------------------------------- /Explorer++/Explorer++/Explorer++.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/Explorer++.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/Explorer++.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/Explorer++.rc -------------------------------------------------------------------------------- /Explorer++/Explorer++/Explorer++.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/Explorer++.vcxproj -------------------------------------------------------------------------------- /Explorer++/Explorer++/Explorer++Main.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/Explorer++Main.rc -------------------------------------------------------------------------------- /Explorer++/Explorer++/Explorer++VersionInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/Explorer++VersionInfo.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/Explorer++VersionInfo.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/Explorer++VersionInfo.rc -------------------------------------------------------------------------------- /Explorer++/Explorer++/Explorer++_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/Explorer++_internal.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/Feature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/Feature.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/FeatureList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/FeatureList.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/FeatureList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/FeatureList.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/FileOperations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/FileOperations.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/FileOperations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/FileOperations.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/FileProgressSink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/FileProgressSink.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/FileProgressSink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/FileProgressSink.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/FileSelectionTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/FileSelectionTests.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/FileSystemWatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/FileSystemWatcher.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/FileSystemWatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/FileSystemWatcher.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/FilesFoldersOptionsPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/FilesFoldersOptionsPage.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/FilterDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/FilterDialog.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/FilterDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/FilterDialog.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/FolderView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/FolderView.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/FolderView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/FolderView.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/FontHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/FontHelper.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/FontHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/FontHelper.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/FontsOptionsPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/FontsOptionsPage.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/FontsOptionsPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/FontsOptionsPage.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/FrequentLocationsMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/FrequentLocationsMenu.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/FrequentLocationsMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/FrequentLocationsMenu.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/FrequentLocationsModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/FrequentLocationsModel.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/GeneralOptionsPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/GeneralOptionsPage.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/GeneralOptionsPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/GeneralOptionsPage.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/HandleWindowState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/HandleWindowState.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/HistoryMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/HistoryMenu.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/HistoryMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/HistoryMenu.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/HistoryModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/HistoryModel.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/HistoryModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/HistoryModel.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/HistoryTracker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/HistoryTracker.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/HistoryTracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/HistoryTracker.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/HolderWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/HolderWindow.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/HolderWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/HolderWindow.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/IDropFilesCallback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/IDropFilesCallback.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/IDropFilesCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/IDropFilesCallback.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/Icon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/Icon.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/IconFetcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/IconFetcher.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/IconFetcherImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/IconFetcherImpl.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/IconFetcherImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/IconFetcherImpl.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/IconMappings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/IconMappings.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/IconModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/IconModel.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/IconSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/IconSet.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/IconUpdateCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/IconUpdateCallback.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/InsertMarkPosition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/InsertMarkPosition.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/ItemStateOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ItemStateOp.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/LabelEditHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/LabelEditHandler.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/LabelEditHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/LabelEditHandler.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/LanguageHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/LanguageHelper.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/LanguageHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/LanguageHelper.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/LayoutDefaults.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/LayoutDefaults.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/LayoutDefaults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/LayoutDefaults.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/ListView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ListView.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/ListView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ListView.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/ListViewColumn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ListViewColumn.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/ListViewColumnModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ListViewColumnModel.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/ListViewColumnModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ListViewColumnModel.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/ListViewDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ListViewDelegate.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/ListViewHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ListViewHandler.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/ListViewItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ListViewItem.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/ListViewModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ListViewModel.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/ListViewModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ListViewModel.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/Literals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/Literals.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/LocationVisitInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/LocationVisitInfo.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/LocationVisitInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/LocationVisitInfo.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/MainFontSetter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/MainFontSetter.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/MainFontSetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/MainFontSetter.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/MainMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/MainMenu.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/MainMenuHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/MainMenuHandler.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/MainMenuSubMenuView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/MainMenuSubMenuView.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/MainMenuSubMenuView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/MainMenuSubMenuView.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/MainRebar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/MainRebar.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/MainRebarStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/MainRebarStorage.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/MainRebarView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/MainRebarView.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/MainRebarView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/MainRebarView.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/MainRebarXmlStorage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/MainRebarXmlStorage.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/MainRebarXmlStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/MainRebarXmlStorage.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/MainResource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/MainResource.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/MainTabView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/MainTabView.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/MainTabView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/MainTabView.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/MainToolbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/MainToolbar.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/MainToolbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/MainToolbar.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/MainToolbarButtons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/MainToolbarButtons.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/MainToolbarStorage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/MainToolbarStorage.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/MainToolbarStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/MainToolbarStorage.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/MainWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/MainWindow.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/MainWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/MainWindow.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/MainWndSwitch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/MainWndSwitch.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/MassRenameDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/MassRenameDialog.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/MassRenameDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/MassRenameDialog.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/MenuBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/MenuBase.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/MenuBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/MenuBase.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/MenuRanges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/MenuRanges.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/MenuView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/MenuView.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/MenuView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/MenuView.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/MergeFilesDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/MergeFilesDialog.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/MergeFilesDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/MergeFilesDialog.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/Misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/Misc.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/ModelessDialogHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ModelessDialogHelper.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/ModelessDialogHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ModelessDialogHelper.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/ModelessDialogList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ModelessDialogList.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/ModelessDialogList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ModelessDialogList.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/MouseEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/MouseEvent.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/MsgHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/MsgHandler.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/NavigationController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/NavigationController.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/NavigationHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/NavigationHelper.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/NavigationHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/NavigationHelper.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/NewMenuClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/NewMenuClient.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/NewMenuClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/NewMenuClient.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/NoOpMenuHelpTextHost.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/NoOpMenuHelpTextHost.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/NoOpMenuHelpTextHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/NoOpMenuHelpTextHost.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/NoTranslationResource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/NoTranslationResource.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/OneShotTimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/OneShotTimer.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/OneShotTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/OneShotTimer.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/OneShotTimerManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/OneShotTimerManager.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/OneShotTimerManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/OneShotTimerManager.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/OptionsDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/OptionsDialog.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/OptionsDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/OptionsDialog.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/OptionsPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/OptionsPage.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/OptionsPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/OptionsPage.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/PasteSymLinksClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/PasteSymLinksClient.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/PasteSymLinksClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/PasteSymLinksClient.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/PasteSymLinksServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/PasteSymLinksServer.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/PlatformContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/PlatformContext.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/PlatformContextImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/PlatformContextImpl.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/PluginInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/PluginInterface.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/PluginInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/PluginInterface.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/Plugins/ApiBinding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/Plugins/ApiBinding.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/Plugins/ApiBinding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/Plugins/ApiBinding.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/Plugins/Event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/Plugins/Event.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/Plugins/Event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/Plugins/Event.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/Plugins/LuaPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/Plugins/LuaPlugin.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/Plugins/LuaPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/Plugins/LuaPlugin.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/Plugins/Manifest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/Plugins/Manifest.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/Plugins/Manifest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/Plugins/Manifest.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/Plugins/MenuApi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/Plugins/MenuApi.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/Plugins/MenuApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/Plugins/MenuApi.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/PopupMenuView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/PopupMenuView.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/PopupMenuView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/PopupMenuView.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/PreservedTab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/PreservedTab.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/PreservedTab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/PreservedTab.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/ProcessManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ProcessManager.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/ProcessManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ProcessManager.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/RebarView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/RebarView.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/RebarView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/RebarView.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/RegistryAppStorage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/RegistryAppStorage.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/RegistryAppStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/RegistryAppStorage.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/RenameTabDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/RenameTabDialog.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/RenameTabDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/RenameTabDialog.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/ResourceHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ResourceHelper.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/ResourceHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ResourceHelper.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/ResourceIconModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ResourceIconModel.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/ResourceIconModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ResourceIconModel.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/ResourceLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ResourceLoader.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/Runtime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/Runtime.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/Runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/Runtime.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/RuntimeHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/RuntimeHelper.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/RuntimeHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/RuntimeHelper.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/ScriptingDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ScriptingDialog.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/ScriptingDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ScriptingDialog.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/SearchDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/SearchDialog.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/SearchDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/SearchDialog.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/SearchTabsDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/SearchTabsDialog.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/SearchTabsDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/SearchTabsDialog.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/SearchTabsModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/SearchTabsModel.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/SearchTabsModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/SearchTabsModel.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/SelectColumnsDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/SelectColumnsDialog.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/SelectionType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/SelectionType.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/ServiceProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ServiceProvider.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/ServiceProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ServiceProvider.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/ShellBrowser/Columns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ShellBrowser/Columns.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/ShellEnumerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ShellEnumerator.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/ShellEnumeratorImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ShellEnumeratorImpl.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/ShellIconLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ShellIconLoader.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/ShellIconLoaderImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ShellIconLoaderImpl.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/ShellIconModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ShellIconModel.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/ShellIconModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ShellIconModel.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/ShellItemsMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ShellItemsMenu.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/ShellItemsMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ShellItemsMenu.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/ShellView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ShellView.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/ShellView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ShellView.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/ShellWatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ShellWatcher.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/ShellWatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ShellWatcher.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/ShellWatcherManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ShellWatcherManager.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/SortMenuBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/SortMenuBuilder.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/SortMenuBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/SortMenuBuilder.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/SortModeMenuMappings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/SortModeMenuMappings.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/SplitFileDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/SplitFileDialog.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/SplitFileDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/SplitFileDialog.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/StartupOptionsPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/StartupOptionsPage.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/StartupOptionsPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/StartupOptionsPage.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/StatusBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/StatusBar.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/StatusBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/StatusBar.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/StatusBarView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/StatusBarView.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/StatusBarView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/StatusBarView.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/Storage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/Storage.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/Storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/Storage.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/SystemFontHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/SystemFontHelper.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/SystemFontHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/SystemFontHelper.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/Tab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/Tab.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/Tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/Tab.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/TabBacking.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/TabBacking.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/TabBacking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/TabBacking.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/TabContainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/TabContainer.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/TabContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/TabContainer.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/TabContextMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/TabContextMenu.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/TabContextMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/TabContextMenu.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/TabEvents.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/TabEvents.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/TabEvents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/TabEvents.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/TabHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/TabHandler.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/TabHistoryMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/TabHistoryMenu.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/TabHistoryMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/TabHistoryMenu.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/TabList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/TabList.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/TabList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/TabList.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/TabParentItemsMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/TabParentItemsMenu.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/TabParentItemsMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/TabParentItemsMenu.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/TabRegistryStorage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/TabRegistryStorage.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/TabRegistryStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/TabRegistryStorage.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/TabRestorer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/TabRestorer.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/TabRestorer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/TabRestorer.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/TabRestorerMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/TabRestorerMenu.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/TabRestorerMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/TabRestorerMenu.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/TabStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/TabStorage.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/TabView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/TabView.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/TabView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/TabView.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/TabViewDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/TabViewDelegate.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/TabXmlStorage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/TabXmlStorage.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/TabXmlStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/TabXmlStorage.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/TabsOptionsPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/TabsOptionsPage.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/TabsOptionsPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/TabsOptionsPage.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/TaskbarThumbnails.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/TaskbarThumbnails.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/TaskbarThumbnails.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/TaskbarThumbnails.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/TestHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/TestHelper.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/TestHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/TestHelper.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/Theme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/Theme.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/Theme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/Theme.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/ThemeManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ThemeManager.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/ThemeManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ThemeManager.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/ThemeWindowTracker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ThemeWindowTracker.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/ThemeWindowTracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ThemeWindowTracker.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/ToolbarContextMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ToolbarContextMenu.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/ToolbarContextMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ToolbarContextMenu.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/ToolbarHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ToolbarHelper.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/ToolbarHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ToolbarHelper.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/ToolbarView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ToolbarView.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/ToolbarView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ToolbarView.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/TreeView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/TreeView.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/TreeView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/TreeView.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/TreeViewAdapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/TreeViewAdapter.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/TreeViewAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/TreeViewAdapter.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/TreeViewDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/TreeViewDelegate.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/TreeViewNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/TreeViewNode.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/TreeViewNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/TreeViewNode.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/UIThreadExecutor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/UIThreadExecutor.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/UIThreadExecutor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/UIThreadExecutor.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/UpdateCheckDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/UpdateCheckDialog.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/UpdateCheckDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/UpdateCheckDialog.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/ValueWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ValueWrapper.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/Version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/Version.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/Version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/Version.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/VersionConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/VersionConstants.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/VersionHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/VersionHelper.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/VersionHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/VersionHelper.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/ViewModeHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ViewModeHelper.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/ViewsMenuBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ViewsMenuBuilder.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/ViewsMenuBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/ViewsMenuBuilder.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/WildcardSelectDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/WildcardSelectDialog.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/Win32ResourceLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/Win32ResourceLoader.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/WinMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/WinMain.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/WindowOptionsPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/WindowOptionsPage.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/WindowOptionsPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/WindowOptionsPage.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/WindowStorage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/WindowStorage.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/WindowStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/WindowStorage.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/WindowXmlStorage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/WindowXmlStorage.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/WindowXmlStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/WindowXmlStorage.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/XmlAppStorage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/XmlAppStorage.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/XmlAppStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/XmlAppStorage.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/XmlAppStorageFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/XmlAppStorageFactory.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/res/Display Window.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/res/Display Window.ico -------------------------------------------------------------------------------- /Explorer++/Explorer++/res/Explorer++.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/res/Explorer++.ico -------------------------------------------------------------------------------- /Explorer++/Explorer++/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/resource.h -------------------------------------------------------------------------------- /Explorer++/Explorer++/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/stdafx.cpp -------------------------------------------------------------------------------- /Explorer++/Explorer++/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Explorer++/stdafx.h -------------------------------------------------------------------------------- /Explorer++/Helper/AutoReset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/AutoReset.h -------------------------------------------------------------------------------- /Explorer++/Helper/Base64Wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/Base64Wrapper.h -------------------------------------------------------------------------------- /Explorer++/Helper/BaseWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/BaseWindow.cpp -------------------------------------------------------------------------------- /Explorer++/Helper/BaseWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/BaseWindow.h -------------------------------------------------------------------------------- /Explorer++/Helper/BetterEnumsWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/BetterEnumsWrapper.h -------------------------------------------------------------------------------- /Explorer++/Helper/BulkClipboardWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/BulkClipboardWriter.cpp -------------------------------------------------------------------------------- /Explorer++/Helper/BulkClipboardWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/BulkClipboardWriter.h -------------------------------------------------------------------------------- /Explorer++/Helper/CachedIcons.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/CachedIcons.cpp -------------------------------------------------------------------------------- /Explorer++/Helper/CachedIcons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/CachedIcons.h -------------------------------------------------------------------------------- /Explorer++/Helper/Clipboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/Clipboard.cpp -------------------------------------------------------------------------------- /Explorer++/Helper/Clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/Clipboard.h -------------------------------------------------------------------------------- /Explorer++/Helper/ClipboardHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/ClipboardHelper.cpp -------------------------------------------------------------------------------- /Explorer++/Helper/ClipboardHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/ClipboardHelper.h -------------------------------------------------------------------------------- /Explorer++/Helper/ClipboardStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/ClipboardStore.h -------------------------------------------------------------------------------- /Explorer++/Helper/ClipboardWatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/ClipboardWatcher.cpp -------------------------------------------------------------------------------- /Explorer++/Helper/ClipboardWatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/ClipboardWatcher.h -------------------------------------------------------------------------------- /Explorer++/Helper/ComboBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/ComboBox.cpp -------------------------------------------------------------------------------- /Explorer++/Helper/ComboBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/ComboBox.h -------------------------------------------------------------------------------- /Explorer++/Helper/ComboBoxHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/ComboBoxHelper.cpp -------------------------------------------------------------------------------- /Explorer++/Helper/ComboBoxHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/ComboBoxHelper.h -------------------------------------------------------------------------------- /Explorer++/Helper/Console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/Console.cpp -------------------------------------------------------------------------------- /Explorer++/Helper/Console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/Console.h -------------------------------------------------------------------------------- /Explorer++/Helper/Controls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/Controls.cpp -------------------------------------------------------------------------------- /Explorer++/Helper/Controls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/Controls.h -------------------------------------------------------------------------------- /Explorer++/Helper/DataExchangeHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/DataExchangeHelper.cpp -------------------------------------------------------------------------------- /Explorer++/Helper/DataExchangeHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/DataExchangeHelper.h -------------------------------------------------------------------------------- /Explorer++/Helper/DataObjectImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/DataObjectImpl.cpp -------------------------------------------------------------------------------- /Explorer++/Helper/DataObjectImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/DataObjectImpl.h -------------------------------------------------------------------------------- /Explorer++/Helper/DataObjectWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/DataObjectWrapper.cpp -------------------------------------------------------------------------------- /Explorer++/Helper/DataObjectWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/DataObjectWrapper.h -------------------------------------------------------------------------------- /Explorer++/Helper/DetoursHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/DetoursHelper.cpp -------------------------------------------------------------------------------- /Explorer++/Helper/DetoursHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/DetoursHelper.h -------------------------------------------------------------------------------- /Explorer++/Helper/DialogSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/DialogSettings.cpp -------------------------------------------------------------------------------- /Explorer++/Helper/DialogSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/DialogSettings.h -------------------------------------------------------------------------------- /Explorer++/Helper/DisableUnaligned.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/DisableUnaligned.h -------------------------------------------------------------------------------- /Explorer++/Helper/DoubleBufferedPaint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/DoubleBufferedPaint.cpp -------------------------------------------------------------------------------- /Explorer++/Helper/DoubleBufferedPaint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/DoubleBufferedPaint.h -------------------------------------------------------------------------------- /Explorer++/Helper/DpiCompatibility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/DpiCompatibility.cpp -------------------------------------------------------------------------------- /Explorer++/Helper/DpiCompatibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/DpiCompatibility.h -------------------------------------------------------------------------------- /Explorer++/Helper/DragDropHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/DragDropHelper.cpp -------------------------------------------------------------------------------- /Explorer++/Helper/DragDropHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/DragDropHelper.h -------------------------------------------------------------------------------- /Explorer++/Helper/DriveInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/DriveInfo.cpp -------------------------------------------------------------------------------- /Explorer++/Helper/DriveInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/DriveInfo.h -------------------------------------------------------------------------------- /Explorer++/Helper/DropHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/DropHandler.cpp -------------------------------------------------------------------------------- /Explorer++/Helper/DropHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/DropHandler.h -------------------------------------------------------------------------------- /Explorer++/Helper/DropSourceImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/DropSourceImpl.cpp -------------------------------------------------------------------------------- /Explorer++/Helper/DropSourceImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/DropSourceImpl.h -------------------------------------------------------------------------------- /Explorer++/Helper/DropTargetWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/DropTargetWindow.cpp -------------------------------------------------------------------------------- /Explorer++/Helper/DropTargetWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/DropTargetWindow.h -------------------------------------------------------------------------------- /Explorer++/Helper/EnumFormatEtcImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/EnumFormatEtcImpl.cpp -------------------------------------------------------------------------------- /Explorer++/Helper/EnumFormatEtcImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/EnumFormatEtcImpl.h -------------------------------------------------------------------------------- /Explorer++/Helper/FileActionHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/FileActionHandler.cpp -------------------------------------------------------------------------------- /Explorer++/Helper/FileActionHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/FileActionHandler.h -------------------------------------------------------------------------------- /Explorer++/Helper/FileDialogs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/FileDialogs.cpp -------------------------------------------------------------------------------- /Explorer++/Helper/FileDialogs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/FileDialogs.h -------------------------------------------------------------------------------- /Explorer++/Helper/FileOperations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/FileOperations.cpp -------------------------------------------------------------------------------- /Explorer++/Helper/FileOperations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/FileOperations.h -------------------------------------------------------------------------------- /Explorer++/Helper/FolderSize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/FolderSize.cpp -------------------------------------------------------------------------------- /Explorer++/Helper/FolderSize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/FolderSize.h -------------------------------------------------------------------------------- /Explorer++/Helper/GdiplusHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/GdiplusHelper.cpp -------------------------------------------------------------------------------- /Explorer++/Helper/GdiplusHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/GdiplusHelper.h -------------------------------------------------------------------------------- /Explorer++/Helper/Helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/Helper.cpp -------------------------------------------------------------------------------- /Explorer++/Helper/Helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/Helper.h -------------------------------------------------------------------------------- /Explorer++/Helper/Helper.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/Helper.vcxproj -------------------------------------------------------------------------------- /Explorer++/Helper/Helper.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/Helper.vcxproj.filters -------------------------------------------------------------------------------- /Explorer++/Helper/ImageHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/ImageHelper.cpp -------------------------------------------------------------------------------- /Explorer++/Helper/ImageHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/ImageHelper.h -------------------------------------------------------------------------------- /Explorer++/Helper/KeyboardState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/KeyboardState.h -------------------------------------------------------------------------------- /Explorer++/Helper/KeyboardStateImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/KeyboardStateImpl.cpp -------------------------------------------------------------------------------- /Explorer++/Helper/KeyboardStateImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/KeyboardStateImpl.h -------------------------------------------------------------------------------- /Explorer++/Helper/ListViewHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/ListViewHelper.cpp -------------------------------------------------------------------------------- /Explorer++/Helper/ListViewHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/ListViewHelper.h -------------------------------------------------------------------------------- /Explorer++/Helper/MenuHelpTextHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/MenuHelpTextHost.h -------------------------------------------------------------------------------- /Explorer++/Helper/MenuHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/MenuHelper.cpp -------------------------------------------------------------------------------- /Explorer++/Helper/MenuHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/MenuHelper.h -------------------------------------------------------------------------------- /Explorer++/Helper/MessageForwarder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/MessageForwarder.cpp -------------------------------------------------------------------------------- /Explorer++/Helper/MessageForwarder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/MessageForwarder.h -------------------------------------------------------------------------------- /Explorer++/Helper/MessageWindowHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/MessageWindowHelper.cpp -------------------------------------------------------------------------------- /Explorer++/Helper/MessageWindowHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/MessageWindowHelper.h -------------------------------------------------------------------------------- /Explorer++/Helper/MovableModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/MovableModel.h -------------------------------------------------------------------------------- /Explorer++/Helper/PassKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/PassKey.h -------------------------------------------------------------------------------- /Explorer++/Helper/Pidl.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/Pidl.natvis -------------------------------------------------------------------------------- /Explorer++/Helper/PidlHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/PidlHelper.cpp -------------------------------------------------------------------------------- /Explorer++/Helper/PidlHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/PidlHelper.h -------------------------------------------------------------------------------- /Explorer++/Helper/ProcessHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/ProcessHelper.cpp -------------------------------------------------------------------------------- /Explorer++/Helper/ProcessHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/ProcessHelper.h -------------------------------------------------------------------------------- /Explorer++/Helper/ReferenceCount.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/ReferenceCount.cpp -------------------------------------------------------------------------------- /Explorer++/Helper/ReferenceCount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/ReferenceCount.h -------------------------------------------------------------------------------- /Explorer++/Helper/RegistrySettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/RegistrySettings.cpp -------------------------------------------------------------------------------- /Explorer++/Helper/RegistrySettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/RegistrySettings.h -------------------------------------------------------------------------------- /Explorer++/Helper/RemoveMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/RemoveMode.h -------------------------------------------------------------------------------- /Explorer++/Helper/ResizableDialogHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/ResizableDialogHelper.cpp -------------------------------------------------------------------------------- /Explorer++/Helper/ResizableDialogHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/ResizableDialogHelper.h -------------------------------------------------------------------------------- /Explorer++/Helper/ResourceHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/ResourceHelper.cpp -------------------------------------------------------------------------------- /Explorer++/Helper/ResourceHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/ResourceHelper.h -------------------------------------------------------------------------------- /Explorer++/Helper/RichEditHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/RichEditHelper.cpp -------------------------------------------------------------------------------- /Explorer++/Helper/RichEditHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/RichEditHelper.h -------------------------------------------------------------------------------- /Explorer++/Helper/ScopedBitmapLock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/ScopedBitmapLock.cpp -------------------------------------------------------------------------------- /Explorer++/Helper/ScopedBitmapLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/ScopedBitmapLock.h -------------------------------------------------------------------------------- /Explorer++/Helper/ScopedRedrawDisabler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/ScopedRedrawDisabler.cpp -------------------------------------------------------------------------------- /Explorer++/Helper/ScopedRedrawDisabler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/ScopedRedrawDisabler.h -------------------------------------------------------------------------------- /Explorer++/Helper/ScopedStopSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/ScopedStopSource.cpp -------------------------------------------------------------------------------- /Explorer++/Helper/ScopedStopSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/ScopedStopSource.h -------------------------------------------------------------------------------- /Explorer++/Helper/ServiceProviderBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/ServiceProviderBase.cpp -------------------------------------------------------------------------------- /Explorer++/Helper/ServiceProviderBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/ServiceProviderBase.h -------------------------------------------------------------------------------- /Explorer++/Helper/SetDefaultFileManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/SetDefaultFileManager.cpp -------------------------------------------------------------------------------- /Explorer++/Helper/SetDefaultFileManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/SetDefaultFileManager.h -------------------------------------------------------------------------------- /Explorer++/Helper/ShellContextMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/ShellContextMenu.cpp -------------------------------------------------------------------------------- /Explorer++/Helper/ShellContextMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/ShellContextMenu.h -------------------------------------------------------------------------------- /Explorer++/Helper/ShellContextMenuBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/ShellContextMenuBuilder.h -------------------------------------------------------------------------------- /Explorer++/Helper/ShellContextMenuDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/ShellContextMenuDelegate.h -------------------------------------------------------------------------------- /Explorer++/Helper/ShellDropTargetWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/ShellDropTargetWindow.cpp -------------------------------------------------------------------------------- /Explorer++/Helper/ShellDropTargetWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/ShellDropTargetWindow.h -------------------------------------------------------------------------------- /Explorer++/Helper/ShellHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/ShellHelper.cpp -------------------------------------------------------------------------------- /Explorer++/Helper/ShellHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/ShellHelper.h -------------------------------------------------------------------------------- /Explorer++/Helper/ShellItemContextMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/ShellItemContextMenu.cpp -------------------------------------------------------------------------------- /Explorer++/Helper/ShellItemContextMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/ShellItemContextMenu.h -------------------------------------------------------------------------------- /Explorer++/Helper/SignalHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/SignalHelper.h -------------------------------------------------------------------------------- /Explorer++/Helper/SignalWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/SignalWrapper.h -------------------------------------------------------------------------------- /Explorer++/Helper/SortDirection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/SortDirection.h -------------------------------------------------------------------------------- /Explorer++/Helper/StringHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/StringHelper.cpp -------------------------------------------------------------------------------- /Explorer++/Helper/StringHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/StringHelper.h -------------------------------------------------------------------------------- /Explorer++/Helper/SystemClipboardStore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/SystemClipboardStore.cpp -------------------------------------------------------------------------------- /Explorer++/Helper/SystemClipboardStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/SystemClipboardStore.h -------------------------------------------------------------------------------- /Explorer++/Helper/SystemClock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/SystemClock.h -------------------------------------------------------------------------------- /Explorer++/Helper/SystemClockImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/SystemClockImpl.cpp -------------------------------------------------------------------------------- /Explorer++/Helper/SystemClockImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/SystemClockImpl.h -------------------------------------------------------------------------------- /Explorer++/Helper/TabHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/TabHelper.cpp -------------------------------------------------------------------------------- /Explorer++/Helper/TabHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/TabHelper.h -------------------------------------------------------------------------------- /Explorer++/Helper/TimeHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/TimeHelper.cpp -------------------------------------------------------------------------------- /Explorer++/Helper/TimeHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/TimeHelper.h -------------------------------------------------------------------------------- /Explorer++/Helper/UniqueResources.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/UniqueResources.cpp -------------------------------------------------------------------------------- /Explorer++/Helper/UniqueResources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/UniqueResources.h -------------------------------------------------------------------------------- /Explorer++/Helper/UniqueThreadId.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/UniqueThreadId.cpp -------------------------------------------------------------------------------- /Explorer++/Helper/UniqueThreadId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/UniqueThreadId.h -------------------------------------------------------------------------------- /Explorer++/Helper/UniqueVariableSizeStruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/UniqueVariableSizeStruct.h -------------------------------------------------------------------------------- /Explorer++/Helper/WeakPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/WeakPtr.h -------------------------------------------------------------------------------- /Explorer++/Helper/WeakPtrFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/WeakPtrFactory.h -------------------------------------------------------------------------------- /Explorer++/Helper/WeakState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/WeakState.h -------------------------------------------------------------------------------- /Explorer++/Helper/WilExtraTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/WilExtraTypes.cpp -------------------------------------------------------------------------------- /Explorer++/Helper/WilExtraTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/WilExtraTypes.h -------------------------------------------------------------------------------- /Explorer++/Helper/WinRTBaseWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/WinRTBaseWrapper.h -------------------------------------------------------------------------------- /Explorer++/Helper/WindowHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/WindowHelper.cpp -------------------------------------------------------------------------------- /Explorer++/Helper/WindowHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/WindowHelper.h -------------------------------------------------------------------------------- /Explorer++/Helper/WindowSubclass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/WindowSubclass.cpp -------------------------------------------------------------------------------- /Explorer++/Helper/WindowSubclass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/WindowSubclass.h -------------------------------------------------------------------------------- /Explorer++/Helper/XMLSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/XMLSettings.cpp -------------------------------------------------------------------------------- /Explorer++/Helper/XMLSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/XMLSettings.h -------------------------------------------------------------------------------- /Explorer++/Helper/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/stdafx.cpp -------------------------------------------------------------------------------- /Explorer++/Helper/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Helper/stdafx.h -------------------------------------------------------------------------------- /Explorer++/Installer/Explorer++.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Installer/Explorer++.wxs -------------------------------------------------------------------------------- /Explorer++/Installer/Installer.wixproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Installer/Installer.wixproj -------------------------------------------------------------------------------- /Explorer++/Installer/res/gpl-3.0.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Installer/res/gpl-3.0.rtf -------------------------------------------------------------------------------- /Explorer++/TestExplorer++/AddressBarTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/TestExplorer++/AddressBarTest.cpp -------------------------------------------------------------------------------- /Explorer++/TestExplorer++/AutoResetTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/TestExplorer++/AutoResetTest.cpp -------------------------------------------------------------------------------- /Explorer++/TestExplorer++/BrowserTestBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/TestExplorer++/BrowserTestBase.h -------------------------------------------------------------------------------- /Explorer++/TestExplorer++/ClangCLLibs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/TestExplorer++/ClangCLLibs.cpp -------------------------------------------------------------------------------- /Explorer++/TestExplorer++/ClipboardTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/TestExplorer++/ClipboardTest.cpp -------------------------------------------------------------------------------- /Explorer++/TestExplorer++/ColorRuleTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/TestExplorer++/ColorRuleTest.cpp -------------------------------------------------------------------------------- /Explorer++/TestExplorer++/ControlsTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/TestExplorer++/ControlsTest.cpp -------------------------------------------------------------------------------- /Explorer++/TestExplorer++/CopiedBookmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/TestExplorer++/CopiedBookmark.cpp -------------------------------------------------------------------------------- /Explorer++/TestExplorer++/CopiedBookmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/TestExplorer++/CopiedBookmark.h -------------------------------------------------------------------------------- /Explorer++/TestExplorer++/DriveModelTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/TestExplorer++/DriveModelTest.cpp -------------------------------------------------------------------------------- /Explorer++/TestExplorer++/DriveWatcherFake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/TestExplorer++/DriveWatcherFake.h -------------------------------------------------------------------------------- /Explorer++/TestExplorer++/EventScopeTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/TestExplorer++/EventScopeTest.cpp -------------------------------------------------------------------------------- /Explorer++/TestExplorer++/ExecutorTestBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/TestExplorer++/ExecutorTestBase.h -------------------------------------------------------------------------------- /Explorer++/TestExplorer++/ExecutorWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/TestExplorer++/ExecutorWrapper.h -------------------------------------------------------------------------------- /Explorer++/TestExplorer++/GTestHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/TestExplorer++/GTestHelper.h -------------------------------------------------------------------------------- /Explorer++/TestExplorer++/HelperTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/TestExplorer++/HelperTest.cpp -------------------------------------------------------------------------------- /Explorer++/TestExplorer++/IconFetcherFake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/TestExplorer++/IconFetcherFake.h -------------------------------------------------------------------------------- /Explorer++/TestExplorer++/ImageTestHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/TestExplorer++/ImageTestHelper.h -------------------------------------------------------------------------------- /Explorer++/TestExplorer++/ListViewItemFake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/TestExplorer++/ListViewItemFake.h -------------------------------------------------------------------------------- /Explorer++/TestExplorer++/ListViewTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/TestExplorer++/ListViewTest.cpp -------------------------------------------------------------------------------- /Explorer++/TestExplorer++/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/TestExplorer++/Main.cpp -------------------------------------------------------------------------------- /Explorer++/TestExplorer++/ManifestTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/TestExplorer++/ManifestTest.cpp -------------------------------------------------------------------------------- /Explorer++/TestExplorer++/MenuHelperTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/TestExplorer++/MenuHelperTest.cpp -------------------------------------------------------------------------------- /Explorer++/TestExplorer++/MenuViewFake.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/TestExplorer++/MenuViewFake.cpp -------------------------------------------------------------------------------- /Explorer++/TestExplorer++/MenuViewFake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/TestExplorer++/MenuViewFake.h -------------------------------------------------------------------------------- /Explorer++/TestExplorer++/MenuViewTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/TestExplorer++/MenuViewTest.cpp -------------------------------------------------------------------------------- /Explorer++/TestExplorer++/MessageLoop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/TestExplorer++/MessageLoop.cpp -------------------------------------------------------------------------------- /Explorer++/TestExplorer++/MessageLoop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/TestExplorer++/MessageLoop.h -------------------------------------------------------------------------------- /Explorer++/TestExplorer++/PidlHelperTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/TestExplorer++/PidlHelperTest.cpp -------------------------------------------------------------------------------- /Explorer++/TestExplorer++/Resources/EnumerationTestDirectory/folder1/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Explorer++/TestExplorer++/Resources/EnumerationTestDirectory/folder2/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Explorer++/TestExplorer++/Resources/EnumerationTestDirectory/hidden.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Explorer++/TestExplorer++/Resources/EnumerationTestDirectory/item1.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Explorer++/TestExplorer++/Resources/EnumerationTestDirectory/item2.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Explorer++/TestExplorer++/Resources/EnumerationTestDirectory/item3.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Explorer++/TestExplorer++/Resources/tabs.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/TestExplorer++/Resources/tabs.reg -------------------------------------------------------------------------------- /Explorer++/TestExplorer++/Resources/tabs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/TestExplorer++/Resources/tabs.xml -------------------------------------------------------------------------------- /Explorer++/TestExplorer++/RuntimeTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/TestExplorer++/RuntimeTest.cpp -------------------------------------------------------------------------------- /Explorer++/TestExplorer++/ScopedTestDir.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/TestExplorer++/ScopedTestDir.cpp -------------------------------------------------------------------------------- /Explorer++/TestExplorer++/ScopedTestDir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/TestExplorer++/ScopedTestDir.h -------------------------------------------------------------------------------- /Explorer++/TestExplorer++/ShellBrowserFake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/TestExplorer++/ShellBrowserFake.h -------------------------------------------------------------------------------- /Explorer++/TestExplorer++/ShellTestHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/TestExplorer++/ShellTestHelper.h -------------------------------------------------------------------------------- /Explorer++/TestExplorer++/StorageTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/TestExplorer++/StorageTest.cpp -------------------------------------------------------------------------------- /Explorer++/TestExplorer++/SystemClockFake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/TestExplorer++/SystemClockFake.h -------------------------------------------------------------------------------- /Explorer++/TestExplorer++/TabEventsTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/TestExplorer++/TabEventsTest.cpp -------------------------------------------------------------------------------- /Explorer++/TestExplorer++/TabHelperTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/TestExplorer++/TabHelperTest.cpp -------------------------------------------------------------------------------- /Explorer++/TestExplorer++/TabListTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/TestExplorer++/TabListTest.cpp -------------------------------------------------------------------------------- /Explorer++/TestExplorer++/TabTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/TestExplorer++/TabTest.cpp -------------------------------------------------------------------------------- /Explorer++/TestExplorer++/TabViewTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/TestExplorer++/TabViewTest.cpp -------------------------------------------------------------------------------- /Explorer++/TestExplorer++/TestExplorer++.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/TestExplorer++/TestExplorer++.rc -------------------------------------------------------------------------------- /Explorer++/TestExplorer++/TestResources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/TestExplorer++/TestResources.h -------------------------------------------------------------------------------- /Explorer++/TestExplorer++/TestResources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/TestExplorer++/TestResources.rc -------------------------------------------------------------------------------- /Explorer++/TestExplorer++/TreeViewNodeFake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/TestExplorer++/TreeViewNodeFake.h -------------------------------------------------------------------------------- /Explorer++/TestExplorer++/TreeViewTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/TestExplorer++/TreeViewTest.cpp -------------------------------------------------------------------------------- /Explorer++/TestExplorer++/VersionTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/TestExplorer++/VersionTest.cpp -------------------------------------------------------------------------------- /Explorer++/TestExplorer++/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/TestExplorer++/pch.cpp -------------------------------------------------------------------------------- /Explorer++/TestExplorer++/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/TestExplorer++/pch.h -------------------------------------------------------------------------------- /Explorer++/TestHelper/Helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/TestHelper/Helper.cpp -------------------------------------------------------------------------------- /Explorer++/TestHelper/Helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/TestHelper/Helper.h -------------------------------------------------------------------------------- /Explorer++/TestHelper/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/TestHelper/Main.cpp -------------------------------------------------------------------------------- /Explorer++/TestHelper/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/TestHelper/Readme.txt -------------------------------------------------------------------------------- /Explorer++/TestHelper/TestFolderSize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/TestHelper/TestFolderSize.cpp -------------------------------------------------------------------------------- /Explorer++/TestHelper/TestHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/TestHelper/TestHelper.cpp -------------------------------------------------------------------------------- /Explorer++/TestHelper/TestHelper.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/TestHelper/TestHelper.vcxproj -------------------------------------------------------------------------------- /Explorer++/TestHelper/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/TestHelper/stdafx.cpp -------------------------------------------------------------------------------- /Explorer++/TestHelper/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/TestHelper/stdafx.h -------------------------------------------------------------------------------- /Explorer++/ThirdParty/CTPL/cpl_stl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/ThirdParty/CTPL/cpl_stl.h -------------------------------------------------------------------------------- /Explorer++/Toolset.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/Toolset.props -------------------------------------------------------------------------------- /Explorer++/VersionNumber.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/VersionNumber.props -------------------------------------------------------------------------------- /Explorer++/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Explorer++/targetver.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/LICENSE -------------------------------------------------------------------------------- /Plugins/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Plugins/Readme.txt -------------------------------------------------------------------------------- /Plugins/sample_manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Plugins/sample_manifest.json -------------------------------------------------------------------------------- /Plugins/sort_tabs_by_name/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Plugins/sort_tabs_by_name/plugin.json -------------------------------------------------------------------------------- /Plugins/update_accelerators/empty.lua: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Plugins/update_accelerators/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Plugins/update_accelerators/plugin.json -------------------------------------------------------------------------------- /Plugins/update_theme_colors/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Plugins/update_theme_colors/plugin.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/README.md -------------------------------------------------------------------------------- /Scripts/explorer++_win+e_binding.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Scripts/explorer++_win+e_binding.ahk -------------------------------------------------------------------------------- /Scripts/explorer_updater.BAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Scripts/explorer_updater.BAT -------------------------------------------------------------------------------- /Translations/Explorer++AR_AE/Explorer++.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Translations/Explorer++AR_AE/Explorer++.rc -------------------------------------------------------------------------------- /Translations/Explorer++AR_AE/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Translations/Explorer++AR_AE/resource.h -------------------------------------------------------------------------------- /Translations/Explorer++CA/Explorer++.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Translations/Explorer++CA/Explorer++.rc -------------------------------------------------------------------------------- /Translations/Explorer++CA/Explorer++Main.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Translations/Explorer++CA/Explorer++Main.rc -------------------------------------------------------------------------------- /Translations/Explorer++CA/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Translations/Explorer++CA/resource.h -------------------------------------------------------------------------------- /Translations/Explorer++CS/Explorer++.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Translations/Explorer++CS/Explorer++.rc -------------------------------------------------------------------------------- /Translations/Explorer++CS/Explorer++Main.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Translations/Explorer++CS/Explorer++Main.rc -------------------------------------------------------------------------------- /Translations/Explorer++CS/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Translations/Explorer++CS/resource.h -------------------------------------------------------------------------------- /Translations/Explorer++DA/Explorer++.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Translations/Explorer++DA/Explorer++.rc -------------------------------------------------------------------------------- /Translations/Explorer++DA/Explorer++Main.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Translations/Explorer++DA/Explorer++Main.rc -------------------------------------------------------------------------------- /Translations/Explorer++DA/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Translations/Explorer++DA/resource.h -------------------------------------------------------------------------------- /Translations/Explorer++DE/Explorer++.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Translations/Explorer++DE/Explorer++.rc -------------------------------------------------------------------------------- /Translations/Explorer++DE/Explorer++Main.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Translations/Explorer++DE/Explorer++Main.rc -------------------------------------------------------------------------------- /Translations/Explorer++DE/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Translations/Explorer++DE/resource.h -------------------------------------------------------------------------------- /Translations/Explorer++EL/Explorer++.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Translations/Explorer++EL/Explorer++.rc -------------------------------------------------------------------------------- /Translations/Explorer++EL/Explorer++Main.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Translations/Explorer++EL/Explorer++Main.rc -------------------------------------------------------------------------------- /Translations/Explorer++EL/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Translations/Explorer++EL/resource.h -------------------------------------------------------------------------------- /Translations/Explorer++ES/Explorer++.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Translations/Explorer++ES/Explorer++.rc -------------------------------------------------------------------------------- /Translations/Explorer++ES/Explorer++Main.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Translations/Explorer++ES/Explorer++Main.rc -------------------------------------------------------------------------------- /Translations/Explorer++ES/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Translations/Explorer++ES/resource.h -------------------------------------------------------------------------------- /Translations/Explorer++FA/Explorer++.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Translations/Explorer++FA/Explorer++.rc -------------------------------------------------------------------------------- /Translations/Explorer++FA/Explorer++Main.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Translations/Explorer++FA/Explorer++Main.rc -------------------------------------------------------------------------------- /Translations/Explorer++FA/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Translations/Explorer++FA/resource.h -------------------------------------------------------------------------------- /Translations/Explorer++FI/Explorer++.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Translations/Explorer++FI/Explorer++.rc -------------------------------------------------------------------------------- /Translations/Explorer++FI/Explorer++Main.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Translations/Explorer++FI/Explorer++Main.rc -------------------------------------------------------------------------------- /Translations/Explorer++FI/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Translations/Explorer++FI/resource.h -------------------------------------------------------------------------------- /Translations/Explorer++FR/Explorer++.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Translations/Explorer++FR/Explorer++.rc -------------------------------------------------------------------------------- /Translations/Explorer++FR/Explorer++Main.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Translations/Explorer++FR/Explorer++Main.rc -------------------------------------------------------------------------------- /Translations/Explorer++FR/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Translations/Explorer++FR/resource.h -------------------------------------------------------------------------------- /Translations/Explorer++HE/Explorer++.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Translations/Explorer++HE/Explorer++.rc -------------------------------------------------------------------------------- /Translations/Explorer++HE/Explorer++Main.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Translations/Explorer++HE/Explorer++Main.rc -------------------------------------------------------------------------------- /Translations/Explorer++HE/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Translations/Explorer++HE/resource.h -------------------------------------------------------------------------------- /Translations/Explorer++HU/Explorer++.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Translations/Explorer++HU/Explorer++.rc -------------------------------------------------------------------------------- /Translations/Explorer++HU/Explorer++Main.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Translations/Explorer++HU/Explorer++Main.rc -------------------------------------------------------------------------------- /Translations/Explorer++HU/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Translations/Explorer++HU/resource.h -------------------------------------------------------------------------------- /Translations/Explorer++IT/Explorer++.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Translations/Explorer++IT/Explorer++.rc -------------------------------------------------------------------------------- /Translations/Explorer++IT/Explorer++Main.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Translations/Explorer++IT/Explorer++Main.rc -------------------------------------------------------------------------------- /Translations/Explorer++IT/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Translations/Explorer++IT/resource.h -------------------------------------------------------------------------------- /Translations/Explorer++JA/Explorer++.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Translations/Explorer++JA/Explorer++.rc -------------------------------------------------------------------------------- /Translations/Explorer++JA/Explorer++Main.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Translations/Explorer++JA/Explorer++Main.rc -------------------------------------------------------------------------------- /Translations/Explorer++JA/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Translations/Explorer++JA/resource.h -------------------------------------------------------------------------------- /Translations/Explorer++KO/Explorer++.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Translations/Explorer++KO/Explorer++.rc -------------------------------------------------------------------------------- /Translations/Explorer++KO/Explorer++Main.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Translations/Explorer++KO/Explorer++Main.rc -------------------------------------------------------------------------------- /Translations/Explorer++KO/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Translations/Explorer++KO/resource.h -------------------------------------------------------------------------------- /Translations/Explorer++NL/Explorer++.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Translations/Explorer++NL/Explorer++.rc -------------------------------------------------------------------------------- /Translations/Explorer++NL/Explorer++Main.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Translations/Explorer++NL/Explorer++Main.rc -------------------------------------------------------------------------------- /Translations/Explorer++NL/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Translations/Explorer++NL/resource.h -------------------------------------------------------------------------------- /Translations/Explorer++NO/Explorer++.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Translations/Explorer++NO/Explorer++.rc -------------------------------------------------------------------------------- /Translations/Explorer++NO/Explorer++Main.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Translations/Explorer++NO/Explorer++Main.rc -------------------------------------------------------------------------------- /Translations/Explorer++NO/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Translations/Explorer++NO/resource.h -------------------------------------------------------------------------------- /Translations/Explorer++PL/Explorer++.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Translations/Explorer++PL/Explorer++.rc -------------------------------------------------------------------------------- /Translations/Explorer++PL/Explorer++Main.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Translations/Explorer++PL/Explorer++Main.rc -------------------------------------------------------------------------------- /Translations/Explorer++PL/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Translations/Explorer++PL/resource.h -------------------------------------------------------------------------------- /Translations/Explorer++PT/Explorer++.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Translations/Explorer++PT/Explorer++.rc -------------------------------------------------------------------------------- /Translations/Explorer++PT/Explorer++Main.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Translations/Explorer++PT/Explorer++Main.rc -------------------------------------------------------------------------------- /Translations/Explorer++PT/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Translations/Explorer++PT/resource.h -------------------------------------------------------------------------------- /Translations/Explorer++PT_BR/Explorer++.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Translations/Explorer++PT_BR/Explorer++.rc -------------------------------------------------------------------------------- /Translations/Explorer++PT_BR/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Translations/Explorer++PT_BR/resource.h -------------------------------------------------------------------------------- /Translations/Explorer++RO/Explorer++.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Translations/Explorer++RO/Explorer++.rc -------------------------------------------------------------------------------- /Translations/Explorer++RO/Explorer++Main.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Translations/Explorer++RO/Explorer++Main.rc -------------------------------------------------------------------------------- /Translations/Explorer++RO/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Translations/Explorer++RO/resource.h -------------------------------------------------------------------------------- /Translations/Explorer++RU/Explorer++.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Translations/Explorer++RU/Explorer++.rc -------------------------------------------------------------------------------- /Translations/Explorer++RU/Explorer++Main.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Translations/Explorer++RU/Explorer++Main.rc -------------------------------------------------------------------------------- /Translations/Explorer++RU/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Translations/Explorer++RU/resource.h -------------------------------------------------------------------------------- /Translations/Explorer++SI/Explorer++.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Translations/Explorer++SI/Explorer++.rc -------------------------------------------------------------------------------- /Translations/Explorer++SI/Explorer++Main.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Translations/Explorer++SI/Explorer++Main.rc -------------------------------------------------------------------------------- /Translations/Explorer++SI/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Translations/Explorer++SI/resource.h -------------------------------------------------------------------------------- /Translations/Explorer++SV/Explorer++.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Translations/Explorer++SV/Explorer++.rc -------------------------------------------------------------------------------- /Translations/Explorer++SV/Explorer++Main.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Translations/Explorer++SV/Explorer++Main.rc -------------------------------------------------------------------------------- /Translations/Explorer++SV/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Translations/Explorer++SV/resource.h -------------------------------------------------------------------------------- /Translations/Explorer++TR/Explorer++.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Translations/Explorer++TR/Explorer++.rc -------------------------------------------------------------------------------- /Translations/Explorer++TR/Explorer++Main.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Translations/Explorer++TR/Explorer++Main.rc -------------------------------------------------------------------------------- /Translations/Explorer++TR/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Translations/Explorer++TR/resource.h -------------------------------------------------------------------------------- /Translations/Explorer++UK/Explorer++.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Translations/Explorer++UK/Explorer++.rc -------------------------------------------------------------------------------- /Translations/Explorer++UK/Explorer++Main.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Translations/Explorer++UK/Explorer++Main.rc -------------------------------------------------------------------------------- /Translations/Explorer++UK/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Translations/Explorer++UK/resource.h -------------------------------------------------------------------------------- /Translations/Explorer++VI/Explorer++.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Translations/Explorer++VI/Explorer++.rc -------------------------------------------------------------------------------- /Translations/Explorer++VI/Explorer++Main.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Translations/Explorer++VI/Explorer++Main.rc -------------------------------------------------------------------------------- /Translations/Explorer++VI/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Translations/Explorer++VI/resource.h -------------------------------------------------------------------------------- /Translations/Explorer++ZH_CN/Explorer++.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Translations/Explorer++ZH_CN/Explorer++.rc -------------------------------------------------------------------------------- /Translations/Explorer++ZH_CN/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Translations/Explorer++ZH_CN/resource.h -------------------------------------------------------------------------------- /Translations/Explorer++ZH_TW/Explorer++.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Translations/Explorer++ZH_TW/Explorer++.rc -------------------------------------------------------------------------------- /Translations/Explorer++ZH_TW/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Translations/Explorer++ZH_TW/resource.h -------------------------------------------------------------------------------- /Translations/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/Translations/README.txt -------------------------------------------------------------------------------- /VcpkgCustomPorts/concurrencpp/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/VcpkgCustomPorts/concurrencpp/portfile.cmake -------------------------------------------------------------------------------- /VcpkgCustomPorts/concurrencpp/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/VcpkgCustomPorts/concurrencpp/vcpkg.json -------------------------------------------------------------------------------- /VcpkgCustomPorts/cppcodec/0001-Fix-62.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/VcpkgCustomPorts/cppcodec/0001-Fix-62.patch -------------------------------------------------------------------------------- /VcpkgCustomPorts/cppcodec/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/VcpkgCustomPorts/cppcodec/portfile.cmake -------------------------------------------------------------------------------- /VcpkgCustomPorts/cppcodec/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/VcpkgCustomPorts/cppcodec/vcpkg.json -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/appveyor.yml -------------------------------------------------------------------------------- /authenticode.pfx.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/authenticode.pfx.enc -------------------------------------------------------------------------------- /crowdin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/crowdin.yaml -------------------------------------------------------------------------------- /vcpkg-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/vcpkg-configuration.json -------------------------------------------------------------------------------- /vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derceg/explorerplusplus/HEAD/vcpkg.json --------------------------------------------------------------------------------