Exemple #1
0
        private void _customizeProcessMenuItem_Click(object sender, EventArgs e)
        {
            using (SelectProcess selectProc = new SelectProcess())
            {
                if (DialogResult.OK == selectProc.ShowDialog())
                {
                    foreach (ListViewItem item in _reservedProcessListView.Items)
                    {
                        if (string.Equals(item.Text, selectProc.ProcessName, StringComparison.InvariantCultureIgnoreCase))
                        {
                            MessageBox.Show("Sepcified process already exists.", "Process Exists", MessageBoxButtons.OK, MessageBoxIcon.Asterisk, MessageBoxDefaultButton.Button1);
                            return;
                        }
                    }
                    AppSwitchProcessSettings settings = new AppSwitchProcessSettings();
                    settings.Load(string.Format(@"{0}\{1}\{2}\{3}", GScrollRegistry.GScrollKey, GScrollRegistry.AppSwitchKey, GScrollRegistry.AppSwitch_ProcessKey, selectProc.ProcessName), true);

                    using (GeneralSettingsHost host = new GeneralSettingsHost())
                    {
                        if (DialogResult.OK == host.ShowDialog(string.Format("Settings for {0}", selectProc.ProcessName), settings))
                        {
                            ListViewItem newItem = new ListViewItem(new string[] { selectProc.ProcessName, settings.Ignore.ToString(), settings.CanClose.ToString(), settings.CanMinimize.ToString() });
                            newItem.Tag = settings;

                            _reservedProcessListView.Items.Add(newItem);
                        }
                        else
                        {
                            settings.Dispose();
                        }
                    }
                }
            }
        }
Exemple #2
0
        private void _editProcessMenuItem_Click(object sender, EventArgs e)
        {
            if (_reservedProcessListView.SelectedIndices.Count > 0)
            {
                ListViewItem             item     = _reservedProcessListView.Items[_reservedProcessListView.SelectedIndices[0]];
                AppSwitchProcessSettings settings = item.Tag as AppSwitchProcessSettings;

                using (GeneralSettingsHost host = new GeneralSettingsHost())
                {
                    host.ShowDialog(string.Format("Settings for {0}", item.Text), settings);
                    item.SubItems[1].Text = settings.Ignore.ToString();
                    item.SubItems[2].Text = settings.CanClose.ToString();
                    item.SubItems[3].Text = settings.CanMinimize.ToString();
                }
            }
        }
Exemple #3
0
        public void InitializeSettings()
        {
            using (RegistryKey rootKey = Registry.CurrentUser.CreateSubKey(string.Format(@"{0}\{1}", GScrollRegistry.GScrollKey, GScrollRegistry.AppSwitchKey)))
            {
                _enableShrinkAnimationCheckBox.Checked = (Convert.ToUInt32(rootKey.GetValue(GScrollRegistry.AppSwitch_EnableShrinkAnimation, 0)) != 0);
                _enableScrollAnimationCheckBox.Checked = (Convert.ToUInt32(rootKey.GetValue(GScrollRegistry.AppSwitch_EnableScrollAnimation, 0)) != 0);
                _enableThumbnailsCheckBox.Checked      = (Convert.ToUInt32(rootKey.GetValue(GScrollRegistry.AppSwitch_EnableThumbnails, 0)) != 0);
                _autoCloseDelayUpDown.Value            = Convert.ToUInt32(rootKey.GetValue(GScrollRegistry.AppSwitch_AutoCloseDelay, 0));
                _enableAutoCloseCheckBox.Checked       = (_autoCloseDelayUpDown.Value > 0);
            }
            using (RegistryKey rootKey = Registry.CurrentUser.CreateSubKey(string.Format(@"{0}\{1}\{2}", GScrollRegistry.GScrollKey, GScrollRegistry.AppSwitchKey, GScrollRegistry.AppSwitch_ProcessKey)))
            {
                foreach (string reservedProcValue in rootKey.GetSubKeyNames())
                {
                    AppSwitchProcessSettings settings = new AppSwitchProcessSettings();
                    settings.Load(string.Format(@"{0}\{1}\{2}\{3}", GScrollRegistry.GScrollKey, GScrollRegistry.AppSwitchKey, GScrollRegistry.AppSwitch_ProcessKey, reservedProcValue), false);

                    ListViewItem item = new ListViewItem(new string[] { reservedProcValue, settings.Ignore.ToString(), settings.CanClose.ToString(), settings.CanMinimize.ToString() });
                    item.Tag = settings;

                    this._reservedProcessListView.Items.Add(item);
                }
            }
        }
Exemple #4
0
        public void InitializeSettings()
        {
            using (RegistryKey rootKey = Registry.CurrentUser.CreateSubKey(string.Format(@"{0}\{1}", GScrollRegistry.GScrollKey, GScrollRegistry.AppSwitchKey)))
            {
                _enableShrinkAnimationCheckBox.Checked = (Convert.ToUInt32(rootKey.GetValue(GScrollRegistry.AppSwitch_EnableShrinkAnimation, 0)) != 0);
                _enableScrollAnimationCheckBox.Checked = (Convert.ToUInt32(rootKey.GetValue(GScrollRegistry.AppSwitch_EnableScrollAnimation, 0)) != 0);
                _enableThumbnailsCheckBox.Checked = (Convert.ToUInt32(rootKey.GetValue(GScrollRegistry.AppSwitch_EnableThumbnails, 0)) != 0);
                _autoCloseDelayUpDown.Value = Convert.ToUInt32(rootKey.GetValue(GScrollRegistry.AppSwitch_AutoCloseDelay, 0));
                _enableAutoCloseCheckBox.Checked = (_autoCloseDelayUpDown.Value > 0);
            }
            using (RegistryKey rootKey = Registry.CurrentUser.CreateSubKey(string.Format(@"{0}\{1}\{2}", GScrollRegistry.GScrollKey, GScrollRegistry.AppSwitchKey, GScrollRegistry.AppSwitch_ProcessKey)))
            {
                foreach (string reservedProcValue in rootKey.GetSubKeyNames())
                {
                    AppSwitchProcessSettings settings = new AppSwitchProcessSettings();
                    settings.Load(string.Format(@"{0}\{1}\{2}\{3}", GScrollRegistry.GScrollKey, GScrollRegistry.AppSwitchKey, GScrollRegistry.AppSwitch_ProcessKey, reservedProcValue), false);

                    ListViewItem item = new ListViewItem(new string[] { reservedProcValue, settings.Ignore.ToString(), settings.CanClose.ToString(), settings.CanMinimize.ToString() });
                    item.Tag = settings;

                    this._reservedProcessListView.Items.Add(item);
                }
            }
        }
Exemple #5
0
        private void _customizeProcessMenuItem_Click(object sender, EventArgs e)
        {
            using (SelectProcess selectProc = new SelectProcess())
            {
                if (DialogResult.OK == selectProc.ShowDialog())
                {
                    foreach (ListViewItem item in _reservedProcessListView.Items)
                    {
                        if (string.Equals(item.Text, selectProc.ProcessName, StringComparison.InvariantCultureIgnoreCase))
                        {
                            MessageBox.Show("Sepcified process already exists.", "Process Exists", MessageBoxButtons.OK, MessageBoxIcon.Asterisk, MessageBoxDefaultButton.Button1);
                            return;
                        }
                    }
                    AppSwitchProcessSettings settings = new AppSwitchProcessSettings();
                    settings.Load(string.Format(@"{0}\{1}\{2}\{3}", GScrollRegistry.GScrollKey, GScrollRegistry.AppSwitchKey, GScrollRegistry.AppSwitch_ProcessKey, selectProc.ProcessName), true);

                    using (GeneralSettingsHost host = new GeneralSettingsHost())
                    {
                        if (DialogResult.OK == host.ShowDialog(string.Format("Settings for {0}", selectProc.ProcessName), settings))
                        {
                            ListViewItem newItem = new ListViewItem(new string[] { selectProc.ProcessName, settings.Ignore.ToString(), settings.CanClose.ToString(), settings.CanMinimize.ToString() });
                            newItem.Tag = settings;

                            _reservedProcessListView.Items.Add(newItem);
                        }
                        else
                        {
                            settings.Dispose();
                        }
                    }
                }
            }
        }