mirror of
https://github.com/danbulant/Cosmos
synced 2026-06-11 02:31:22 +00:00
This commit is contained in:
parent
006fd5b48e
commit
085f0d6352
4 changed files with 44 additions and 7 deletions
|
|
@ -21,7 +21,7 @@
|
|||
<EnableGDB>False</EnableGDB>
|
||||
<DebugMode>Source</DebugMode>
|
||||
<TraceMode>User</TraceMode>
|
||||
<BuildTarget>ISO</BuildTarget>
|
||||
<BuildTarget>PXE</BuildTarget>
|
||||
<VMWareFlavor>Player</VMWareFlavor>
|
||||
<StartCosmosGDB>false</StartCosmosGDB>
|
||||
<VMwareEdition>Player</VMwareEdition>
|
||||
|
|
@ -36,7 +36,7 @@
|
|||
<EnableGDB>False</EnableGDB>
|
||||
<DebugMode>Source</DebugMode>
|
||||
<TraceMode>User</TraceMode>
|
||||
<BuildTarget>ISO</BuildTarget>
|
||||
<BuildTarget>PXE</BuildTarget>
|
||||
<VMWareFlavor>Player</VMWareFlavor>
|
||||
<StartCosmosGDB>false</StartCosmosGDB>
|
||||
<VMwareEdition>Player</VMwareEdition>
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@
|
|||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
|
||||
<StartAction>Program</StartAction>
|
||||
<StartProgram>C:\Program Files\Microsoft Visual Studio 10.0\Common7\IDE\devenv.exe</StartProgram>
|
||||
<StartProgram>C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\devenv.exe</StartProgram>
|
||||
<StartArguments>d:\source\Cosmos\source2\Guess.sln</StartArguments>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
|
|
@ -60,12 +60,18 @@
|
|||
this.tabUSB = new System.Windows.Forms.TabPage();
|
||||
this.tabISO = new System.Windows.Forms.TabPage();
|
||||
this.tabSlave = new System.Windows.Forms.TabPage();
|
||||
this.label6 = new System.Windows.Forms.Label();
|
||||
this.label7 = new System.Windows.Forms.Label();
|
||||
this.label8 = new System.Windows.Forms.Label();
|
||||
this.TabControl1.SuspendLayout();
|
||||
this.tabDeploy.SuspendLayout();
|
||||
this.tabCompile.SuspendLayout();
|
||||
this.tabAssembler.SuspendLayout();
|
||||
this.tabDebug.SuspendLayout();
|
||||
this.tabVMware.SuspendLayout();
|
||||
this.tabPXE.SuspendLayout();
|
||||
this.tabUSB.SuspendLayout();
|
||||
this.tabISO.SuspendLayout();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// TabControl1
|
||||
|
|
@ -396,6 +402,7 @@
|
|||
//
|
||||
// tabPXE
|
||||
//
|
||||
this.tabPXE.Controls.Add(this.label6);
|
||||
this.tabPXE.Location = new System.Drawing.Point(4, 22);
|
||||
this.tabPXE.Name = "tabPXE";
|
||||
this.tabPXE.Padding = new System.Windows.Forms.Padding(3);
|
||||
|
|
@ -406,6 +413,7 @@
|
|||
//
|
||||
// tabUSB
|
||||
//
|
||||
this.tabUSB.Controls.Add(this.label7);
|
||||
this.tabUSB.Location = new System.Drawing.Point(4, 22);
|
||||
this.tabUSB.Name = "tabUSB";
|
||||
this.tabUSB.Padding = new System.Windows.Forms.Padding(3);
|
||||
|
|
@ -416,6 +424,7 @@
|
|||
//
|
||||
// tabISO
|
||||
//
|
||||
this.tabISO.Controls.Add(this.label8);
|
||||
this.tabISO.Location = new System.Drawing.Point(4, 22);
|
||||
this.tabISO.Name = "tabISO";
|
||||
this.tabISO.Padding = new System.Windows.Forms.Padding(3);
|
||||
|
|
@ -434,6 +443,32 @@
|
|||
this.tabSlave.Text = "Slave";
|
||||
this.tabSlave.UseVisualStyleBackColor = true;
|
||||
//
|
||||
// label6
|
||||
//
|
||||
this.label6.Location = new System.Drawing.Point(23, 22);
|
||||
this.label6.Name = "label6";
|
||||
this.label6.Size = new System.Drawing.Size(375, 102);
|
||||
this.label6.TabIndex = 0;
|
||||
this.label6.Text = "Currently PXE is locked to 192.168.42.1 to avoid configuration conflicts among Co" +
|
||||
"smos developers. For now please use this configuation.";
|
||||
//
|
||||
// label7
|
||||
//
|
||||
this.label7.Location = new System.Drawing.Point(16, 15);
|
||||
this.label7.Name = "label7";
|
||||
this.label7.Size = new System.Drawing.Size(375, 102);
|
||||
this.label7.TabIndex = 1;
|
||||
this.label7.Text = "There are no current USB options. The target drive will be asked when you run the" +
|
||||
" project.";
|
||||
//
|
||||
// label8
|
||||
//
|
||||
this.label8.Location = new System.Drawing.Point(17, 16);
|
||||
this.label8.Name = "label8";
|
||||
this.label8.Size = new System.Drawing.Size(375, 102);
|
||||
this.label8.TabIndex = 1;
|
||||
this.label8.Text = "There are currently no ISO options.";
|
||||
//
|
||||
// CosmosPage
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||||
|
|
@ -453,6 +488,9 @@
|
|||
this.tabDebug.PerformLayout();
|
||||
this.tabVMware.ResumeLayout(false);
|
||||
this.tabVMware.PerformLayout();
|
||||
this.tabPXE.ResumeLayout(false);
|
||||
this.tabUSB.ResumeLayout(false);
|
||||
this.tabISO.ResumeLayout(false);
|
||||
this.ResumeLayout(false);
|
||||
|
||||
}
|
||||
|
|
@ -491,6 +529,9 @@
|
|||
private System.Windows.Forms.ComboBox comboTraceMode;
|
||||
private System.Windows.Forms.CheckBox checkEnableGDB;
|
||||
private System.Windows.Forms.CheckBox checkStartCosmosGDB;
|
||||
private System.Windows.Forms.Label label6;
|
||||
private System.Windows.Forms.Label label7;
|
||||
private System.Windows.Forms.Label label8;
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -121,10 +121,6 @@ namespace Cosmos.VS.Package {
|
|||
lablDeployText.Text = "Oops. What the frak did you click?";
|
||||
}
|
||||
|
||||
// Nothing exists on these pages yet.
|
||||
mShowTabUSB = false;
|
||||
mShowTabISO = false;
|
||||
|
||||
UpdateTabs();
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue