Example #1
0
 public BasePage(SolutionWrapper sol, ConvertConfig config)
 {
     InitializeComponent();
     this.sol = sol;
     this.config = config;
     this.Dock = DockStyle.Fill;
 }
 public ConvertationPage(SolutionWrapper sol, ConvertConfig config)
     : base(sol, config)
 {
     InitializeComponent();
     StatusLbl.Text = "";
     generator.LogEvent += new KeilProjectGenerator.LogEventDelegate(generator_LogEvent);
 }
        public ProjectsAndConfigurationsPage(SolutionWrapper sol, ConvertConfig config)
            : base(sol, config)
        {
            InitializeComponent();

            UpdateCells(sol.Projects);
        }
Example #4
0
        public void Generate(ConvertConfig cfg)
        {
            this.config = cfg;

            WorkerRunArgument argument = new WorkerRunArgument();

            argument.ConvertConfig = cfg;
            m_worker.RunWorkerAsync(argument);
        }
Example #5
0
 public ProcessorPage(SolutionWrapper sol, ConvertConfig config)
     : base(sol, config)
 {
     InitializeComponent();
 }
Example #6
0
 public SummaryPage(SolutionWrapper sol, ConvertConfig config)
     : base(sol, config)
 {
     InitializeComponent();
 }
        public void Generate(ConvertConfig cfg)
        {
            this.config = cfg;

            WorkerRunArgument argument = new WorkerRunArgument();
            argument.ConvertConfig = cfg;
            m_worker.RunWorkerAsync(argument);
        }
 public SelectPathPage(SolutionWrapper sol, ConvertConfig config)
     : base(sol, config)
 {
     InitializeComponent();
     DefaultString = Path.GetDirectoryName(PK.Wrapper.ExpandEnvVars(sol.ProjectPath, "")) + "\\uv2mpw";
 }