TestEIn 1.5j3 :

- unificati Scene, EgtInterface e GenInterface con EgtUILib
- modifiche a gestione mouse in Scene
- aggiunte funzioni in EgtInterface.
This commit is contained in:
Dario Sassi
2014-10-15 08:03:07 +00:00
parent 5270e46c5b
commit 3eb7aedd9e
12 changed files with 413 additions and 64 deletions
+51 -1
View File
@@ -27,6 +27,10 @@ Partial Class Form1
Me.TableLayoutPanel1 = New System.Windows.Forms.TableLayoutPanel()
Me.Scene1 = New TestEIn.Scene()
Me.Panel1 = New System.Windows.Forms.Panel()
Me.btnMirror = New System.Windows.Forms.Button()
Me.btnRotM90 = New System.Windows.Forms.Button()
Me.btnRotP90 = New System.Windows.Forms.Button()
Me.chkAnalyze = New System.Windows.Forms.CheckBox()
Me.chkGetDist = New System.Windows.Forms.CheckBox()
Me.tboxCmd = New System.Windows.Forms.TextBox()
Me.GroupBox1 = New System.Windows.Forms.GroupBox()
@@ -93,6 +97,7 @@ Partial Class Form1
'Scene1
'
Me.Scene1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
Me.Scene1.Cursor = System.Windows.Forms.Cursors.Default
Me.Scene1.Dock = System.Windows.Forms.DockStyle.Fill
Me.Scene1.Location = New System.Drawing.Point(209, 3)
Me.Scene1.Name = "Scene1"
@@ -101,6 +106,10 @@ Partial Class Form1
'
'Panel1
'
Me.Panel1.Controls.Add(Me.btnMirror)
Me.Panel1.Controls.Add(Me.btnRotM90)
Me.Panel1.Controls.Add(Me.btnRotP90)
Me.Panel1.Controls.Add(Me.chkAnalyze)
Me.Panel1.Controls.Add(Me.chkGetDist)
Me.Panel1.Controls.Add(Me.tboxCmd)
Me.Panel1.Controls.Add(Me.GroupBox1)
@@ -126,6 +135,43 @@ Partial Class Form1
Me.Panel1.Size = New System.Drawing.Size(195, 413)
Me.Panel1.TabIndex = 5
'
'btnMirror
'
Me.btnMirror.Location = New System.Drawing.Point(66, 250)
Me.btnMirror.Name = "btnMirror"
Me.btnMirror.Size = New System.Drawing.Size(59, 23)
Me.btnMirror.TabIndex = 28
Me.btnMirror.Text = "Mirror"
Me.btnMirror.UseVisualStyleBackColor = False
'
'btnRotM90
'
Me.btnRotM90.Location = New System.Drawing.Point(131, 250)
Me.btnRotM90.Name = "btnRotM90"
Me.btnRotM90.Size = New System.Drawing.Size(59, 23)
Me.btnRotM90.TabIndex = 27
Me.btnRotM90.Text = "Rot-90"
Me.btnRotM90.UseVisualStyleBackColor = False
'
'btnRotP90
'
Me.btnRotP90.Location = New System.Drawing.Point(3, 250)
Me.btnRotP90.Name = "btnRotP90"
Me.btnRotP90.Size = New System.Drawing.Size(59, 23)
Me.btnRotP90.TabIndex = 26
Me.btnRotP90.Text = "Rot+90"
Me.btnRotP90.UseVisualStyleBackColor = False
'
'chkAnalyze
'
Me.chkAnalyze.Appearance = System.Windows.Forms.Appearance.Button
Me.chkAnalyze.Location = New System.Drawing.Point(68, 97)
Me.chkAnalyze.Name = "chkAnalyze"
Me.chkAnalyze.Size = New System.Drawing.Size(60, 23)
Me.chkAnalyze.TabIndex = 25
Me.chkAnalyze.Text = "Analyze"
Me.chkAnalyze.UseVisualStyleBackColor = True
'
'chkGetDist
'
Me.chkGetDist.Appearance = System.Windows.Forms.Appearance.Button
@@ -372,7 +418,7 @@ Partial Class Form1
Me.ToolStripStatusOutput.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text
Me.ToolStripStatusOutput.MergeIndex = 1
Me.ToolStripStatusOutput.Name = "ToolStripStatusOutput"
Me.ToolStripStatusOutput.Size = New System.Drawing.Size(44, 17)
Me.ToolStripStatusOutput.Size = New System.Drawing.Size(75, 17)
Me.ToolStripStatusOutput.Spring = True
Me.ToolStripStatusOutput.TextAlign = System.Drawing.ContentAlignment.MiddleLeft
'
@@ -546,5 +592,9 @@ End Sub
Friend WithEvents ToolStripStatusOutput As System.Windows.Forms.ToolStripStatusLabel
Friend WithEvents ToolStripStatusOnL As System.Windows.Forms.ToolStripStatusLabel
Friend WithEvents ToolStripStatusOnR As System.Windows.Forms.ToolStripStatusLabel
Friend WithEvents chkAnalyze As System.Windows.Forms.CheckBox
Friend WithEvents btnRotM90 As System.Windows.Forms.Button
Friend WithEvents btnRotP90 As System.Windows.Forms.Button
Friend WithEvents btnMirror As System.Windows.Forms.Button
End Class