Changeset 2520 for trunk/sources/HeuristicLab.Logging
- Timestamp:
- 11/23/09 11:08:34 (15 years ago)
- Location:
- trunk/sources/HeuristicLab.Logging/3.3
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Logging/3.3/HeuristicLab.Logging-3.3.csproj
r2493 r2520 131 131 <Name>HeuristicLab.Common-3.2</Name> 132 132 </ProjectReference> 133 <ProjectReference Include="..\..\HeuristicLab.Core.Views\3.3\HeuristicLab.Core.Views-3.3.csproj"> 134 <Project>{E226881D-315F-423D-B419-A766FE0D8685}</Project> 135 <Name>HeuristicLab.Core.Views-3.3</Name> 136 </ProjectReference> 133 137 <ProjectReference Include="..\..\HeuristicLab.Core\3.3\HeuristicLab.Core-3.3.csproj"> 134 138 <Project>{C36BD924-A541-4A00-AFA8-41701378DDC5}</Project> … … 138 142 <Project>{BBAB9DF5-5EF3-4BA8-ADE9-B36E82114937}</Project> 139 143 <Name>HeuristicLab.Data-3.3</Name> 144 </ProjectReference> 145 <ProjectReference Include="..\..\HeuristicLab.MainForm.WindowsForms\3.2\HeuristicLab.MainForm.WindowsForms-3.2.csproj"> 146 <Project>{AB687BBE-1BFE-476B-906D-44237135431D}</Project> 147 <Name>HeuristicLab.MainForm.WindowsForms-3.2</Name> 148 </ProjectReference> 149 <ProjectReference Include="..\..\HeuristicLab.MainForm\3.2\HeuristicLab.MainForm-3.2.csproj"> 150 <Project>{3BD61258-31DA-4B09-89C0-4F71FEF5F05A}</Project> 151 <Name>HeuristicLab.MainForm-3.2</Name> 140 152 </ProjectReference> 141 153 <ProjectReference Include="..\..\HeuristicLab.Operators\3.3\HeuristicLab.Operators-3.3.csproj"> -
trunk/sources/HeuristicLab.Logging/3.3/HeuristicLabLoggingPlugin.cs
r2493 r2520 33 33 [Dependency(Dependency = "HeuristicLab.Common-3.2")] 34 34 [Dependency(Dependency = "HeuristicLab.Core-3.3")] 35 [Dependency(Dependency = "HeuristicLab.Core.Views-3.3")] 35 36 [Dependency(Dependency = "HeuristicLab.Data-3.3")] 37 [Dependency(Dependency = "HeuristicLab.MainForm-3.2")] 38 [Dependency(Dependency = "HeuristicLab.MainForm.WindowsForms-3.2")] 36 39 [Dependency(Dependency = "HeuristicLab.Operators-3.3")] 37 40 [Dependency(Dependency = "HeuristicLab.Charting-3.3")] -
trunk/sources/HeuristicLab.Logging/3.3/Linechart.cs
r1872 r2520 97 97 98 98 /// <summary> 99 /// Creates an instance of <see cref="LinechartView"/> to represent the current instance visually.100 /// </summary>101 /// <returns>The created view as <see cref="LinechartView"/>.</returns>102 public override IView CreateView() {103 return new LinechartView(this);104 }105 106 /// <summary>107 99 /// Occurs when the number of lines has been changed. 108 100 /// </summary> -
trunk/sources/HeuristicLab.Logging/3.3/LinechartView.cs
r2474 r2520 32 32 using HeuristicLab.Charting.Data; 33 33 using HeuristicLab.Common; 34 using HeuristicLab.Core.Views; 35 using HeuristicLab.MainForm; 34 36 35 37 namespace HeuristicLab.Logging { … … 37 39 /// The visual representation of a <see cref="Linechart"/>. 38 40 /// </summary> 41 [Content(typeof(Linechart), true)] 39 42 public partial class LinechartView : ViewBase { 40 43 private double maxY = double.MinValue, minY = double.MaxValue; -
trunk/sources/HeuristicLab.Logging/3.3/Log.cs
r1872 r2520 70 70 71 71 /// <summary> 72 /// Creates an instance of <see cref="LogView"/> to represent the current instance visually.73 /// </summary>74 /// <returns>The created view as <see cref="LogView"/>.</returns>75 public override IView CreateView() {76 return new LogView(this);77 }78 79 /// <summary>80 72 /// Occurs when the items have been changed. 81 73 /// </summary> -
trunk/sources/HeuristicLab.Logging/3.3/LogView.cs
r2474 r2520 30 30 using HeuristicLab.Data; 31 31 using HeuristicLab.Common; 32 using HeuristicLab.Core.Views; 33 using HeuristicLab.MainForm; 32 34 33 35 namespace HeuristicLab.Logging { … … 35 37 /// Visual representation of the <see cref="Log"/> class. 36 38 /// </summary> 39 [Content(typeof(Log), true)] 37 40 public partial class LogView : ViewBase { 38 41 /// <summary> -
trunk/sources/HeuristicLab.Logging/3.3/PointXYChart.cs
r1872 r2520 98 98 99 99 /// <summary> 100 /// Creates a new instance of <see cref="PointXYChartView"/> to represent the current instance visually.101 /// </summary>102 /// <returns>The created view as <see cref="PointXYChartView"/>.</returns>103 public override IView CreateView() {104 return new PointXYChartView(this);105 }106 107 /// <summary>108 100 /// Occurs when the values of the current instance have been changed. 109 101 /// </summary> -
trunk/sources/HeuristicLab.Logging/3.3/PointXYChartView.cs
r2474 r2520 32 32 using HeuristicLab.Charting.Data; 33 33 using HeuristicLab.Common; 34 using HeuristicLab.Core.Views; 35 using HeuristicLab.MainForm; 34 36 35 37 namespace HeuristicLab.Logging { … … 37 39 /// Visual representation of a <see cref="PointXYChart"/>. 38 40 /// </summary> 41 [Content(typeof(PointXYChart), true)] 39 42 public partial class PointXYChartView : ViewBase { 40 43 private static int[] colors = new int[] {
Note: See TracChangeset
for help on using the changeset viewer.