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
+19 -11
View File
@@ -23,21 +23,22 @@ Partial Class Scene
<System.Diagnostics.DebuggerStepThrough()> _
Private Sub InitializeComponent()
Me.components = New System.ComponentModel.Container()
Me.ContextMenuStrip1 = New System.Windows.Forms.ContextMenuStrip(Me.components)
Me.MenuScene = New System.Windows.Forms.ContextMenuStrip(Me.components)
Me.cmdEndPoint = New System.Windows.Forms.ToolStripMenuItem()
Me.cmdMidPoint = New System.Windows.Forms.ToolStripMenuItem()
Me.cmdCenterPoint = New System.Windows.Forms.ToolStripMenuItem()
Me.cmdNearPoint = New System.Windows.Forms.ToolStripMenuItem()
Me.ContextMenuStrip1.SuspendLayout()
Me.cmdDeselectAll = New System.Windows.Forms.ToolStripMenuItem()
Me.MenuScene.SuspendLayout()
Me.SuspendLayout()
'
'ContextMenuStrip1
'MenuScene
'
Me.ContextMenuStrip1.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.cmdEndPoint, Me.cmdMidPoint, Me.cmdCenterPoint, Me.cmdNearPoint})
Me.ContextMenuStrip1.Name = "ContextMenuStrip1"
Me.ContextMenuStrip1.ShowCheckMargin = True
Me.ContextMenuStrip1.ShowImageMargin = False
Me.ContextMenuStrip1.Size = New System.Drawing.Size(153, 114)
Me.MenuScene.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.cmdDeselectAll, Me.cmdEndPoint, Me.cmdMidPoint, Me.cmdCenterPoint, Me.cmdNearPoint})
Me.MenuScene.Name = "ContextMenuStrip1"
Me.MenuScene.ShowCheckMargin = True
Me.MenuScene.ShowImageMargin = False
Me.MenuScene.Size = New System.Drawing.Size(153, 136)
'
'cmdEndPoint
'
@@ -63,20 +64,27 @@ Partial Class Scene
Me.cmdNearPoint.Size = New System.Drawing.Size(152, 22)
Me.cmdNearPoint.Text = "Near Point"
'
'cmdDeselectAll
'
Me.cmdDeselectAll.Name = "cmdDeselectAll"
Me.cmdDeselectAll.Size = New System.Drawing.Size(152, 22)
Me.cmdDeselectAll.Text = "Deselect All"
'
'Scene
'
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.ContextMenuStrip = Me.ContextMenuStrip1
Me.ContextMenuStrip = Me.MenuScene
Me.Name = "Scene"
Me.ContextMenuStrip1.ResumeLayout(False)
Me.MenuScene.ResumeLayout(False)
Me.ResumeLayout(False)
End Sub
Friend WithEvents ContextMenuStrip1 As System.Windows.Forms.ContextMenuStrip
Friend WithEvents MenuScene As System.Windows.Forms.ContextMenuStrip
Friend WithEvents cmdEndPoint As System.Windows.Forms.ToolStripMenuItem
Friend WithEvents cmdMidPoint As System.Windows.Forms.ToolStripMenuItem
Friend WithEvents cmdCenterPoint As System.Windows.Forms.ToolStripMenuItem
Friend WithEvents cmdNearPoint As System.Windows.Forms.ToolStripMenuItem
Friend WithEvents cmdDeselectAll As System.Windows.Forms.ToolStripMenuItem
End Class