Changeset 2520 for trunk/sources/HeuristicLab.Operators
- Timestamp:
- 11/23/09 11:08:34 (15 years ago)
- Location:
- trunk/sources/HeuristicLab.Operators/3.3
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Operators/3.3/AddVariableInfoDialog.cs
r1530 r2520 29 29 using HeuristicLab.Core; 30 30 using HeuristicLab.Data; 31 using HeuristicLab.Core.Views; 31 32 32 33 namespace HeuristicLab.Operators { -
trunk/sources/HeuristicLab.Operators/3.3/CombinedOperator.cs
r1823 r2520 118 118 119 119 /// <summary> 120 /// Creates a new instance of <see cref="CombinedOperatorView"/> to display the current instance.121 /// </summary>122 /// <returns>The created view as <see cref="CombinedOperatorView"/>.</returns>123 public override IView CreateView() {124 return new CombinedOperatorView(this);125 }126 127 /// <summary>128 120 /// Occurs when the description of the current instance has been changed. 129 121 /// </summary> -
trunk/sources/HeuristicLab.Operators/3.3/CombinedOperatorView.Designer.cs
r1530 r2520 47 47 this.tabControl = new System.Windows.Forms.TabControl(); 48 48 this.operatorGraphTabPage = new System.Windows.Forms.TabPage(); 49 this.operatorGraphView = new HeuristicLab.Core. OperatorGraphView();49 this.operatorGraphView = new HeuristicLab.Core.Views.OperatorGraphView(); 50 50 this.variableInfosTabPage = new System.Windows.Forms.TabPage(); 51 this.operatorBaseVariableInfosView = new HeuristicLab.Core. OperatorBaseVariableInfosView();51 this.operatorBaseVariableInfosView = new HeuristicLab.Core.Views.OperatorBaseVariableInfosView(); 52 52 this.variablesTabPage = new System.Windows.Forms.TabPage(); 53 this.operatorBaseVariablesView = new HeuristicLab.Core. OperatorBaseVariablesView();53 this.operatorBaseVariablesView = new HeuristicLab.Core.Views.OperatorBaseVariablesView(); 54 54 this.constraintsTabPage = new System.Windows.Forms.TabPage(); 55 this.constrainedItemBaseView = new HeuristicLab.Core. ConstrainedItemBaseView();55 this.constrainedItemBaseView = new HeuristicLab.Core.Views.ConstrainedItemBaseView(); 56 56 this.descriptionTabPage = new System.Windows.Forms.TabPage(); 57 57 this.descriptionTextBox = new System.Windows.Forms.TextBox(); … … 242 242 private System.Windows.Forms.TabPage descriptionTabPage; 243 243 private System.Windows.Forms.TextBox descriptionTextBox; 244 private HeuristicLab.Core. OperatorGraphView operatorGraphView;245 private HeuristicLab.Core. OperatorBaseVariableInfosView operatorBaseVariableInfosView;246 private HeuristicLab.Core. OperatorBaseVariablesView operatorBaseVariablesView;247 private HeuristicLab.Core. ConstrainedItemBaseView constrainedItemBaseView;244 private HeuristicLab.Core.Views.OperatorGraphView operatorGraphView; 245 private HeuristicLab.Core.Views.OperatorBaseVariableInfosView operatorBaseVariableInfosView; 246 private HeuristicLab.Core.Views.OperatorBaseVariablesView operatorBaseVariablesView; 247 private HeuristicLab.Core.Views.ConstrainedItemBaseView constrainedItemBaseView; 248 248 private System.Windows.Forms.Button removeVariableInfoButton; 249 249 private System.Windows.Forms.Button addVariableInfoButton; -
trunk/sources/HeuristicLab.Operators/3.3/CombinedOperatorView.cs
r1530 r2520 28 28 using System.Windows.Forms; 29 29 using HeuristicLab.Core; 30 using HeuristicLab.Core.Views; 31 using HeuristicLab.MainForm; 30 32 31 33 namespace HeuristicLab.Operators { … … 33 35 /// The visual representation of a <see cref="CombinedOperator"/>. 34 36 /// </summary> 37 [Content(typeof(CombinedOperator), true)] 35 38 public partial class CombinedOperatorView : ViewBase { 36 39 /// <summary> … … 116 119 if (dialog.ShowDialog(this) == DialogResult.OK) { 117 120 if (CombinedOperator.GetVariableInfo(dialog.VariableInfo.FormalName) != null) 118 Auxiliary.ShowErrorMessageBox("A variable info with the same formal name already exists.");121 HeuristicLab.Core.Views.Auxiliary.ShowErrorMessageBox("A variable info with the same formal name already exists."); 119 122 else 120 123 CombinedOperator.AddVariableInfo(dialog.VariableInfo); -
trunk/sources/HeuristicLab.Operators/3.3/HeuristicLab.Operators-3.3.csproj
r1673 r2520 143 143 <Name>HeuristicLab.Constraints-3.3</Name> 144 144 </ProjectReference> 145 <ProjectReference Include="..\..\HeuristicLab.Core.Views\3.3\HeuristicLab.Core.Views-3.3.csproj"> 146 <Project>{E226881D-315F-423D-B419-A766FE0D8685}</Project> 147 <Name>HeuristicLab.Core.Views-3.3</Name> 148 </ProjectReference> 145 149 <ProjectReference Include="..\..\HeuristicLab.Core\3.3\HeuristicLab.Core-3.3.csproj"> 146 150 <Project>{C36BD924-A541-4A00-AFA8-41701378DDC5}</Project> … … 150 154 <Project>{BBAB9DF5-5EF3-4BA8-ADE9-B36E82114937}</Project> 151 155 <Name>HeuristicLab.Data-3.3</Name> 156 </ProjectReference> 157 <ProjectReference Include="..\..\HeuristicLab.MainForm.WindowsForms\3.2\HeuristicLab.MainForm.WindowsForms-3.2.csproj"> 158 <Project>{AB687BBE-1BFE-476B-906D-44237135431D}</Project> 159 <Name>HeuristicLab.MainForm.WindowsForms-3.2</Name> 160 </ProjectReference> 161 <ProjectReference Include="..\..\HeuristicLab.MainForm\3.2\HeuristicLab.MainForm-3.2.csproj"> 162 <Project>{3BD61258-31DA-4B09-89C0-4F71FEF5F05A}</Project> 163 <Name>HeuristicLab.MainForm-3.2</Name> 152 164 </ProjectReference> 153 165 <ProjectReference Include="..\..\HeuristicLab.Persistence\3.3\HeuristicLab.Persistence-3.3.csproj"> -
trunk/sources/HeuristicLab.Operators/3.3/HeuristicLabOperatorsPlugin.cs
r1673 r2520 33 33 [Dependency(Dependency = "HeuristicLab.Constraints-3.3")] 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.Persistence-3.3")] 37 40 public class HeuristicLabOperatorsPlugin : PluginBase { -
trunk/sources/HeuristicLab.Operators/3.3/VariableInjector.cs
r1823 r2520 103 103 } 104 104 105 /// <summary>106 /// Creates a new instance of <see cref="VariableInjectorView"/> to display the current instance.107 /// </summary>108 /// <returns>The created view as <see cref="VariableInjectorView"/>.</returns>109 public override IView CreateView() {110 return new VariableInjectorView(this);111 }112 113 105 [Storable] 114 106 private KeyValuePair<Dictionary<IVariableInfo, IVariable>, Dictionary<IVariable, IVariableInfo>> VariableMappingPersistence { -
trunk/sources/HeuristicLab.Operators/3.3/VariableInjectorView.cs
r1530 r2520 28 28 using System.Windows.Forms; 29 29 using HeuristicLab.Core; 30 using HeuristicLab.Core.Views; 31 using HeuristicLab.MainForm; 30 32 31 33 namespace HeuristicLab.Operators { … … 33 35 /// Visual representation of <see cref="VariableInjector"/>. 34 36 /// </summary> 37 [Content(typeof(VariableInjector), true)] 35 38 public partial class VariableInjectorView : OperatorBaseView { 36 39 /// <summary>
Note: See TracChangeset
for help on using the changeset viewer.