Code development platform for open source projects from the European Union institutions

Skip to content
Snippets Groups Projects
Commit cadffdac authored by Kostis ANAGNOSTOPOULOS's avatar Kostis ANAGNOSTOPOULOS
Browse files

restructure: drop Tools folder.

* gui: rename F_Info --> F_About
parent 15ac07ef
No related branches found
No related tags found
No related merge requests found
File moved
......@@ -108,12 +108,12 @@
<Compile Include="Classes\cJsonFile.vb" />
<Compile Include="Classes\CResult.vb" />
<Compile Include="Classes\cPreferences.vb" />
<Compile Include="Classes\cSemanticVersion.vb" />
<Compile Include="Classes\csKey.vb" />
<Compile Include="Classes\cUTMCoord.vb" />
<Compile Include="Classes\cValidSec.vb" />
<Compile Include="Classes\cVehicle.vb" />
<Compile Include="Classes\cVirtMSC.vb" />
<Compile Include="Classes\SemanticVersion.vb" />
<Compile Include="Export\Minor_routines_output.vb" />
<Compile Include="Export\output.vb" />
<Compile Include="Export\OutputTest.vb" />
......@@ -131,10 +131,10 @@
<Compile Include="GUI\F_Preferences.vb">
<SubType>Form</SubType>
</Compile>
<Compile Include="GUI\F_Info.Designer.vb">
<DependentUpon>F_Info.vb</DependentUpon>
<Compile Include="GUI\F_About.Designer.vb">
<DependentUpon>F_About.vb</DependentUpon>
</Compile>
<Compile Include="GUI\F_Info.vb">
<Compile Include="GUI\F_About.vb">
<SubType>Form</SubType>
</Compile>
<Compile Include="declaration_public.vb" />
......@@ -171,9 +171,9 @@
<DependentUpon>Settings.settings</DependentUpon>
<DesignTimeSharedInput>True</DesignTimeSharedInput>
</Compile>
<Compile Include="Tools\ApplicationEvents.vb" />
<Compile Include="Tools\Minor_routines.vb" />
<Compile Include="Tools\cFile_v3.vb" />
<Compile Include="ApplicationEvents.vb" />
<Compile Include="Minor_routines.vb" />
<Compile Include="Classes\cFile_v3.vb" />
<Compile Include="CSE_Globals.vb" />
<Compile Include="CSE_Types.vb" />
</ItemGroup>
......@@ -181,8 +181,8 @@
<EmbeddedResource Include="GUI\F_Preferences.resx">
<DependentUpon>F_Preferences.vb</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="GUI\F_Info.resx">
<DependentUpon>F_Info.vb</DependentUpon>
<EmbeddedResource Include="GUI\F_About.resx">
<DependentUpon>F_About.vb</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="GUI\FB_Dialog.resx">
<DependentUpon>FB_Dialog.vb</DependentUpon>
......@@ -296,6 +296,7 @@
<Install>true</Install>
</BootstrapperPackage>
</ItemGroup>
<ItemGroup />
<Import Project="$(MSBuildToolsPath)\Microsoft.VisualBasic.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
......
File moved
......@@ -65,7 +65,7 @@ Public NotInheritable Class cSemanticVersion
RegexOptions.Compiled Or RegexOptions.Singleline)
''' <summary>
''' Initializes a new instance of the <see cref="SemanticVersion"/> class.
''' Initializes a new instance of the <see cref="cSemanticVersion"/> class.
''' </summary>
''' <param name="version">
''' The semantic version number to be parsed.
......@@ -95,7 +95,7 @@ Public NotInheritable Class cSemanticVersion
End Sub
''' <summary>
''' Initializes a new instance of the <see cref="SemanticVersion"/> class.
''' Initializes a new instance of the <see cref="cSemanticVersion"/> class.
''' </summary>
''' <param name="majorVersion">
''' The major version number.
......@@ -168,10 +168,10 @@ Public NotInheritable Class cSemanticVersion
Public Property PrereleaseVersion As String
''' <summary>
''' Compares two <see cref="SemanticVersion"/> objects for equality.
''' Compares two <see cref="cSemanticVersion"/> objects for equality.
''' </summary>
''' <param name="version">
''' The first <see cref="SemanticVersion"/> object to compare.
''' The first <see cref="cSemanticVersion"/> object to compare.
''' </param>
''' <param name="other">
''' The second semantic version object to compare.
......@@ -187,13 +187,13 @@ Public NotInheritable Class cSemanticVersion
End Operator
''' <summary>
''' Compares two <see cref="SemanticVersion"/> objects for equality.
''' Compares two <see cref="cSemanticVersion"/> objects for equality.
''' </summary>
''' <param name="version">
''' The first <see cref="SemanticVersion"/> object to compare.
''' The first <see cref="cSemanticVersion"/> object to compare.
''' </param>
''' <param name="other">
''' The second <see cref="SemanticVersion"/> object to compare.
''' The second <see cref="cSemanticVersion"/> object to compare.
''' </param>
''' <returns>
''' <b>True</b> if the objects are not equal, or <b>false</b> if the
......@@ -206,14 +206,14 @@ Public NotInheritable Class cSemanticVersion
End Operator
''' <summary>
''' Compares two <see cref="SemanticVersion"/> objects to determine if
''' Compares two <see cref="cSemanticVersion"/> objects to determine if
''' the first object logically precedes the second object.
''' </summary>
''' <param name="version">
''' The first <see cref="SemanticVersion"/> object to compare.
''' The first <see cref="cSemanticVersion"/> object to compare.
''' </param>
''' <param name="other">
''' The second <see cref="SemanticVersion"/> object to compare.
''' The second <see cref="cSemanticVersion"/> object to compare.
''' </param>
''' <returns>
''' <b>True</b> if <paramref name="version"/> precedes
......@@ -233,14 +233,14 @@ Public NotInheritable Class cSemanticVersion
End Operator
''' <summary>
''' Compares two <see cref="SemanticVersion"/> object to determine if
''' Compares two <see cref="cSemanticVersion"/> object to determine if
''' the first object logically precedes the second object.
''' </summary>
''' <param name="version">
''' The first <see cref="SemanticVersion"/> object to compare.
''' The first <see cref="cSemanticVersion"/> object to compare.
''' </param>
''' <param name="other">
''' The second <see cref="SemanticVersion"/> object to compare.
''' The second <see cref="cSemanticVersion"/> object to compare.
''' </param>
''' <returns>
''' <b>True</b> if <paramref name="version"/> follows
......@@ -295,7 +295,7 @@ Public NotInheritable Class cSemanticVersion
''' </list>
''' </returns>
''' <exception cref="ArgumentException">
''' <paramref name="obj"/> is not a <see cref="SemanticVersion"/>
''' <paramref name="obj"/> is not a <see cref="cSemanticVersion"/>
''' object.
''' </exception>
Public Function CompareTo(ByVal obj As Object) As Integer Implements IComparable.CompareTo
......@@ -307,10 +307,10 @@ Public NotInheritable Class cSemanticVersion
''' <summary>
''' Compares the current object with another
''' <see cref="SemanticVersion"/> object.
''' <see cref="cSemanticVersion"/> object.
''' </summary>
''' <param name="other">
''' The other <see cref="SemanticVersion"/> object to compare to this
''' The other <see cref="cSemanticVersion"/> object to compare to this
''' instance.
''' </param>
''' <returns>
......@@ -380,11 +380,11 @@ Public NotInheritable Class cSemanticVersion
End Function
''' <summary>
''' Compares this instance to another <see cref="SemanticVersion"/>
''' Compares this instance to another <see cref="cSemanticVersion"/>
''' object for equality.
''' </summary>
''' <param name="other">
''' The <see cref="SemanticVersion"/> object to compare to this
''' The <see cref="cSemanticVersion"/> object to compare to this
''' instance.
''' </param>
''' <returns>
......
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Partial Class F_Info
Partial Class F_About
Inherits System.Windows.Forms.Form
'Das Formular überschreibt den Löschvorgang, um die Komponentenliste zu bereinigen.
......@@ -22,7 +22,7 @@ Partial Class F_Info
'Das Bearbeiten mit dem Code-Editor ist nicht möglich.
<System.Diagnostics.DebuggerStepThrough()> _
Private Sub InitializeComponent()
Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(F_Info))
Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(F_About))
Me.Label1 = New System.Windows.Forms.Label()
Me.Label3 = New System.Windows.Forms.Label()
Me.Label5 = New System.Windows.Forms.Label()
......@@ -252,7 +252,7 @@ Partial Class F_Info
Me.Label13.TabIndex = 20
Me.Label13.Text = "Copyright: 2014 European Union"
'
'CSE_Info
'F_Info
'
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
......@@ -282,7 +282,7 @@ Partial Class F_Info
Me.Icon = CType(resources.GetObject("$this.Icon"), System.Drawing.Icon)
Me.MaximumSize = New System.Drawing.Size(480, 591)
Me.MinimumSize = New System.Drawing.Size(480, 591)
Me.Name = "CSE_Info"
Me.Name = "F_Info"
Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent
Me.Text = "About CSE"
CType(Me.PictureBoxJRC, System.ComponentModel.ISupportInitialize).EndInit()
......
File moved
Public Class F_Info
Public Class F_About
'Initialisation
......
......@@ -475,7 +475,7 @@ Public Class F_Main
' Menu open the Infobox
Private Sub ToolStripMenuItemAbout_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ToolStripMenuItemAbout.Click
' Show the info GUI
F_Info.Show()
F_About.Show()
End Sub
' Menu open the user manual
......
......@@ -215,7 +215,7 @@ Partial Class F_Preferences
Me.TextBoxNotepad.Size = New System.Drawing.Size(444, 20)
Me.TextBoxNotepad.TabIndex = 1
'
'CSE_Preferences
'F_Preferences
'
Me.AcceptButton = Me.ButtonOK
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
......@@ -230,7 +230,7 @@ Partial Class F_Preferences
Me.MaximizeBox = False
Me.MinimizeBox = False
Me.MinimumSize = New System.Drawing.Size(521, 294)
Me.Name = "CSE_Preferences"
Me.Name = "F_Preferences"
Me.Text = "Preferences"
Me.GroupBoxWorDir.ResumeLayout(False)
Me.GroupBoxWorDir.PerformLayout()
......
File moved
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment