Exemplo n.º 1
0
 public void LoadSettings(DebuggingOptionsPage optionsPage)
 {
     defaultGdb.Checked = !optionsPage.UseCustomGdb;
     customGdb.Checked  = optionsPage.UseCustomGdb;
     customGdbPath.Text = optionsPage.CustomGdbPath;
     extraArgs.Text     = optionsPage.GdbExtraArguments;
 }
 public void LoadSettings(DebuggingOptionsPage optionsPage)
 {
     defaultGdb.Checked = !optionsPage.UseCustomGdbPath;
     customGdb.Checked = optionsPage.UseCustomGdbPath;
     customGdbPath.Text = optionsPage.DebuggerLocation;
     extraArgs.Text = optionsPage.ExtraArgs;
 }
Exemplo n.º 3
0
 public void LoadSettings(DebuggingOptionsPage optionsPage)
 {
     defaultGdb.Checked = !optionsPage.UseCustomGdbPath;
     customGdb.Checked  = optionsPage.UseCustomGdbPath;
     customGdbPath.Text = optionsPage.DebuggerLocation;
     extraArgs.Text     = optionsPage.ExtraArgs;
 }
 public void LoadSettings(DebuggingOptionsPage optionsPage)
 {
     defaultGdb.Text = String.Format(customGdbTextFormat, EnvironmentPath.FindExePath("gdb") ?? "<none>");
     defaultGdb.Checked = !optionsPage.UseCustomGdbPath;
     customGdb.Checked = optionsPage.UseCustomGdbPath;
     customGdbPath.Text = optionsPage.DebuggerLocation;
     extraArgs.Text = optionsPage.ExtraArgs;
 }
Exemplo n.º 5
0
 public void LoadSettings(DebuggingOptionsPage optionsPage)
 {
     defaultGdb.Text    = String.Format(customGdbTextFormat, EnvironmentPath.FindExePath("gdb") ?? "<none>");
     defaultGdb.Checked = !optionsPage.UseCustomGdbPath;
     customGdb.Checked  = optionsPage.UseCustomGdbPath;
     customGdbPath.Text = optionsPage.DebuggerLocation;
     extraArgs.Text     = optionsPage.ExtraArgs;
 }
 public void ApplySettings(DebuggingOptionsPage optionsPage)
 {
     optionsPage.UseCustomGdbPath = customGdb.Checked;
     optionsPage.DebuggerLocation = customGdbPath.Text;
     optionsPage.ExtraArgs = extraArgs.Text;
 }
 public DebuggingOptionsPageControl(DebuggingOptionsPage options)
     : this()
 {
     LoadSettings(options);
 }
Exemplo n.º 8
0
 public void ApplySettings(DebuggingOptionsPage optionsPage)
 {
     optionsPage.UseCustomGdb      = customGdb.Checked;
     optionsPage.CustomGdbPath     = customGdbPath.Text;
     optionsPage.GdbExtraArguments = extraArgs.Text;
 }
Exemplo n.º 9
0
 public DebuggingOptionsPageControl(DebuggingOptionsPage options)
     : this()
 {
     LoadSettings(options);
 }
Exemplo n.º 10
0
 public void ApplySettings(DebuggingOptionsPage optionsPage)
 {
     optionsPage.UseCustomGdbPath = customGdb.Checked;
     optionsPage.DebuggerLocation = customGdbPath.Text;
     optionsPage.ExtraArgs        = extraArgs.Text;
 }
Exemplo n.º 11
0
 public void ApplySettings(DebuggingOptionsPage optionsPage)
 {
     optionsPage.DebuggerLocation = debuggerLocation.Text;
     optionsPage.ExtraArgs        = extraArgs.Text;
 }
Exemplo n.º 12
0
 public void LoadSettings(DebuggingOptionsPage optionsPage)
 {
     debuggerLocation.Text = optionsPage.DebuggerLocation;
     extraArgs.Text        = optionsPage.ExtraArgs;
 }
 public void LoadSettings(DebuggingOptionsPage optionsPage)
 {
     debuggerLocation.Text = optionsPage.DebuggerLocation;
     extraArgs.Text = optionsPage.ExtraArgs;
 }
 public void ApplySettings(DebuggingOptionsPage optionsPage)
 {
     optionsPage.DebuggerLocation = debuggerLocation.Text;
     optionsPage.ExtraArgs = extraArgs.Text;
 }