├── .gitignore ├── Backup ├── Examples │ ├── FileDialog │ │ ├── FileDialog.Designer.cs │ │ ├── FileDialog.cs │ │ ├── FileDialog.csproj │ │ ├── FileDialog.resx │ │ ├── Program.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ └── app.config │ └── ShellExplorer │ │ ├── ExplorerForm.Designer.cs │ │ ├── ExplorerForm.cs │ │ ├── ExplorerForm.resx │ │ ├── Program.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ └── ShellExplorer.csproj ├── GongShell.sln ├── Shell │ ├── FileDialogToolbar.Designer.cs │ ├── FileDialogToolbar.cs │ ├── FileDialogToolbar.resx │ ├── FileFilterComboBox.cs │ ├── FileNameComboBox.cs │ ├── FilterItem.cs │ ├── Interop │ │ ├── BHID.cs │ │ ├── CoClass.cs │ │ ├── ComCtl32.cs │ │ ├── HResult.cs │ │ ├── ICommDlgBrowser.cs │ │ ├── IContextMenu.cs │ │ ├── IDropSource.cs │ │ ├── IDropTarget.cs │ │ ├── IEnumIDList.cs │ │ ├── IFileDialog.cs │ │ ├── IKnownFolder.cs │ │ ├── IKnownFolderManager.cs │ │ ├── IOleCommandTarget.cs │ │ ├── IQueryInfo.cs │ │ ├── IServiceProvider.cs │ │ ├── IShellBrowser.cs │ │ ├── IShellFolder.cs │ │ ├── IShellItem.cs │ │ ├── IShellItemArray.cs │ │ ├── IShellView.cs │ │ ├── Kernel32.cs │ │ ├── Ole32.cs │ │ ├── Shell32.cs │ │ ├── ShlWapi.cs │ │ ├── User32.cs │ │ └── VistaBridge │ │ │ └── ShellItemImpl.cs │ ├── KnownFolderManager.cs │ ├── PlacesToolbar.Designer.cs │ ├── PlacesToolbar.cs │ ├── PlacesToolbar.resx │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ └── Resources.resx │ ├── Resources │ │ ├── Back.bmp │ │ ├── NewFolder.bmp │ │ ├── Up.bmp │ │ └── Views.bmp │ ├── Shell.csproj │ ├── ShellBrowser.cs │ ├── ShellComboBox.cs │ ├── ShellContextMenu.cs │ ├── ShellHistory.cs │ ├── ShellItem.cs │ ├── ShellItemBrowseForm.Designer.cs │ ├── ShellItemBrowseForm.cs │ ├── ShellItemBrowseForm.resx │ ├── ShellItemEditor.cs │ ├── ShellNotificationListener.cs │ ├── ShellTreeView.cs │ ├── ShellView.cs │ └── SystemImageList.cs └── Tests │ └── ShellTest │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ └── ShellTest.csproj ├── Examples ├── FileDialog │ ├── FileDialog.Designer.cs │ ├── FileDialog.cs │ ├── FileDialog.csproj │ ├── FileDialog.resx │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── app.config │ ├── bin │ │ └── Debug │ │ │ ├── FileDialog.vshost.exe │ │ │ └── FileDialog.vshost.exe.config │ └── obj │ │ └── Debug │ │ └── DesignTimeResolveAssemblyReferencesInput.cache └── ShellExplorer │ ├── ExplorerForm.Designer.cs │ ├── ExplorerForm.cs │ ├── ExplorerForm.resx │ ├── Program.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── ShellExplorer.csproj │ └── obj │ └── Debug │ └── DesignTimeResolveAssemblyReferencesInput.cache ├── GongShell.sln ├── Licence.md ├── README.md ├── Shell ├── FileDialogForm.Designer.cs ├── FileDialogForm.cs ├── FileDialogForm.resx ├── FileDialogToolbar.Designer.cs ├── FileDialogToolbar.cs ├── FileDialogToolbar.resx ├── FileFilterComboBox.cs ├── FileNameComboBox.cs ├── FilterItem.cs ├── Interop │ ├── BHID.cs │ ├── CoClass.cs │ ├── ComCtl32.cs │ ├── HResult.cs │ ├── ICommDlgBrowser.cs │ ├── IContextMenu.cs │ ├── IDropSource.cs │ ├── IDropTarget.cs │ ├── IEnumIDList.cs │ ├── IFileDialog.cs │ ├── IKnownFolder.cs │ ├── IKnownFolderManager.cs │ ├── IOleCommandTarget.cs │ ├── IQueryInfo.cs │ ├── IServiceProvider.cs │ ├── IShellBrowser.cs │ ├── IShellFolder.cs │ ├── IShellItem.cs │ ├── IShellItemArray.cs │ ├── IShellView.cs │ ├── Kernel32.cs │ ├── Ole32.cs │ ├── Shell32.cs │ ├── ShlWapi.cs │ ├── User32.cs │ └── VistaBridge │ │ └── ShellItemImpl.cs ├── KnownFolderManager.cs ├── PlacesToolbar.Designer.cs ├── PlacesToolbar.cs ├── PlacesToolbar.resx ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── Resources │ ├── Back.bmp │ ├── Forward.bmp │ ├── NewFolder.bmp │ ├── Up.bmp │ └── Views.bmp ├── Shell.csproj ├── ShellBrowser.cs ├── ShellComboBox.cs ├── ShellContextMenu.cs ├── ShellHistory.cs ├── ShellItem.cs ├── ShellItemBrowseForm.Designer.cs ├── ShellItemBrowseForm.cs ├── ShellItemBrowseForm.resx ├── ShellItemEditor.cs ├── ShellNotificationListener.cs ├── ShellTreeView.cs ├── ShellView.cs ├── SystemImageList.cs └── obj │ └── Debug │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ └── TempPE │ └── Properties.Resources.Designer.cs.dll ├── Tests └── ShellTest │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── ShellTest.csproj │ └── packages.config ├── Website ├── Properties │ └── AssemblyInfo.cs ├── Website.csproj ├── default.css ├── features │ ├── images │ │ ├── filedialogtoolbar.png │ │ ├── filefiltercombobox.png │ │ ├── filenamecombobox.png │ │ ├── placestoolbar.png │ │ ├── shellcombobox.png │ │ ├── shelltreeview.png │ │ └── shellview.png │ └── index.php ├── images │ ├── fake-sidebar.png │ ├── filedialog-screen.png │ ├── gong-logo.png │ ├── shell.png │ ├── shell.svg │ ├── sidebar-separator.png │ └── sidebar-separator.svg ├── index.php ├── navigation.html ├── news.php └── tutorials │ ├── code.php │ ├── explorer.php │ ├── filedialog.php │ ├── images │ ├── explorer1.png │ ├── filedialog1.png │ └── filedialog2.png │ ├── index.php │ └── installing.php └── packages ├── NUnit.2.6.3 ├── NUnit.2.6.3.nupkg ├── NUnit.2.6.3.nuspec ├── lib │ ├── nunit.framework.dll │ └── nunit.framework.xml └── license.txt └── repositories.config /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/.gitignore -------------------------------------------------------------------------------- /Backup/Examples/FileDialog/FileDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Backup/Examples/FileDialog/FileDialog.Designer.cs -------------------------------------------------------------------------------- /Backup/Examples/FileDialog/FileDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Backup/Examples/FileDialog/FileDialog.cs -------------------------------------------------------------------------------- /Backup/Examples/FileDialog/FileDialog.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Backup/Examples/FileDialog/FileDialog.csproj -------------------------------------------------------------------------------- /Backup/Examples/FileDialog/FileDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Backup/Examples/FileDialog/FileDialog.resx -------------------------------------------------------------------------------- /Backup/Examples/FileDialog/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Backup/Examples/FileDialog/Program.cs -------------------------------------------------------------------------------- /Backup/Examples/FileDialog/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Backup/Examples/FileDialog/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Backup/Examples/FileDialog/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Backup/Examples/FileDialog/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Backup/Examples/FileDialog/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Backup/Examples/FileDialog/Properties/Resources.resx -------------------------------------------------------------------------------- /Backup/Examples/FileDialog/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Backup/Examples/FileDialog/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Backup/Examples/FileDialog/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Backup/Examples/FileDialog/Properties/Settings.settings -------------------------------------------------------------------------------- /Backup/Examples/FileDialog/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Backup/Examples/FileDialog/app.config -------------------------------------------------------------------------------- /Backup/Examples/ShellExplorer/ExplorerForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Backup/Examples/ShellExplorer/ExplorerForm.Designer.cs -------------------------------------------------------------------------------- /Backup/Examples/ShellExplorer/ExplorerForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Backup/Examples/ShellExplorer/ExplorerForm.cs -------------------------------------------------------------------------------- /Backup/Examples/ShellExplorer/ExplorerForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Backup/Examples/ShellExplorer/ExplorerForm.resx -------------------------------------------------------------------------------- /Backup/Examples/ShellExplorer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Backup/Examples/ShellExplorer/Program.cs -------------------------------------------------------------------------------- /Backup/Examples/ShellExplorer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Backup/Examples/ShellExplorer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Backup/Examples/ShellExplorer/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Backup/Examples/ShellExplorer/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Backup/Examples/ShellExplorer/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Backup/Examples/ShellExplorer/Properties/Resources.resx -------------------------------------------------------------------------------- /Backup/Examples/ShellExplorer/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Backup/Examples/ShellExplorer/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Backup/Examples/ShellExplorer/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Backup/Examples/ShellExplorer/Properties/Settings.settings -------------------------------------------------------------------------------- /Backup/Examples/ShellExplorer/ShellExplorer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Backup/Examples/ShellExplorer/ShellExplorer.csproj -------------------------------------------------------------------------------- /Backup/GongShell.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Backup/GongShell.sln -------------------------------------------------------------------------------- /Backup/Shell/FileDialogToolbar.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Backup/Shell/FileDialogToolbar.Designer.cs -------------------------------------------------------------------------------- /Backup/Shell/FileDialogToolbar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Backup/Shell/FileDialogToolbar.cs -------------------------------------------------------------------------------- /Backup/Shell/FileDialogToolbar.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Backup/Shell/FileDialogToolbar.resx -------------------------------------------------------------------------------- /Backup/Shell/FileFilterComboBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Backup/Shell/FileFilterComboBox.cs -------------------------------------------------------------------------------- /Backup/Shell/FileNameComboBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Backup/Shell/FileNameComboBox.cs -------------------------------------------------------------------------------- /Backup/Shell/FilterItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Backup/Shell/FilterItem.cs -------------------------------------------------------------------------------- /Backup/Shell/Interop/BHID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Backup/Shell/Interop/BHID.cs -------------------------------------------------------------------------------- /Backup/Shell/Interop/CoClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Backup/Shell/Interop/CoClass.cs -------------------------------------------------------------------------------- /Backup/Shell/Interop/ComCtl32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Backup/Shell/Interop/ComCtl32.cs -------------------------------------------------------------------------------- /Backup/Shell/Interop/HResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Backup/Shell/Interop/HResult.cs -------------------------------------------------------------------------------- /Backup/Shell/Interop/ICommDlgBrowser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Backup/Shell/Interop/ICommDlgBrowser.cs -------------------------------------------------------------------------------- /Backup/Shell/Interop/IContextMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Backup/Shell/Interop/IContextMenu.cs -------------------------------------------------------------------------------- /Backup/Shell/Interop/IDropSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Backup/Shell/Interop/IDropSource.cs -------------------------------------------------------------------------------- /Backup/Shell/Interop/IDropTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Backup/Shell/Interop/IDropTarget.cs -------------------------------------------------------------------------------- /Backup/Shell/Interop/IEnumIDList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Backup/Shell/Interop/IEnumIDList.cs -------------------------------------------------------------------------------- /Backup/Shell/Interop/IFileDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Backup/Shell/Interop/IFileDialog.cs -------------------------------------------------------------------------------- /Backup/Shell/Interop/IKnownFolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Backup/Shell/Interop/IKnownFolder.cs -------------------------------------------------------------------------------- /Backup/Shell/Interop/IKnownFolderManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Backup/Shell/Interop/IKnownFolderManager.cs -------------------------------------------------------------------------------- /Backup/Shell/Interop/IOleCommandTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Backup/Shell/Interop/IOleCommandTarget.cs -------------------------------------------------------------------------------- /Backup/Shell/Interop/IQueryInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Backup/Shell/Interop/IQueryInfo.cs -------------------------------------------------------------------------------- /Backup/Shell/Interop/IServiceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Backup/Shell/Interop/IServiceProvider.cs -------------------------------------------------------------------------------- /Backup/Shell/Interop/IShellBrowser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Backup/Shell/Interop/IShellBrowser.cs -------------------------------------------------------------------------------- /Backup/Shell/Interop/IShellFolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Backup/Shell/Interop/IShellFolder.cs -------------------------------------------------------------------------------- /Backup/Shell/Interop/IShellItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Backup/Shell/Interop/IShellItem.cs -------------------------------------------------------------------------------- /Backup/Shell/Interop/IShellItemArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Backup/Shell/Interop/IShellItemArray.cs -------------------------------------------------------------------------------- /Backup/Shell/Interop/IShellView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Backup/Shell/Interop/IShellView.cs -------------------------------------------------------------------------------- /Backup/Shell/Interop/Kernel32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Backup/Shell/Interop/Kernel32.cs -------------------------------------------------------------------------------- /Backup/Shell/Interop/Ole32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Backup/Shell/Interop/Ole32.cs -------------------------------------------------------------------------------- /Backup/Shell/Interop/Shell32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Backup/Shell/Interop/Shell32.cs -------------------------------------------------------------------------------- /Backup/Shell/Interop/ShlWapi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Backup/Shell/Interop/ShlWapi.cs -------------------------------------------------------------------------------- /Backup/Shell/Interop/User32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Backup/Shell/Interop/User32.cs -------------------------------------------------------------------------------- /Backup/Shell/Interop/VistaBridge/ShellItemImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Backup/Shell/Interop/VistaBridge/ShellItemImpl.cs -------------------------------------------------------------------------------- /Backup/Shell/KnownFolderManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Backup/Shell/KnownFolderManager.cs -------------------------------------------------------------------------------- /Backup/Shell/PlacesToolbar.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Backup/Shell/PlacesToolbar.Designer.cs -------------------------------------------------------------------------------- /Backup/Shell/PlacesToolbar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Backup/Shell/PlacesToolbar.cs -------------------------------------------------------------------------------- /Backup/Shell/PlacesToolbar.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Backup/Shell/PlacesToolbar.resx -------------------------------------------------------------------------------- /Backup/Shell/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Backup/Shell/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Backup/Shell/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Backup/Shell/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Backup/Shell/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Backup/Shell/Properties/Resources.resx -------------------------------------------------------------------------------- /Backup/Shell/Resources/Back.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Backup/Shell/Resources/Back.bmp -------------------------------------------------------------------------------- /Backup/Shell/Resources/NewFolder.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Backup/Shell/Resources/NewFolder.bmp -------------------------------------------------------------------------------- /Backup/Shell/Resources/Up.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Backup/Shell/Resources/Up.bmp -------------------------------------------------------------------------------- /Backup/Shell/Resources/Views.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Backup/Shell/Resources/Views.bmp -------------------------------------------------------------------------------- /Backup/Shell/Shell.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Backup/Shell/Shell.csproj -------------------------------------------------------------------------------- /Backup/Shell/ShellBrowser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Backup/Shell/ShellBrowser.cs -------------------------------------------------------------------------------- /Backup/Shell/ShellComboBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Backup/Shell/ShellComboBox.cs -------------------------------------------------------------------------------- /Backup/Shell/ShellContextMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Backup/Shell/ShellContextMenu.cs -------------------------------------------------------------------------------- /Backup/Shell/ShellHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Backup/Shell/ShellHistory.cs -------------------------------------------------------------------------------- /Backup/Shell/ShellItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Backup/Shell/ShellItem.cs -------------------------------------------------------------------------------- /Backup/Shell/ShellItemBrowseForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Backup/Shell/ShellItemBrowseForm.Designer.cs -------------------------------------------------------------------------------- /Backup/Shell/ShellItemBrowseForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Backup/Shell/ShellItemBrowseForm.cs -------------------------------------------------------------------------------- /Backup/Shell/ShellItemBrowseForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Backup/Shell/ShellItemBrowseForm.resx -------------------------------------------------------------------------------- /Backup/Shell/ShellItemEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Backup/Shell/ShellItemEditor.cs -------------------------------------------------------------------------------- /Backup/Shell/ShellNotificationListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Backup/Shell/ShellNotificationListener.cs -------------------------------------------------------------------------------- /Backup/Shell/ShellTreeView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Backup/Shell/ShellTreeView.cs -------------------------------------------------------------------------------- /Backup/Shell/ShellView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Backup/Shell/ShellView.cs -------------------------------------------------------------------------------- /Backup/Shell/SystemImageList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Backup/Shell/SystemImageList.cs -------------------------------------------------------------------------------- /Backup/Tests/ShellTest/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Backup/Tests/ShellTest/Program.cs -------------------------------------------------------------------------------- /Backup/Tests/ShellTest/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Backup/Tests/ShellTest/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Backup/Tests/ShellTest/ShellTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Backup/Tests/ShellTest/ShellTest.csproj -------------------------------------------------------------------------------- /Examples/FileDialog/FileDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Examples/FileDialog/FileDialog.Designer.cs -------------------------------------------------------------------------------- /Examples/FileDialog/FileDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Examples/FileDialog/FileDialog.cs -------------------------------------------------------------------------------- /Examples/FileDialog/FileDialog.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Examples/FileDialog/FileDialog.csproj -------------------------------------------------------------------------------- /Examples/FileDialog/FileDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Examples/FileDialog/FileDialog.resx -------------------------------------------------------------------------------- /Examples/FileDialog/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Examples/FileDialog/Program.cs -------------------------------------------------------------------------------- /Examples/FileDialog/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Examples/FileDialog/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Examples/FileDialog/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Examples/FileDialog/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Examples/FileDialog/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Examples/FileDialog/Properties/Resources.resx -------------------------------------------------------------------------------- /Examples/FileDialog/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Examples/FileDialog/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Examples/FileDialog/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Examples/FileDialog/Properties/Settings.settings -------------------------------------------------------------------------------- /Examples/FileDialog/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Examples/FileDialog/app.config -------------------------------------------------------------------------------- /Examples/FileDialog/bin/Debug/FileDialog.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Examples/FileDialog/bin/Debug/FileDialog.vshost.exe -------------------------------------------------------------------------------- /Examples/FileDialog/bin/Debug/FileDialog.vshost.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Examples/FileDialog/bin/Debug/FileDialog.vshost.exe.config -------------------------------------------------------------------------------- /Examples/FileDialog/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Examples/FileDialog/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Examples/ShellExplorer/ExplorerForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Examples/ShellExplorer/ExplorerForm.Designer.cs -------------------------------------------------------------------------------- /Examples/ShellExplorer/ExplorerForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Examples/ShellExplorer/ExplorerForm.cs -------------------------------------------------------------------------------- /Examples/ShellExplorer/ExplorerForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Examples/ShellExplorer/ExplorerForm.resx -------------------------------------------------------------------------------- /Examples/ShellExplorer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Examples/ShellExplorer/Program.cs -------------------------------------------------------------------------------- /Examples/ShellExplorer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Examples/ShellExplorer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Examples/ShellExplorer/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Examples/ShellExplorer/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Examples/ShellExplorer/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Examples/ShellExplorer/Properties/Resources.resx -------------------------------------------------------------------------------- /Examples/ShellExplorer/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Examples/ShellExplorer/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Examples/ShellExplorer/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Examples/ShellExplorer/Properties/Settings.settings -------------------------------------------------------------------------------- /Examples/ShellExplorer/ShellExplorer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Examples/ShellExplorer/ShellExplorer.csproj -------------------------------------------------------------------------------- /Examples/ShellExplorer/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Examples/ShellExplorer/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /GongShell.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/GongShell.sln -------------------------------------------------------------------------------- /Licence.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Licence.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/README.md -------------------------------------------------------------------------------- /Shell/FileDialogForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Shell/FileDialogForm.Designer.cs -------------------------------------------------------------------------------- /Shell/FileDialogForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Shell/FileDialogForm.cs -------------------------------------------------------------------------------- /Shell/FileDialogForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Shell/FileDialogForm.resx -------------------------------------------------------------------------------- /Shell/FileDialogToolbar.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Shell/FileDialogToolbar.Designer.cs -------------------------------------------------------------------------------- /Shell/FileDialogToolbar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Shell/FileDialogToolbar.cs -------------------------------------------------------------------------------- /Shell/FileDialogToolbar.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Shell/FileDialogToolbar.resx -------------------------------------------------------------------------------- /Shell/FileFilterComboBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Shell/FileFilterComboBox.cs -------------------------------------------------------------------------------- /Shell/FileNameComboBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Shell/FileNameComboBox.cs -------------------------------------------------------------------------------- /Shell/FilterItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Shell/FilterItem.cs -------------------------------------------------------------------------------- /Shell/Interop/BHID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Shell/Interop/BHID.cs -------------------------------------------------------------------------------- /Shell/Interop/CoClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Shell/Interop/CoClass.cs -------------------------------------------------------------------------------- /Shell/Interop/ComCtl32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Shell/Interop/ComCtl32.cs -------------------------------------------------------------------------------- /Shell/Interop/HResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Shell/Interop/HResult.cs -------------------------------------------------------------------------------- /Shell/Interop/ICommDlgBrowser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Shell/Interop/ICommDlgBrowser.cs -------------------------------------------------------------------------------- /Shell/Interop/IContextMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Shell/Interop/IContextMenu.cs -------------------------------------------------------------------------------- /Shell/Interop/IDropSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Shell/Interop/IDropSource.cs -------------------------------------------------------------------------------- /Shell/Interop/IDropTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Shell/Interop/IDropTarget.cs -------------------------------------------------------------------------------- /Shell/Interop/IEnumIDList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Shell/Interop/IEnumIDList.cs -------------------------------------------------------------------------------- /Shell/Interop/IFileDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Shell/Interop/IFileDialog.cs -------------------------------------------------------------------------------- /Shell/Interop/IKnownFolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Shell/Interop/IKnownFolder.cs -------------------------------------------------------------------------------- /Shell/Interop/IKnownFolderManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Shell/Interop/IKnownFolderManager.cs -------------------------------------------------------------------------------- /Shell/Interop/IOleCommandTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Shell/Interop/IOleCommandTarget.cs -------------------------------------------------------------------------------- /Shell/Interop/IQueryInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Shell/Interop/IQueryInfo.cs -------------------------------------------------------------------------------- /Shell/Interop/IServiceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Shell/Interop/IServiceProvider.cs -------------------------------------------------------------------------------- /Shell/Interop/IShellBrowser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Shell/Interop/IShellBrowser.cs -------------------------------------------------------------------------------- /Shell/Interop/IShellFolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Shell/Interop/IShellFolder.cs -------------------------------------------------------------------------------- /Shell/Interop/IShellItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Shell/Interop/IShellItem.cs -------------------------------------------------------------------------------- /Shell/Interop/IShellItemArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Shell/Interop/IShellItemArray.cs -------------------------------------------------------------------------------- /Shell/Interop/IShellView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Shell/Interop/IShellView.cs -------------------------------------------------------------------------------- /Shell/Interop/Kernel32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Shell/Interop/Kernel32.cs -------------------------------------------------------------------------------- /Shell/Interop/Ole32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Shell/Interop/Ole32.cs -------------------------------------------------------------------------------- /Shell/Interop/Shell32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Shell/Interop/Shell32.cs -------------------------------------------------------------------------------- /Shell/Interop/ShlWapi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Shell/Interop/ShlWapi.cs -------------------------------------------------------------------------------- /Shell/Interop/User32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Shell/Interop/User32.cs -------------------------------------------------------------------------------- /Shell/Interop/VistaBridge/ShellItemImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Shell/Interop/VistaBridge/ShellItemImpl.cs -------------------------------------------------------------------------------- /Shell/KnownFolderManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Shell/KnownFolderManager.cs -------------------------------------------------------------------------------- /Shell/PlacesToolbar.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Shell/PlacesToolbar.Designer.cs -------------------------------------------------------------------------------- /Shell/PlacesToolbar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Shell/PlacesToolbar.cs -------------------------------------------------------------------------------- /Shell/PlacesToolbar.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Shell/PlacesToolbar.resx -------------------------------------------------------------------------------- /Shell/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Shell/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Shell/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Shell/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Shell/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Shell/Properties/Resources.resx -------------------------------------------------------------------------------- /Shell/Resources/Back.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Shell/Resources/Back.bmp -------------------------------------------------------------------------------- /Shell/Resources/Forward.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Shell/Resources/Forward.bmp -------------------------------------------------------------------------------- /Shell/Resources/NewFolder.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Shell/Resources/NewFolder.bmp -------------------------------------------------------------------------------- /Shell/Resources/Up.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Shell/Resources/Up.bmp -------------------------------------------------------------------------------- /Shell/Resources/Views.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Shell/Resources/Views.bmp -------------------------------------------------------------------------------- /Shell/Shell.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Shell/Shell.csproj -------------------------------------------------------------------------------- /Shell/ShellBrowser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Shell/ShellBrowser.cs -------------------------------------------------------------------------------- /Shell/ShellComboBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Shell/ShellComboBox.cs -------------------------------------------------------------------------------- /Shell/ShellContextMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Shell/ShellContextMenu.cs -------------------------------------------------------------------------------- /Shell/ShellHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Shell/ShellHistory.cs -------------------------------------------------------------------------------- /Shell/ShellItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Shell/ShellItem.cs -------------------------------------------------------------------------------- /Shell/ShellItemBrowseForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Shell/ShellItemBrowseForm.Designer.cs -------------------------------------------------------------------------------- /Shell/ShellItemBrowseForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Shell/ShellItemBrowseForm.cs -------------------------------------------------------------------------------- /Shell/ShellItemBrowseForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Shell/ShellItemBrowseForm.resx -------------------------------------------------------------------------------- /Shell/ShellItemEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Shell/ShellItemEditor.cs -------------------------------------------------------------------------------- /Shell/ShellNotificationListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Shell/ShellNotificationListener.cs -------------------------------------------------------------------------------- /Shell/ShellTreeView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Shell/ShellTreeView.cs -------------------------------------------------------------------------------- /Shell/ShellView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Shell/ShellView.cs -------------------------------------------------------------------------------- /Shell/SystemImageList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Shell/SystemImageList.cs -------------------------------------------------------------------------------- /Shell/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Shell/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Shell/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Shell/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /Tests/ShellTest/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Tests/ShellTest/Program.cs -------------------------------------------------------------------------------- /Tests/ShellTest/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Tests/ShellTest/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Tests/ShellTest/ShellTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Tests/ShellTest/ShellTest.csproj -------------------------------------------------------------------------------- /Tests/ShellTest/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Tests/ShellTest/packages.config -------------------------------------------------------------------------------- /Website/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Website/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Website/Website.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Website/Website.csproj -------------------------------------------------------------------------------- /Website/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Website/default.css -------------------------------------------------------------------------------- /Website/features/images/filedialogtoolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Website/features/images/filedialogtoolbar.png -------------------------------------------------------------------------------- /Website/features/images/filefiltercombobox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Website/features/images/filefiltercombobox.png -------------------------------------------------------------------------------- /Website/features/images/filenamecombobox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Website/features/images/filenamecombobox.png -------------------------------------------------------------------------------- /Website/features/images/placestoolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Website/features/images/placestoolbar.png -------------------------------------------------------------------------------- /Website/features/images/shellcombobox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Website/features/images/shellcombobox.png -------------------------------------------------------------------------------- /Website/features/images/shelltreeview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Website/features/images/shelltreeview.png -------------------------------------------------------------------------------- /Website/features/images/shellview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Website/features/images/shellview.png -------------------------------------------------------------------------------- /Website/features/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Website/features/index.php -------------------------------------------------------------------------------- /Website/images/fake-sidebar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Website/images/fake-sidebar.png -------------------------------------------------------------------------------- /Website/images/filedialog-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Website/images/filedialog-screen.png -------------------------------------------------------------------------------- /Website/images/gong-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Website/images/gong-logo.png -------------------------------------------------------------------------------- /Website/images/shell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Website/images/shell.png -------------------------------------------------------------------------------- /Website/images/shell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Website/images/shell.svg -------------------------------------------------------------------------------- /Website/images/sidebar-separator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Website/images/sidebar-separator.png -------------------------------------------------------------------------------- /Website/images/sidebar-separator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Website/images/sidebar-separator.svg -------------------------------------------------------------------------------- /Website/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Website/index.php -------------------------------------------------------------------------------- /Website/navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Website/navigation.html -------------------------------------------------------------------------------- /Website/news.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Website/news.php -------------------------------------------------------------------------------- /Website/tutorials/code.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Website/tutorials/code.php -------------------------------------------------------------------------------- /Website/tutorials/explorer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Website/tutorials/explorer.php -------------------------------------------------------------------------------- /Website/tutorials/filedialog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Website/tutorials/filedialog.php -------------------------------------------------------------------------------- /Website/tutorials/images/explorer1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Website/tutorials/images/explorer1.png -------------------------------------------------------------------------------- /Website/tutorials/images/filedialog1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Website/tutorials/images/filedialog1.png -------------------------------------------------------------------------------- /Website/tutorials/images/filedialog2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Website/tutorials/images/filedialog2.png -------------------------------------------------------------------------------- /Website/tutorials/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Website/tutorials/index.php -------------------------------------------------------------------------------- /Website/tutorials/installing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/Website/tutorials/installing.php -------------------------------------------------------------------------------- /packages/NUnit.2.6.3/NUnit.2.6.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/packages/NUnit.2.6.3/NUnit.2.6.3.nupkg -------------------------------------------------------------------------------- /packages/NUnit.2.6.3/NUnit.2.6.3.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/packages/NUnit.2.6.3/NUnit.2.6.3.nuspec -------------------------------------------------------------------------------- /packages/NUnit.2.6.3/lib/nunit.framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/packages/NUnit.2.6.3/lib/nunit.framework.dll -------------------------------------------------------------------------------- /packages/NUnit.2.6.3/lib/nunit.framework.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/packages/NUnit.2.6.3/lib/nunit.framework.xml -------------------------------------------------------------------------------- /packages/NUnit.2.6.3/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/packages/NUnit.2.6.3/license.txt -------------------------------------------------------------------------------- /packages/repositories.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grokys/gong-shell/HEAD/packages/repositories.config --------------------------------------------------------------------------------