Changeset 1073
- Timestamp:
- 12/31/08 19:46:44 (16 years ago)
- Location:
- branches/CEDMA-Refactoring-Ticket419
- Files:
-
- 3 deleted
- 5 edited
- 5 moved
Legend:
- Unmodified
- Added
- Removed
-
branches/CEDMA-Refactoring-Ticket419/HeuristicLab.CEDMA.Core/DataSet.cs
r1043 r1073 84 84 return new DataSetView(this); 85 85 } 86 87 internal Results GetResults() { 88 Results results = new Results(Store); 89 results.FilterDataSet(new Entity(Ontology.CedmaNameSpace + Guid)); 90 } 86 91 } 87 92 } -
branches/CEDMA-Refactoring-Ticket419/HeuristicLab.CEDMA.Core/DataSetView.Designer.cs
r988 r1073 47 47 this.editorGroupBox = new System.Windows.Forms.GroupBox(); 48 48 this.activateButton = new System.Windows.Forms.Button(); 49 this.resultsButton = new System.Windows.Forms.Button(); 49 50 this.SuspendLayout(); 50 51 // … … 72 73 this.activateButton.Click += new System.EventHandler(this.activateButton_Click); 73 74 // 75 // resultsButton 76 // 77 this.resultsButton.Location = new System.Drawing.Point(84, 128); 78 this.resultsButton.Name = "resultsButton"; 79 this.resultsButton.Size = new System.Drawing.Size(75, 23); 80 this.resultsButton.TabIndex = 3; 81 this.resultsButton.Text = "Show results"; 82 this.resultsButton.UseVisualStyleBackColor = true; 83 this.resultsButton.Click += new System.EventHandler(this.resultsButton_Click); 84 // 74 85 // DataSetView 75 86 // 76 87 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); 77 88 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 89 this.Controls.Add(this.resultsButton); 78 90 this.Controls.Add(this.activateButton); 79 91 this.Controls.Add(this.editorGroupBox); … … 88 100 private System.Windows.Forms.GroupBox editorGroupBox; 89 101 private System.Windows.Forms.Button activateButton; 102 private System.Windows.Forms.Button resultsButton; 90 103 } 91 104 } -
branches/CEDMA-Refactoring-Ticket419/HeuristicLab.CEDMA.Core/DataSetView.cs
r1003 r1073 29 29 using HeuristicLab.Core; 30 30 using HeuristicLab.CEDMA.DB.Interfaces; 31 using HeuristicLab.PluginInfrastructure; 31 32 32 33 namespace HeuristicLab.CEDMA.Core { … … 60 61 activateButton.Enabled = false; 61 62 } 63 64 private void resultsButton_Click(object sender, EventArgs e) { 65 Results results = dataSet.GetResults(); 66 Control resultsControl = (Control)results.CreateView(); 67 PluginManager.ControlManager.ShowControl(resultsControl); 68 } 62 69 } 63 70 } -
branches/CEDMA-Refactoring-Ticket419/HeuristicLab.CEDMA.Core/HeuristicLab.CEDMA.Core.csproj
r1053 r1073 76 76 <SubType>UserControl</SubType> 77 77 </Compile> 78 <Compile Include="Interfaces\ICedmaAlgorithm.cs" /> 79 <Compile Include="Interfaces\ITimeSeriesAlgorithm.cs" /> 80 <Compile Include="Interfaces\IClassificationAlgorithm.cs" /> 81 <Compile Include="Interfaces\IRegressionAlgorithm.cs" /> 78 82 <Compile Include="Problem.cs" /> 79 83 <Compile Include="DataSet.cs" /> -
branches/CEDMA-Refactoring-Ticket419/HeuristicLab.CEDMA.Core/ResultList.cs
r1072 r1073 31 31 using System.IO; 32 32 using HeuristicLab.PluginInfrastructure; 33 using HeuristicLab.Logging;34 33 using HeuristicLab.Data; 35 34 using HeuristicLab.DataAnalysis; 36 using HeuristicLab.Charting.Data;37 35 using System.Drawing; 38 using HeuristicLab.GP;39 36 40 namespace HeuristicLab.CEDMA.Charting { 41 42 public class RecordAddedEventArgs : EventArgs { 43 private Record record; 44 public Record Record { get { return record; } } 45 public RecordAddedEventArgs(Record r) 46 : base() { 47 this.record = r; 48 } 49 } 50 51 public class ResultList : ItemBase { 37 namespace HeuristicLab.CEDMA.Core { 38 public class ResultList : IViewable { 52 39 private Dictionary<Record, Dataset> datasets; 53 40 -
branches/CEDMA-Refactoring-Ticket419/HeuristicLab.CEDMA.Core/ResultListView.Designer.cs
r1072 r1073 1 namespace HeuristicLab.CEDMA.C harting{1 namespace HeuristicLab.CEDMA.Core { 2 2 partial class ResultListView { 3 3 /// <summary> -
branches/CEDMA-Refactoring-Ticket419/HeuristicLab.CEDMA.Core/ResultListView.cs
r1072 r1073 8 8 using System.Windows.Forms; 9 9 using HeuristicLab.Core; 10 using HeuristicLab.Charting;11 10 12 namespace HeuristicLab.CEDMA.C harting{11 namespace HeuristicLab.CEDMA.Core { 13 12 public partial class ResultListView : ViewBase { 14 13 private ResultList results; -
branches/CEDMA-Refactoring-Ticket419/HeuristicLab.sln
r1072 r1073 515 515 {E66D1EAA-525C-4F6D-BD25-DBCAE3750E25}.Visualization Debug|x86.Build.0 = Debug|x86 516 516 {545CE756-98D8-423B-AC2E-6E7D70926E5C}.CEDMA Debug|Any CPU.ActiveCfg = Debug|x86 517 {545CE756-98D8-423B-AC2E-6E7D70926E5C}.CEDMA Debug|Any CPU.Build.0 = Debug|x86518 517 {545CE756-98D8-423B-AC2E-6E7D70926E5C}.CEDMA Debug|x86.ActiveCfg = Debug|x86 519 518 {545CE756-98D8-423B-AC2E-6E7D70926E5C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU … … 737 736 {23117533-8A91-474E-BBF6-C39485D0810A}.Visualization Debug|x86.ActiveCfg = Debug|x86 738 737 {23117533-8A91-474E-BBF6-C39485D0810A}.Visualization Debug|x86.Build.0 = Debug|x86 739 {1F5FA590-1D2D-406C-BDBD-03BAECEA3C80}.CEDMA Debug|Any CPU.ActiveCfg = Release|x86 740 {1F5FA590-1D2D-406C-BDBD-03BAECEA3C80}.CEDMA Debug|Any CPU.Build.0 = Release|x86 738 {1F5FA590-1D2D-406C-BDBD-03BAECEA3C80}.CEDMA Debug|Any CPU.ActiveCfg = Debug|x86 741 739 {1F5FA590-1D2D-406C-BDBD-03BAECEA3C80}.CEDMA Debug|x86.ActiveCfg = Debug|x86 742 740 {1F5FA590-1D2D-406C-BDBD-03BAECEA3C80}.Debug|Any CPU.ActiveCfg = Debug|Any CPU … … 751 749 {1F5FA590-1D2D-406C-BDBD-03BAECEA3C80}.Visualization Debug|x86.ActiveCfg = Debug|x86 752 750 {1F5FA590-1D2D-406C-BDBD-03BAECEA3C80}.Visualization Debug|x86.Build.0 = Debug|x86 753 {1F1CF3ED-374C-4288-995B-93F6B872F571}.CEDMA Debug|Any CPU.ActiveCfg = Release|x86754 {1F1CF3ED-374C-4288-995B-93F6B872F571}.CEDMA Debug|Any CPU.Build.0 = Release|x86751 {1F1CF3ED-374C-4288-995B-93F6B872F571}.CEDMA Debug|Any CPU.ActiveCfg = Debug|x86 752 {1F1CF3ED-374C-4288-995B-93F6B872F571}.CEDMA Debug|Any CPU.Build.0 = Debug|x86 755 753 {1F1CF3ED-374C-4288-995B-93F6B872F571}.CEDMA Debug|x86.ActiveCfg = Debug|x86 756 754 {1F1CF3ED-374C-4288-995B-93F6B872F571}.Debug|Any CPU.ActiveCfg = Debug|Any CPU … … 765 763 {1F1CF3ED-374C-4288-995B-93F6B872F571}.Visualization Debug|x86.ActiveCfg = Debug|x86 766 764 {1F1CF3ED-374C-4288-995B-93F6B872F571}.Visualization Debug|x86.Build.0 = Debug|x86 767 {74223A32-C726-4978-BE78-37113A18373C}.CEDMA Debug|Any CPU.ActiveCfg = Release|x86768 {74223A32-C726-4978-BE78-37113A18373C}.CEDMA Debug|Any CPU.Build.0 = Release|x86765 {74223A32-C726-4978-BE78-37113A18373C}.CEDMA Debug|Any CPU.ActiveCfg = Debug|x86 766 {74223A32-C726-4978-BE78-37113A18373C}.CEDMA Debug|Any CPU.Build.0 = Debug|x86 769 767 {74223A32-C726-4978-BE78-37113A18373C}.CEDMA Debug|x86.ActiveCfg = Debug|x86 770 768 {74223A32-C726-4978-BE78-37113A18373C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU … … 779 777 {74223A32-C726-4978-BE78-37113A18373C}.Visualization Debug|x86.ActiveCfg = Debug|x86 780 778 {74223A32-C726-4978-BE78-37113A18373C}.Visualization Debug|x86.Build.0 = Debug|x86 781 {7C20D100-8BEB-433A-9499-F075E2CB9297}.CEDMA Debug|Any CPU.ActiveCfg = Release|x86782 {7C20D100-8BEB-433A-9499-F075E2CB9297}.CEDMA Debug|Any CPU.Build.0 = Release|x86779 {7C20D100-8BEB-433A-9499-F075E2CB9297}.CEDMA Debug|Any CPU.ActiveCfg = Debug|x86 780 {7C20D100-8BEB-433A-9499-F075E2CB9297}.CEDMA Debug|Any CPU.Build.0 = Debug|x86 783 781 {7C20D100-8BEB-433A-9499-F075E2CB9297}.CEDMA Debug|x86.ActiveCfg = Debug|x86 784 782 {7C20D100-8BEB-433A-9499-F075E2CB9297}.Debug|Any CPU.ActiveCfg = Debug|Any CPU … … 793 791 {7C20D100-8BEB-433A-9499-F075E2CB9297}.Visualization Debug|x86.ActiveCfg = Debug|x86 794 792 {7C20D100-8BEB-433A-9499-F075E2CB9297}.Visualization Debug|x86.Build.0 = Debug|x86 795 {6084CFB5-733F-449D-9F92-2E40D13F0514}.CEDMA Debug|Any CPU.ActiveCfg = Release|x86796 {6084CFB5-733F-449D-9F92-2E40D13F0514}.CEDMA Debug|Any CPU.Build.0 = Release|x86793 {6084CFB5-733F-449D-9F92-2E40D13F0514}.CEDMA Debug|Any CPU.ActiveCfg = Debug|x86 794 {6084CFB5-733F-449D-9F92-2E40D13F0514}.CEDMA Debug|Any CPU.Build.0 = Debug|x86 797 795 {6084CFB5-733F-449D-9F92-2E40D13F0514}.CEDMA Debug|x86.ActiveCfg = Debug|x86 798 796 {6084CFB5-733F-449D-9F92-2E40D13F0514}.Debug|Any CPU.ActiveCfg = Debug|Any CPU … … 904 902 {8B14A35E-DBDF-43EB-B019-23E9FBC5A35E}.Visualization Debug|x86.ActiveCfg = Debug|x86 905 903 {8B14A35E-DBDF-43EB-B019-23E9FBC5A35E}.Visualization Debug|x86.Build.0 = Debug|x86 906 {A0821479-801F-43DF-B788-AE92FB410DA9}.CEDMA Debug|Any CPU.ActiveCfg = Release|x86 907 {A0821479-801F-43DF-B788-AE92FB410DA9}.CEDMA Debug|Any CPU.Build.0 = Release|x86 904 {A0821479-801F-43DF-B788-AE92FB410DA9}.CEDMA Debug|Any CPU.ActiveCfg = Debug|x86 908 905 {A0821479-801F-43DF-B788-AE92FB410DA9}.CEDMA Debug|x86.ActiveCfg = Debug|x86 909 906 {A0821479-801F-43DF-B788-AE92FB410DA9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
Note: See TracChangeset
for help on using the changeset viewer.