Skip to content
This repository has been archived by the owner on May 21, 2021. It is now read-only.

Commit

Permalink
Now disabling "Monitor processes" option in Applications tab when kio…
Browse files Browse the repository at this point in the history
…sk mode 'Disable Explorer Shell' is active. Added explanation in tool tip.
  • Loading branch information
danschlet committed Mar 3, 2016
1 parent ea858f0 commit 6591a3d
Show file tree
Hide file tree
Showing 3 changed files with 833 additions and 886 deletions.
10 changes: 4 additions & 6 deletions SebWindowsConfig/SebWindowsConfigForm.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

23 changes: 12 additions & 11 deletions SebWindowsConfig/SebWindowsConfigForm.cs
Expand Up @@ -584,20 +584,20 @@ private void UpdateAllWidgetsOfProgram()
// Group "Network - Certificates"

// Group "Network - Proxies"
radioButtonUseSystemProxySettings.Checked = ((int)SEBSettings.settingsCurrent[SEBSettings.KeyProxySettingsPolicy] == 0);
radioButtonUseSebProxySettings .Checked = ((int)SEBSettings.settingsCurrent[SEBSettings.KeyProxySettingsPolicy] == 1);
radioButtonUseSystemProxySettings.Checked = ((int)SEBSettings.settingsCurrent[SEBSettings.KeyProxySettingsPolicy] == 0);
radioButtonUseSebProxySettings.Checked = ((int)SEBSettings.settingsCurrent[SEBSettings.KeyProxySettingsPolicy] == 1);

textBoxAutoProxyConfigurationURL .Text = (String)SEBSettings.proxiesData[SEBSettings.KeyAutoConfigurationURL];
checkBoxExcludeSimpleHostnames .Checked = (Boolean)SEBSettings.proxiesData[SEBSettings.KeyExcludeSimpleHostnames];
checkBoxUsePassiveFTPMode .Checked = (Boolean)SEBSettings.proxiesData[SEBSettings.KeyFTPPassive];
textBoxAutoProxyConfigurationURL.Text = (String)SEBSettings.proxiesData[SEBSettings.KeyAutoConfigurationURL];
checkBoxExcludeSimpleHostnames.Checked = (Boolean)SEBSettings.proxiesData[SEBSettings.KeyExcludeSimpleHostnames];
checkBoxUsePassiveFTPMode.Checked = (Boolean)SEBSettings.proxiesData[SEBSettings.KeyFTPPassive];

// Group "Security"
listBoxSebServicePolicy.SelectedIndex = (int)SEBSettings.settingsCurrent[SEBSettings.KeySebServicePolicy];
checkBoxAllowVirtualMachine.Checked = (Boolean)SEBSettings.settingsCurrent[SEBSettings.KeyAllowVirtualMachine];
radioCreateNewDesktop .Checked = (Boolean)SEBSettings.settingsCurrent[SEBSettings.KeyCreateNewDesktop];
radioKillExplorerShell .Checked = (Boolean)SEBSettings.settingsCurrent[SEBSettings.KeyKillExplorerShell];
radioNoKiosMode .Checked = !(Boolean)SEBSettings.settingsCurrent[SEBSettings.KeyKillExplorerShell] && !(Boolean)SEBSettings.settingsCurrent[SEBSettings.KeyCreateNewDesktop];
checkBoxAllowUserSwitching .Checked = (Boolean)SEBSettings.settingsCurrent[SEBSettings.KeyAllowUserSwitching];
listBoxSebServicePolicy.SelectedIndex = (int)SEBSettings.settingsCurrent[SEBSettings.KeySebServicePolicy];
checkBoxAllowVirtualMachine.Checked = (Boolean)SEBSettings.settingsCurrent[SEBSettings.KeyAllowVirtualMachine];
radioCreateNewDesktop.Checked = (Boolean)SEBSettings.settingsCurrent[SEBSettings.KeyCreateNewDesktop];
radioKillExplorerShell.Checked = (Boolean)SEBSettings.settingsCurrent[SEBSettings.KeyKillExplorerShell];
radioNoKiosMode.Checked = !(Boolean)SEBSettings.settingsCurrent[SEBSettings.KeyKillExplorerShell] && !(Boolean)SEBSettings.settingsCurrent[SEBSettings.KeyCreateNewDesktop];
checkBoxAllowUserSwitching.Checked = (Boolean)SEBSettings.settingsCurrent[SEBSettings.KeyAllowUserSwitching];
checkBoxEnableAppSwitcherCheck.Checked = (Boolean)SEBSettings.settingsCurrent[SEBSettings.KeyEnableAppSwitcherCheck];
checkBoxForceAppFolderInstall.Checked = (Boolean)SEBSettings.settingsCurrent[SEBSettings.KeyForceAppFolderInstall];
checkBoxEnableLogging.Checked = (Boolean)SEBSettings.settingsCurrent[SEBSettings.KeyEnableLogging];
Expand Down Expand Up @@ -3327,6 +3327,7 @@ private void radioCreateNewDesktop_CheckedChanged(object sender, EventArgs e)
private void radioKillExplorerShell_CheckedChanged(object sender, EventArgs e)
{
SEBSettings.settingsCurrent[SEBSettings.KeyKillExplorerShell] = radioKillExplorerShell.Checked;
checkBoxMonitorProcesses.Enabled = !radioKillExplorerShell.Checked;
}

private void checkBoxAllowWlan_CheckedChanged(object sender, EventArgs e)
Expand Down

0 comments on commit 6591a3d

Please sign in to comment.