Changeset 2520 for trunk/sources/HeuristicLab.Operators.Programmable
- Timestamp:
- 11/23/09 11:08:34 (15 years ago)
- Location:
- trunk/sources/HeuristicLab.Operators.Programmable/3.3
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/sources/HeuristicLab.Operators.Programmable/3.3/HeuristicLab.Operators.Programmable-3.3.csproj ¶
r1872 r2520 100 100 </ItemGroup> 101 101 <ItemGroup> 102 <ProjectReference Include="..\..\HeuristicLab.Core.Views\3.3\HeuristicLab.Core.Views-3.3.csproj"> 103 <Project>{E226881D-315F-423D-B419-A766FE0D8685}</Project> 104 <Name>HeuristicLab.Core.Views-3.3</Name> 105 </ProjectReference> 102 106 <ProjectReference Include="..\..\HeuristicLab.Core\3.3\HeuristicLab.Core-3.3.csproj"> 103 107 <Project>{C36BD924-A541-4A00-AFA8-41701378DDC5}</Project> … … 107 111 <Project>{BBAB9DF5-5EF3-4BA8-ADE9-B36E82114937}</Project> 108 112 <Name>HeuristicLab.Data-3.3</Name> 113 </ProjectReference> 114 <ProjectReference Include="..\..\HeuristicLab.MainForm.WindowsForms\3.2\HeuristicLab.MainForm.WindowsForms-3.2.csproj"> 115 <Project>{AB687BBE-1BFE-476B-906D-44237135431D}</Project> 116 <Name>HeuristicLab.MainForm.WindowsForms-3.2</Name> 117 </ProjectReference> 118 <ProjectReference Include="..\..\HeuristicLab.MainForm\3.2\HeuristicLab.MainForm-3.2.csproj"> 119 <Project>{3BD61258-31DA-4B09-89C0-4F71FEF5F05A}</Project> 120 <Name>HeuristicLab.MainForm-3.2</Name> 109 121 </ProjectReference> 110 122 <ProjectReference Include="..\..\HeuristicLab.Operators\3.3\HeuristicLab.Operators-3.3.csproj"> -
TabularUnified trunk/sources/HeuristicLab.Operators.Programmable/3.3/HeuristicLabOperatorsProgrammablePlugin.cs ¶
r1872 r2520 29 29 [PluginFile(Filename = "HeuristicLab.Operators.Programmable-3.3.dll", Filetype = PluginFileType.Assembly)] 30 30 [Dependency(Dependency = "HeuristicLab.Core-3.3")] 31 [Dependency(Dependency = "HeuristicLab.Core.Views-3.3")] 31 32 [Dependency(Dependency = "HeuristicLab.Data-3.3")] 33 [Dependency(Dependency = "HeuristicLab.MainForm-3.2")] 34 [Dependency(Dependency = "HeuristicLab.MainForm.WindowsForms-3.2")] 32 35 [Dependency(Dependency = "HeuristicLab.Operators-3.3")] 33 36 [Dependency(Dependency = "HeuristicLab.Persistence-3.3")] -
TabularUnified trunk/sources/HeuristicLab.Operators.Programmable/3.3/ProgrammableOperator.cs ¶
r1872 r2520 189 189 } 190 190 191 public override IView CreateView() {192 return new ProgrammableOperatorView(this);193 }194 195 191 public event EventHandler DescriptionChanged; 196 192 protected virtual void OnDescriptionChanged() { -
TabularUnified trunk/sources/HeuristicLab.Operators.Programmable/3.3/ProgrammableOperatorView.Designer.cs ¶
r1530 r2520 54 54 this.removeVariableInfoButton = new System.Windows.Forms.Button(); 55 55 this.addVariableInfoButton = new System.Windows.Forms.Button(); 56 this.operatorBaseVariableInfosView = new HeuristicLab.Core. OperatorBaseVariableInfosView();56 this.operatorBaseVariableInfosView = new HeuristicLab.Core.Views.OperatorBaseVariableInfosView(); 57 57 this.variablesTabPage = new System.Windows.Forms.TabPage(); 58 this.operatorBaseVariablesView = new HeuristicLab.Core. OperatorBaseVariablesView();58 this.operatorBaseVariablesView = new HeuristicLab.Core.Views.OperatorBaseVariablesView(); 59 59 this.constraintsTabPage = new System.Windows.Forms.TabPage(); 60 this.constrainedItemBaseView = new HeuristicLab.Core. ConstrainedItemBaseView();60 this.constrainedItemBaseView = new HeuristicLab.Core.Views.ConstrainedItemBaseView(); 61 61 this.descriptionTabPage = new System.Windows.Forms.TabPage(); 62 62 this.descriptionTextBox = new System.Windows.Forms.TextBox(); … … 275 275 private System.Windows.Forms.TextBox codeTextBox; 276 276 private System.Windows.Forms.TabPage variableInfosTabPage; 277 private HeuristicLab.Core. OperatorBaseVariableInfosView operatorBaseVariableInfosView;277 private HeuristicLab.Core.Views.OperatorBaseVariableInfosView operatorBaseVariableInfosView; 278 278 private System.Windows.Forms.TabPage variablesTabPage; 279 private HeuristicLab.Core. OperatorBaseVariablesView operatorBaseVariablesView;279 private HeuristicLab.Core.Views.OperatorBaseVariablesView operatorBaseVariablesView; 280 280 private System.Windows.Forms.TabPage constraintsTabPage; 281 private HeuristicLab.Core. ConstrainedItemBaseView constrainedItemBaseView;281 private HeuristicLab.Core.Views.ConstrainedItemBaseView constrainedItemBaseView; 282 282 private System.Windows.Forms.TabPage descriptionTabPage; 283 283 private System.Windows.Forms.TextBox descriptionTextBox; -
TabularUnified trunk/sources/HeuristicLab.Operators.Programmable/3.3/ProgrammableOperatorView.cs ¶
r1530 r2520 29 29 using HeuristicLab.Core; 30 30 using HeuristicLab.Operators; 31 using HeuristicLab.Core.Views; 32 using HeuristicLab.MainForm; 31 33 32 34 namespace HeuristicLab.Operators.Programmable { 35 [Content(typeof(ProgrammableOperator), true)] 33 36 public partial class ProgrammableOperatorView : ViewBase { 34 37 public ProgrammableOperator ProgrammableOperator { … … 102 105 } 103 106 catch (Exception ex) { 104 Auxiliary.ShowErrorMessageBox(ex);107 HeuristicLab.Core.Views.Auxiliary.ShowErrorMessageBox(ex); 105 108 } 106 109 } … … 109 112 if (dialog.ShowDialog(this) == DialogResult.OK) { 110 113 if (ProgrammableOperator.GetVariableInfo(dialog.VariableInfo.FormalName) != null) 111 Auxiliary.ShowErrorMessageBox("A variable info with the same formal name already exists.");114 HeuristicLab.Core.Views.Auxiliary.ShowErrorMessageBox("A variable info with the same formal name already exists."); 112 115 else 113 116 ProgrammableOperator.AddVariableInfo(dialog.VariableInfo);
Note: See TracChangeset
for help on using the changeset viewer.