5 changed files
BExplorer/BetterExplorer | ||
BEH64.dll | ||
FileOperation.exe.config | ||
MainWindow.xaml | ||
MainWindow.xaml.cs | ||
FileOperation | ||
FileOperation.csproj | ||
FileOperation.exe.config
/BExplorer/BetterExplorer/FileOperation.exe.config-4/BExplorer/BetterExplorer/FileOperation.exe.config
Add comment 1 Minus <?xml version="1.0"?>
Add comment 2 Minus <configuration>
Add comment 3 Minus <startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5"/></startup></configuration>
Add comment 4 Minus
MainWindow.xaml
/BExplorer/BetterExplorer/MainWindow.xaml-5+8/BExplorer/BetterExplorer/MainWindow.xaml
Add comment 994 <Ribbon:CheckBox x:Name="chkDrive"
Add comment 995 Checked="chkDrive_Checked"
Add comment 996 Header="{StaticResource ctbDriveToolsCP}"
Add comment 997 Minus IsEnabled="False"
Add comment 998 997 Unchecked="chkDrive_Unchecked" />
Add comment 999 998 <Ribbon:CheckBox x:Name="chkArchive"
Add comment 1000 999 Checked="chkArchive_Checked"
Add comment 1012 1011 Checked="chkLibrary_Checked"
Add comment 1013 1012 Header="{StaticResource ctbLibrariesCP}"
Add comment 1014 1013 Unchecked="chkLibrary_Unchecked" />
Add comment 1014 Plus <Ribbon:CheckBox x:Name="chkVirtualTools"
Add comment 1015 Plus Checked="chkVirtualTools_Checked"
Add comment 1016 Plus Header="Virtual Disk Tools"
Add comment 1017 Plus Unchecked="chkVirtualTools_Unchecked" />
Add comment 1015 1018 </StackPanel>
Add comment 1016 1019
Add comment 1017 1020 <Ribbon:SeparatorTabItem Margin="0,300,0,0"
Add comment 1162 1165 <Ribbon:CheckBox x:Name="chkIsLastTabCloseApp" Click="chkIsLastTabCloseApp_Click" Header="Closing last Tab closes Application" Margin="7,275,0,0" VerticalAlignment="Top" Height="22"/>
Add comment 1163 1166 </Grid>
Add comment 1164 1167 </TabItem>
Add comment 1165 Minus <Ribbon:SeparatorTabItem Header="Accounts" Visibility="Collapsed" />
Add comment 1168 Plus <Ribbon:SeparatorTabItem Header="Accounts" />
Add comment 1166 1169 <TabItem Header="Social Media"
Add comment 1167 Minus Ribbon:KeyTip.Keys="M" Visibility="Collapsed">
Add comment 1170 Plus Ribbon:KeyTip.Keys="M" >
Add comment 1168 1171 <Grid Margin="20,5,0,0">
Add comment 1169 1172 <Ribbon:SeparatorTabItem VerticalAlignment="Top" Margin="0,0,0,0"
Add comment 1170 1173 Header="Connected Social Media Accounts"
Add comment 1187 1190 </Grid>
Add comment 1188 1191 </TabItem>
Add comment 1189 1192 <TabItem Header="Online Storage"
Add comment 1190 Minus Ribbon:KeyTip.Keys="O" Visibility="Collapsed">
Add comment 1193 Plus Ribbon:KeyTip.Keys="O">
Add comment 1191 1194 <Grid Margin="20,5,0,0">
Add comment 1192 1195 <Ribbon:SeparatorTabItem VerticalAlignment="Top" Margin="0,0,0,0"
Add comment 1193 1196 Header="Connected Online Storage Accounts"
Add comment 1210 1213 </Grid>
Add comment 1211 1214 </TabItem>
Add comment 1212 1215 <TabItem Header="FTP / WebDAV"
Add comment 1213 Minus Ribbon:KeyTip.Keys="F" Visibility="Collapsed">
Add comment 1216 Plus Ribbon:KeyTip.Keys="F">
Add comment 1214 1217 <Grid Margin="20,5,0,0">
Add comment 1215 1218 <Ribbon:SeparatorTabItem VerticalAlignment="Top" Margin="0,0,0,0"
Add comment 1216 1219 Header="FTP / WebDAV Servers"
MainWindow.xaml.cs
/BExplorer/BetterExplorer/MainWindow.xaml.cs-10+28/BExplorer/BetterExplorer/MainWindow.xaml.cs
Add comment 108 bool asDrive = false;
Add comment 109 bool asApplication = false;
Add comment 110 bool asLibrary = false;
Add comment 111 Plus bool asVirtualDrive = false;
Add comment 111 112 bool canlogactions = false;
Add comment 112 113 string sessionid = DateTime.UtcNow.ToFileTimeUtc().ToString();
Add comment 113 114 string logdir = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) + "\\BExplorer\\ActionLog\\";
Add comment 342 343 rks.SetValue(@"AutoSwitchApplicationTools", GetIntegerFromBoolean(asApplication));
Add comment 343 344 rks.SetValue(@"AutoSwitchLibraryTools", GetIntegerFromBoolean(asLibrary));
Add comment 344 345 rks.SetValue(@"AutoSwitchDriveTools", GetIntegerFromBoolean(asDrive));
Add comment 346 Plus rks.SetValue(@"AutoSwitchVirtualDriveTools", GetIntegerFromBoolean(asVirtualDrive));
Add comment 345 347 rks.SetValue(@"IsLastTabCloseApp", GetIntegerFromBoolean(this.IsCloseLastTabCloseApp));
Add comment 346 348 if (this.IsConsoleShown)
Add comment 347 349 rks.SetValue(@"CmdWinHeight", rCommandPrompt.ActualHeight, RegistryValueKind.DWord);
Add comment 1762 1764 {
Add comment 1763 1765 #region Archive Contextual Tab
Add comment 1764 1766 ctgArchive.Visibility = BooleanToVisibiliy(selectedItemsCount == 1 && Archives.Contains(Path.GetExtension(selectedItem.ParsingName).ToLowerInvariant()));
Add comment 1765 Minus if (asArchive == true)
Add comment 1767 Plus if (asArchive == true && ctgArchive.Visibility == System.Windows.Visibility.Visible)
Add comment 1766 1768 {
Add comment 1767 1769 TheRibbon.SelectedTabItem = ctgArchive.Items[0];
Add comment 1768 1770 }
Add comment 1770 1772
Add comment 1771 1773 #region Drive Contextual Tab
Add comment 1772 1774 ctgDrive.Visibility = BooleanToVisibiliy((selectedItemsCount == 1 && ((selectedItem != null && selectedItem.IsDrive) || (selectedItem != null && selectedItem.Parent != null && selectedItem.Parent.IsDrive))) || ((Explorer.NavigationLog.CurrentLocation.IsDrive)));
Add comment 1773 Minus if (asDrive == true)
Add comment 1775 Plus if (asDrive == true && ctgDrive.Visibility == System.Windows.Visibility.Visible && (selectedItem != null && selectedItem.IsDrive))
Add comment 1774 1776 {
Add comment 1775 1777 TheRibbon.SelectedTabItem = ctgDrive.Items[0];
Add comment 1776 1778 }
Add comment 1777 1779 #endregion
Add comment 1778 1780
Add comment 1779 1781 #region Application Context Tab
Add comment 1780 Minus ctgExe.Visibility = BooleanToVisibiliy(selectedItemsCount == 1 && (Path.GetExtension(selectedItem.ParsingName).ToLowerInvariant() == ".exe" || Path.GetExtension(selectedItem.ParsingName).ToLowerInvariant() == ".msi"));
Add comment 1781 Minus if (asApplication == true)
Add comment 1782 Plus ctgExe.Visibility = BooleanToVisibiliy(selectedItemsCount == 1 && (Path.GetExtension(selectedItem.ParsingName).ToLowerInvariant() == ".exe" || Path.GetExtension(selectedItem.ParsingName).ToLowerInvariant() == ".msi") && selectedItem.IsFolder == false);
Add comment 1783 Plus if (asApplication == true && ctgExe.Visibility == System.Windows.Visibility.Visible)
Add comment 1782 1784 {
Add comment 1783 1785 TheRibbon.SelectedTabItem = ctgExe.Items[0];
Add comment 1784 1786 }
Add comment 1786 1788
Add comment 1787 1789 #region Folder Tools Context Tab
Add comment 1788 1790 ctgFolderTools.Visibility = BooleanToVisibiliy((selectedItemsCount == 1 && ((selectedItem.IsFolder && selectedItem.IsFileSystemObject && !selectedItem.IsDrive && !selectedItem.IsNetDrive))) || (Explorer.NavigationLog.CurrentLocation.IsFolder && Explorer.NavigationLog.CurrentLocation.IsFileSystemObject && !Explorer.NavigationLog.CurrentLocation.IsDrive && !Explorer.NavigationLog.CurrentLocation.IsNetDrive));
Add comment 1789 Minus if (asFolder == true)
Add comment 1791 Plus if (asFolder == true && ctgFolderTools.Visibility == System.Windows.Visibility.Visible)
Add comment 1790 1792 {
Add comment 1791 1793 TheRibbon.SelectedTabItem = ctgFolderTools.Items[0];
Add comment 1792 1794 }
Add comment 1793 1795 #endregion
Add comment 1794 1796
Add comment 1795 1797 #region Image Context Tab
Add comment 1796 Minus ctgImage.Visibility = BooleanToVisibiliy(selectedItemsCount == 1 && Images.Contains(Path.GetExtension(selectedItem.ParsingName).ToLowerInvariant()));
Add comment 1798 Plus ctgImage.Visibility = BooleanToVisibiliy(selectedItemsCount == 1 && Images.Contains(Path.GetExtension(selectedItem.ParsingName).ToLowerInvariant()) && selectedItem.IsFolder == false);
Add comment 1797 1799 if (ctgImage.Visibility == System.Windows.Visibility.Visible)
Add comment 1798 1800 {
Add comment 1799 1801 Bitmap cvt = new Bitmap(selectedItem.ParsingName);
Add comment 1811 1813
Add comment 1812 1814 #region Library Context Tab
Add comment 1813 1815 ctgLibraries.Visibility = BooleanToVisibiliy(selectedItemsCount == 1 && (Explorer.NavigationLog.CurrentLocation.Equals(KnownFolders.Libraries) || (selectedItem.Parent != null && selectedItem.Parent.Equals(KnownFolders.Libraries))));
Add comment 1814 Minus if (asLibrary == true)
Add comment 1816 Plus if (asLibrary == true && ctgLibraries.Visibility == Visibility.Visible)
Add comment 1815 1817 {
Add comment 1816 1818 TheRibbon.SelectedTabItem = ctgLibraries.Items[0];
Add comment 1817 1819 }
Add comment 1818 1820 #endregion
Add comment 1819 1821
Add comment 1820 1822 #region Virtual Disk Context Tab
Add comment 1821 Minus ctgVirtualDisk.Visibility = BooleanToVisibiliy(selectedItemsCount == 1 && (Path.GetExtension(selectedItem.ParsingName).ToLowerInvariant() == ".iso"));
Add comment 1823 Plus ctgVirtualDisk.Visibility = BooleanToVisibiliy(selectedItemsCount == 1 && (Path.GetExtension(selectedItem.ParsingName).ToLowerInvariant() == ".iso") && selectedItem.IsFolder == false);
Add comment 1824 Plus if (asVirtualDrive == true && ctgVirtualDisk.Visibility == System.Windows.Visibility.Visible)
Add comment 1825 Plus {
Add comment 1826 Plus TheRibbon.SelectedTabItem = ctgVirtualDisk.Items[0];
Add comment 1827 Plus }
Add comment 1822 1828 #endregion
Add comment 1823 1829
Add comment 1824 1830 #region Search Contextual Tab
Add comment 4697 4703 asImage = ((int)rks.GetValue(@"AutoSwitchImageTools", 1) == 1);
Add comment 4698 4704 asApplication = ((int)rks.GetValue(@"AutoSwitchApplicationTools", 0) == 1);
Add comment 4699 4705 asLibrary = ((int)rks.GetValue(@"AutoSwitchLibraryTools", 1) == 1);
Add comment 4700 Minus asDrive = ((int)rks.GetValue(@"AutoSwitchDriveTools", 0) == 1);
Add comment 4701 Minus
Add comment 4706 Plus asDrive = ((int)rks.GetValue(@"AutoSwitchDriveTools", 1) == 1);
Add comment 4707 Plus asVirtualDrive = ((int)rks.GetValue(@"AutoSwitchVirtualDriveTools", 0) == 1);
Add comment 4702 4708
Add comment 4703 4709
Add comment 4704 4710 chkFolder.IsChecked = asFolder;
Add comment 4707 4713 chkApp.IsChecked = asApplication;
Add comment 4708 4714 chkLibrary.IsChecked = asLibrary;
Add comment 4709 4715 chkDrive.IsChecked = asDrive;
Add comment 4716 Plus chkVirtualTools.IsChecked = asVirtualDrive;
Add comment 4710 4717
Add comment 4711 4718 // load OverwriteOnImages setting (default is false)
Add comment 4712 4719 int oor = (int)rks.GetValue(@"OverwriteImageWhileEditing", 0);
Add comment 8158 8165 asLibrary = false;
Add comment 8159 8166 }
Add comment 8160 8167
Add comment 8168 Plus
Add comment 8169 Plus private void chkVirtualTools_Checked(object sender, RoutedEventArgs e)
Add comment 8170 Plus {
Add comment 8171 Plus asVirtualDrive = true;
Add comment 8172 Plus }
Add comment 8173 Plus
Add comment 8174 Plus private void chkVirtualTools_Unchecked(object sender, RoutedEventArgs e)
Add comment 8175 Plus {
Add comment 8176 Plus asVirtualDrive = false;
Add comment 8177 Plus }
Add comment 8178 Plus
Add comment 8161 8179 #endregion
Add comment 8162 8180
Add comment 8163 8181 #region Tabs
Add comment 70 <DependentUpon>Resources.resx</DependentUpon>
Add comment 71 <DesignTime>True</DesignTime>
Add comment 72 </Compile>
Add comment 73 Minus <None Include="app.config" />
Add comment 74 73 <None Include="Properties\Settings.settings">
Add comment 75 74 <Generator>SettingsSingleFileGenerator</Generator>
Add comment 76 75 <LastGenOutput>Settings.Designer.cs</LastGenOutput>