Ejemplo n.º 1
0
 public void fillCommandObject(GpsBabelCommand gbc)
 {
     gbc.InputIOType   = iotype;
     gbc.InputFileName = InputFileName;
     gbc.InputCustom   = InputCustomArgs;
     gbc.InputFormat   = fileSelector.FormatName;
     gbc.InputOptions  = fileSelector.getOptionsText();
 }
Ejemplo n.º 2
0
 public void fillCommandObject(GpsBabelCommand gbc)
 {
     if (radioButtonAerial.Checked)
     {
         gbc.MapType = MapType.Aerial;
     }
     else if (radioButtonColorAerial.Checked)
     {
         gbc.MapType = MapType.ColorAerial;
     }
     else if (radioButtonTopo.Checked)
     {
         gbc.MapType = MapType.Topo;
     }
     else if (radioButtonNone.Checked)
     {
         gbc.MapType = MapType.None;
     }
     gbc.OutputIOType   = iotype;
     gbc.OutputFileName = OutputFileName;
     gbc.OutputCustom   = OutputCustomArgs;
     gbc.OutputFormat   = fileSelector.FormatName;
     gbc.OutputOptions  = fileSelector.getOptionsText();
 }
Ejemplo n.º 3
0
 public void fillCommandObject(GpsBabelCommand gbc)
 {
     gbc.FilterOptions = m_textPane.OptionsText;
 }