Changeset 3566
- Timestamp:
- 04/30/10 10:17:22 (15 years ago)
- Location:
- trunk/sources
- Files:
-
- 69 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/sources/HeuristicLab.Analysis.Views/3.3/DataTableView.cs ¶
r3561 r3566 53 53 valuesRowsTable = new Dictionary<IObservableList<double>, DataRow>(); 54 54 } 55 /// <summary>56 /// Initializes a new instance of <see cref="VariableView"/> with the given <paramref name="variable"/>.57 /// </summary>58 /// <remarks>Calls <see cref="VariableView()"/>.</remarks>59 /// <param name="variable">The variable to represent visually.</param>60 public DataTableView(DataTable content)61 : this() {62 Content = content;63 }64 55 65 56 /// <summary> -
TabularUnified trunk/sources/HeuristicLab.Core.Views/3.3/CheckedItemCollectionView.cs ¶
r3564 r3566 48 48 Caption = "Checked Item Collection"; 49 49 } 50 public CheckedItemCollectionView(ICheckedItemCollection<T> content)51 : this() {52 Content = content;53 }54 50 55 51 protected override void DeregisterContentEvents() { -
TabularUnified trunk/sources/HeuristicLab.Core.Views/3.3/CheckedItemListView.cs ¶
r3565 r3566 59 59 Caption = "Checked Item List"; 60 60 } 61 public CheckedItemListView(ICheckedItemList<T> content)62 : this() {63 Content = content;64 }65 61 66 62 /// <summary> -
TabularUnified trunk/sources/HeuristicLab.Core.Views/3.3/EngineView.cs ¶
r3455 r3566 45 45 public EngineView() { 46 46 InitializeComponent(); 47 }48 public EngineView(IEngine content)49 : this() {50 Content = content;51 47 } 52 48 -
TabularUnified trunk/sources/HeuristicLab.Core.Views/3.3/HeuristicLab.Core.Views-3.3.csproj ¶
r3565 r3566 309 309 </ProjectReference> 310 310 </ItemGroup> 311 <ItemGroup>312 <EmbeddedResource Include="CheckedItemListView.resx">313 <DependentUpon>CheckedItemListView.cs</DependentUpon>314 </EmbeddedResource>315 </ItemGroup>316 311 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> 317 312 <!-- To modify your build process, add your task inside one of the targets below and uncomment it. -
TabularUnified trunk/sources/HeuristicLab.Core.Views/3.3/ItemArrayView.cs ¶
r3557 r3566 58 58 InitializeComponent(); 59 59 Caption = "Item Array"; 60 }61 public ItemArrayView(IItemArray<T> content)62 : this() {63 Content = content;64 60 } 65 61 -
TabularUnified trunk/sources/HeuristicLab.Core.Views/3.3/ItemCollectionView.cs ¶
r3557 r3566 48 48 Caption = "Item Collection"; 49 49 } 50 public ItemCollectionView(IItemCollection<T> content)51 : this() {52 Content = content;53 }54 50 55 51 protected override void DeregisterContentEvents() { -
TabularUnified trunk/sources/HeuristicLab.Core.Views/3.3/ItemListView.cs ¶
r3557 r3566 59 59 Caption = "Item List"; 60 60 } 61 public ItemListView(IItemList<T> content)62 : this() {63 Content = content;64 }65 61 66 62 /// <summary> -
TabularUnified trunk/sources/HeuristicLab.Core.Views/3.3/ItemSetView.cs ¶
r3393 r3566 45 45 Caption = "Item Set"; 46 46 } 47 public ItemSetView(IItemSet<T> content)48 : this() {49 Content = content;50 }51 47 52 48 protected override void OnContentChanged() { -
TabularUnified trunk/sources/HeuristicLab.Core.Views/3.3/ItemView.cs ¶
r3362 r3566 42 42 Caption = "View"; 43 43 } 44 public ItemView(IItem content)45 : this() {46 Content = content;47 }48 44 49 45 protected override void OnContentChanged() { -
TabularUnified trunk/sources/HeuristicLab.Core.Views/3.3/LogView.cs ¶
r3289 r3566 48 48 InitializeComponent(); 49 49 Caption = "LogView"; 50 }51 public LogView(ILog content)52 : this() {53 Content = content;54 50 } 55 51 -
TabularUnified trunk/sources/HeuristicLab.Core.Views/3.3/NamedItemCollectionView.cs ¶
r3561 r3566 43 43 InitializeComponent(); 44 44 Caption = "Named Item Collection"; 45 }46 public NamedItemCollectionView(IKeyedItemCollection<string, T> content)47 : this() {48 Content = content;49 45 } 50 46 -
TabularUnified trunk/sources/HeuristicLab.Core.Views/3.3/NamedItemView.cs ¶
r3454 r3566 44 44 errorProvider.SetIconAlignment(nameTextBox, ErrorIconAlignment.MiddleLeft); 45 45 errorProvider.SetIconPadding(nameTextBox, 2); 46 }47 public NamedItemView(INamedItem content)48 : this() {49 Content = content;50 46 } 51 47 -
TabularUnified trunk/sources/HeuristicLab.Core.Views/3.3/OperatorCollectionView.cs ¶
r3407 r3566 38 38 itemsGroupBox.Text = "Operators"; 39 39 } 40 /// <summary>41 /// Initializes a new instance of <see cref="VariablesScopeView"/> with42 /// the given <paramref name="scope"/>.43 /// </summary>44 /// <remarks>Calls <see cref="VariablesScopeView()"/>.</remarks>45 /// <param name="scope">The scope whose variables should be represented visually.</param>46 public OperatorCollectionView(IItemCollection<IOperator> content)47 : this() {48 Content = content;49 }50 40 51 41 protected override IOperator CreateItem() { -
TabularUnified trunk/sources/HeuristicLab.Core.Views/3.3/OperatorGraphView.cs ¶
r3455 r3566 49 49 InitializeComponent(); 50 50 Caption = "Operator Graph"; 51 }52 /// <summary>53 /// Initializes a new instance of <see cref="OperatorGraphView"/>54 /// with the given <paramref name="operatorGraph"/>.55 /// </summary>56 /// <remarks>Calls <see cref="OperatorGraphView()"/>.</remarks>57 /// <param name="operatorGraph">The operator graph to represent visually.</param>58 public OperatorGraphView(OperatorGraph content)59 : this() {60 Content = content;61 51 } 62 52 -
TabularUnified trunk/sources/HeuristicLab.Core.Views/3.3/OperatorListView.cs ¶
r3407 r3566 38 38 itemsGroupBox.Text = "Operators"; 39 39 } 40 /// <summary>41 /// Initializes a new instance of <see cref="VariablesScopeView"/> with42 /// the given <paramref name="scope"/>.43 /// </summary>44 /// <remarks>Calls <see cref="VariablesScopeView()"/>.</remarks>45 /// <param name="scope">The scope whose variables should be represented visually.</param>46 public OperatorListView(IItemList<IOperator> content)47 : this() {48 Content = content;49 }50 40 51 41 protected override IOperator CreateItem() { -
TabularUnified trunk/sources/HeuristicLab.Core.Views/3.3/OperatorSetView.cs ¶
r3407 r3566 38 38 itemsGroupBox.Text = "Operators"; 39 39 } 40 /// <summary>41 /// Initializes a new instance of <see cref="VariablesScopeView"/> with42 /// the given <paramref name="scope"/>.43 /// </summary>44 /// <remarks>Calls <see cref="VariablesScopeView()"/>.</remarks>45 /// <param name="scope">The scope whose variables should be represented visually.</param>46 public OperatorSetView(IItemSet<IOperator> content)47 : this() {48 Content = content;49 }50 40 51 41 protected override IOperator CreateItem() { -
TabularUnified trunk/sources/HeuristicLab.Core.Views/3.3/OperatorTreeView.cs ¶
r3557 r3566 72 72 Caption = "Operator"; 73 73 } 74 /// <summary>75 /// Initializes a new instance of <see cref="OperatorGraphView"/>76 /// with the given <paramref name="operatorGraph"/>.77 /// </summary>78 /// <remarks>Calls <see cref="OperatorGraphView()"/>.</remarks>79 /// <param name="operatorGraph">The operator graph to represent visually.</param>80 public OperatorTreeView(IOperator content)81 : this() {82 Content = content;83 }84 74 85 75 /// <summary> -
TabularUnified trunk/sources/HeuristicLab.Core.Views/3.3/ParameterCollectionView.cs ¶
r3407 r3566 39 39 itemsGroupBox.Text = "Parameters"; 40 40 } 41 /// <summary>42 /// Initializes a new instance of <see cref="VariablesScopeView"/> with43 /// the given <paramref name="scope"/>.44 /// </summary>45 /// <remarks>Calls <see cref="VariablesScopeView()"/>.</remarks>46 /// <param name="scope">The scope whose variables should be represented visually.</param>47 public ParameterCollectionView(IKeyedItemCollection<string, IParameter> content)48 : this() {49 Content = content;50 }51 41 52 42 protected override IParameter CreateItem() { -
TabularUnified trunk/sources/HeuristicLab.Core.Views/3.3/ParameterizedNamedItemView.cs ¶
r3455 r3566 41 41 InitializeComponent(); 42 42 } 43 /// <summary>44 /// Intializes a new instance of <see cref="ItemBaseView"/> with the given <paramref name="item"/>.45 /// </summary>46 /// <param name="item">The item that should be displayed.</param>47 public ParameterizedNamedItemView(IParameterizedNamedItem content)48 : this() {49 Content = content;50 }51 43 52 44 protected override void OnContentChanged() { -
TabularUnified trunk/sources/HeuristicLab.Core.Views/3.3/ScopeListView.cs ¶
r3393 r3566 15 15 itemsGroupBox.Text = "Scopes"; 16 16 } 17 /// <summary>18 /// Initializes a new instance of <see cref="VariablesScopeView"/> with19 /// the given <paramref name="scope"/>.20 /// </summary>21 /// <remarks>Calls <see cref="VariablesScopeView()"/>.</remarks>22 /// <param name="scope">The scope whose variables should be represented visually.</param>23 public ScopeListView(IItemList<IScope> content)24 : this() {25 Content = content;26 }27 17 } 28 18 } -
TabularUnified trunk/sources/HeuristicLab.Core.Views/3.3/ScopeView.cs ¶
r3561 r3566 56 56 scopeNodeTable = new Dictionary<IScope, TreeNode>(); 57 57 subScopesScopeTable = new Dictionary<ScopeList, IScope>(); 58 59 }60 /// <summary>61 /// Initializes a new instance of <see cref="ScopeView"/> with the given <paramref name="scope"/>.62 /// </summary>63 /// <remarks>Calls <see cref="ScopeView()"/>.</remarks>64 /// <param name="scope">The scope to represent visually.</param>65 public ScopeView(IScope content)66 : this() {67 Content = content;68 58 } 69 59 -
TabularUnified trunk/sources/HeuristicLab.Core.Views/3.3/ValueParameterCollectionView.cs ¶
r3407 r3566 39 39 itemsGroupBox.Text = "Parameters"; 40 40 } 41 /// <summary>42 /// Initializes a new instance of <see cref="VariablesScopeView"/> with43 /// the given <paramref name="scope"/>.44 /// </summary>45 /// <remarks>Calls <see cref="VariablesScopeView()"/>.</remarks>46 /// <param name="scope">The scope whose variables should be represented visually.</param>47 public ValueParameterCollectionView(IKeyedItemCollection<string, IValueParameter> content)48 : this() {49 Content = content;50 }51 41 52 42 protected override IValueParameter CreateItem() { -
TabularUnified trunk/sources/HeuristicLab.Core.Views/3.3/VariableCollectionView.cs ¶
r3393 r3566 15 15 itemsGroupBox.Text = "Variables"; 16 16 } 17 /// <summary>18 /// Initializes a new instance of <see cref="VariablesScopeView"/> with19 /// the given <paramref name="scope"/>.20 /// </summary>21 /// <remarks>Calls <see cref="VariablesScopeView()"/>.</remarks>22 /// <param name="scope">The scope whose variables should be represented visually.</param>23 public VariableCollectionView(IKeyedItemCollection<string, IVariable> content)24 : this() {25 Content = content;26 }27 17 28 18 protected override IVariable CreateItem() { -
TabularUnified trunk/sources/HeuristicLab.Core.Views/3.3/VariableValueView.cs ¶
r3526 r3566 49 49 InitializeComponent(); 50 50 Caption = "Variable"; 51 }52 /// <summary>53 /// Initializes a new instance of <see cref="VariableView"/> with the given <paramref name="variable"/>.54 /// </summary>55 /// <remarks>Calls <see cref="VariableView()"/>.</remarks>56 /// <param name="variable">The variable to represent visually.</param>57 public VariableValueView(IVariable content)58 : this() {59 Content = content;60 51 } 61 52 -
TabularUnified trunk/sources/HeuristicLab.Core.Views/3.3/VariableView.cs ¶
r3526 r3566 51 51 InitializeComponent(); 52 52 Caption = "Variable"; 53 }54 /// <summary>55 /// Initializes a new instance of <see cref="VariableView"/> with the given <paramref name="variable"/>.56 /// </summary>57 /// <remarks>Calls <see cref="VariableView()"/>.</remarks>58 /// <param name="variable">The variable to represent visually.</param>59 public VariableView(IVariable content)60 : this() {61 Content = content;62 53 } 63 54 -
TabularUnified trunk/sources/HeuristicLab.Data.Views/3.3/BoolValueView.cs ¶
r3430 r3566 46 46 Caption = "BoolValue View"; 47 47 } 48 public BoolValueView(BoolValue content)49 : this() {50 Content = content;51 }52 48 53 49 protected override void DeregisterContentEvents() { … … 55 51 base.DeregisterContentEvents(); 56 52 } 57 58 53 protected override void RegisterContentEvents() { 59 54 base.RegisterContentEvents(); -
TabularUnified trunk/sources/HeuristicLab.Data.Views/3.3/ComparisonView.cs ¶
r3430 r3566 47 47 valueComboBox.DataSource = Enum.GetValues(typeof(ComparisonType)); 48 48 } 49 public ComparisonView(Comparison content)50 : this() {51 Content = content;52 }53 49 54 50 protected override void DeregisterContentEvents() { -
TabularUnified trunk/sources/HeuristicLab.Data.Views/3.3/StringConvertibleArrayView.cs ¶
r3454 r3566 50 50 errorProvider.SetIconAlignment(lengthTextBox, ErrorIconAlignment.MiddleLeft); 51 51 errorProvider.SetIconPadding(lengthTextBox, 2); 52 }53 public StringConvertibleArrayView(IStringConvertibleArray content)54 : this() {55 Content = content;56 52 } 57 53 -
TabularUnified trunk/sources/HeuristicLab.Data.Views/3.3/StringConvertibleMatrixView.cs ¶
r3546 r3566 60 60 sortedColumnIndizes = new List<KeyValuePair<int, SortOrder>>(); 61 61 rowComparer = new RowComparer(); 62 }63 public StringConvertibleMatrixView(IStringConvertibleMatrix content)64 : this() {65 Content = content;66 62 } 67 63 -
TabularUnified trunk/sources/HeuristicLab.Data.Views/3.3/StringConvertibleValueView.cs ¶
r3454 r3566 48 48 errorProvider.SetIconAlignment(valueTextBox, ErrorIconAlignment.MiddleLeft); 49 49 errorProvider.SetIconPadding(valueTextBox, 2); 50 }51 public StringConvertibleValueView(IStringConvertibleValue content)52 : this() {53 Content = content;54 50 } 55 51 -
TabularUnified trunk/sources/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Views/3.3/GraphicalSymbolicExpressionTreeView.cs ¶
r3454 r3566 48 48 } 49 49 50 public GraphicalSymbolicExpressionTreeView(SymbolicExpressionTree content)51 : this() {52 Content = content;53 }54 55 50 protected override void OnContentChanged() { 56 51 base.OnContentChanged(); -
TabularUnified trunk/sources/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Views/3.3/SymbolicExpressionView.cs ¶
r3454 r3566 23 23 Caption = "SymbolicExpression View"; 24 24 } 25 26 public SymbolicExpressionView(SymbolicExpressionTree content)27 : this() {28 Content = content;29 }30 31 25 32 26 protected override void OnContentChanged() { -
TabularUnified trunk/sources/HeuristicLab.MainForm.WindowsForms/3.3/AsynchronousContentView.cs ¶
r3437 r3566 14 14 public AsynchronousContentView() { 15 15 InitializeComponent(); 16 }17 18 public AsynchronousContentView(IContent content)19 : this() {20 this.Content = content;21 16 } 22 17 -
TabularUnified trunk/sources/HeuristicLab.MainForm.WindowsForms/3.3/ContentView.cs ¶
r3557 r3566 33 33 namespace HeuristicLab.MainForm.WindowsForms { 34 34 public partial class ContentView : View, IContentView { 35 public ContentView() 36 : base() { 37 InitializeComponent(); 38 this.locked = false; 39 } 40 35 41 private IContent content; 36 42 public IContent Content { … … 51 57 } 52 58 } 53 }54 55 public ContentView()56 : base() {57 InitializeComponent();58 this.locked = false;59 59 } 60 60 -
TabularUnified trunk/sources/HeuristicLab.Operators.Views.GraphVisualization/3.3/General/GraphVisualizationInfoView.cs ¶
r3514 r3566 55 55 } 56 56 57 public GraphVisualizationInfoView(IGraphVisualizationInfo content)58 : this() {59 this.Content = content;60 }61 62 57 public IController Controller { 63 58 get { return this.graphVisualization.Controller; } -
TabularUnified trunk/sources/HeuristicLab.Operators.Views.GraphVisualization/3.3/OperatorGraphVisualization/OperatorGraphView.cs ¶
r3557 r3566 51 51 tool.OnToolDeactivate += new EventHandler<ToolEventArgs>(tool_OnToolDeactivate); 52 52 } 53 }54 55 public OperatorGraphView(OperatorGraph content)56 : this() {57 this.Content = content;58 53 } 59 54 -
TabularUnified trunk/sources/HeuristicLab.Operators.Views/3.3/AlgorithmOperatorView.cs ¶
r3455 r3566 43 43 public AlgorithmOperatorView() { 44 44 InitializeComponent(); 45 }46 /// <summary>47 /// Intializes a new instance of <see cref="ItemBaseView"/> with the given <paramref name="item"/>.48 /// </summary>49 /// <param name="item">The item that should be displayed.</param>50 public AlgorithmOperatorView(AlgorithmOperator content)51 : this() {52 Content = content;53 45 } 54 46 -
TabularUnified trunk/sources/HeuristicLab.Operators.Views/3.3/MultiOperatorView.cs ¶
r3455 r3566 43 43 public MultiOperatorView() { 44 44 InitializeComponent(); 45 }46 /// <summary>47 /// Intializes a new instance of <see cref="ItemBaseView"/> with the given <paramref name="item"/>.48 /// </summary>49 /// <param name="item">The item that should be displayed.</param>50 public MultiOperatorView(MultiOperator<T> content)51 : this() {52 Content = content;53 45 } 54 46 -
TabularUnified trunk/sources/HeuristicLab.Operators.Views/3.3/OperatorView.cs ¶
r3454 r3566 44 44 public OperatorView() { 45 45 InitializeComponent(); 46 }47 /// <summary>48 /// Intializes a new instance of <see cref="ItemBaseView"/> with the given <paramref name="item"/>.49 /// </summary>50 /// <param name="item">The item that should be displayed.</param>51 public OperatorView(IOperator content)52 : this() {53 Content = content;54 46 } 55 47 -
TabularUnified trunk/sources/HeuristicLab.Operators.Views/3.3/ValuesCollectorView.cs ¶
r3455 r3566 43 43 public ValuesCollectorView() { 44 44 InitializeComponent(); 45 }46 /// <summary>47 /// Intializes a new instance of <see cref="ItemBaseView"/> with the given <paramref name="item"/>.48 /// </summary>49 /// <param name="item">The item that should be displayed.</param>50 public ValuesCollectorView(ValuesCollector content)51 : this() {52 Content = content;53 45 } 54 46 -
TabularUnified trunk/sources/HeuristicLab.Optimization.Views/3.3/AlgorithmView.cs ¶
r3548 r3566 49 49 public AlgorithmView() { 50 50 InitializeComponent(); 51 }52 /// <summary>53 /// Intializes a new instance of <see cref="ItemBaseView"/> with the given <paramref name="item"/>.54 /// </summary>55 /// <param name="item">The item that should be displayed.</param>56 public AlgorithmView(IAlgorithm content)57 : this() {58 Content = content;59 51 } 60 52 -
TabularUnified trunk/sources/HeuristicLab.Optimization.Views/3.3/BatchRunView.cs ¶
r3526 r3566 47 47 public BatchRunView() { 48 48 InitializeComponent(); 49 }50 /// <summary>51 /// Intializes a new instance of <see cref="ItemBaseView"/> with the given <paramref name="item"/>.52 /// </summary>53 /// <param name="item">The item that should be displayed.</param>54 public BatchRunView(BatchRun content)55 : this() {56 Content = content;57 49 } 58 50 -
TabularUnified trunk/sources/HeuristicLab.Optimization.Views/3.3/EngineAlgorithmView.cs ¶
r3557 r3566 47 47 public EngineAlgorithmView() { 48 48 InitializeComponent(); 49 }50 51 /// <summary>52 /// Intializes a new instance of <see cref="ItemBaseView"/> with the given <paramref name="item"/>.53 /// </summary>54 /// <param name="item">The item that should be displayed.</param>55 public EngineAlgorithmView(EngineAlgorithm content)56 : this() {57 Content = content;58 49 } 59 50 -
TabularUnified trunk/sources/HeuristicLab.Optimization.Views/3.3/ExperimentView.cs ¶
r3455 r3566 44 44 public ExperimentView() { 45 45 InitializeComponent(); 46 }47 /// <summary>48 /// Intializes a new instance of <see cref="ItemBaseView"/> with the given <paramref name="item"/>.49 /// </summary>50 /// <param name="item">The item that should be displayed.</param>51 public ExperimentView(Experiment content)52 : this() {53 Content = content;54 46 } 55 47 -
TabularUnified trunk/sources/HeuristicLab.Optimization.Views/3.3/OptimizerListView.cs ¶
r3407 r3566 40 40 itemsGroupBox.Text = "Optimizers"; 41 41 } 42 /// <summary>43 /// Initializes a new instance of <see cref="VariablesScopeView"/> with44 /// the given <paramref name="scope"/>.45 /// </summary>46 /// <remarks>Calls <see cref="VariablesScopeView()"/>.</remarks>47 /// <param name="scope">The scope whose variables should be represented visually.</param>48 public OptimizerListView(IItemList<IOptimizer> content)49 : this() {50 Content = content;51 }52 42 53 43 protected override IOptimizer CreateItem() { -
TabularUnified trunk/sources/HeuristicLab.Optimization.Views/3.3/ProblemView.cs ¶
r2917 r3566 41 41 InitializeComponent(); 42 42 } 43 /// <summary>44 /// Intializes a new instance of <see cref="ItemBaseView"/> with the given <paramref name="item"/>.45 /// </summary>46 /// <param name="item">The item that should be displayed.</param>47 public ProblemView(IProblem content)48 : this() {49 Content = content;50 }51 43 52 44 protected override void OnContentChanged() { -
TabularUnified trunk/sources/HeuristicLab.Optimization.Views/3.3/ResultCollectionView.cs ¶
r3407 r3566 44 44 base.ReadOnly = true; 45 45 } 46 /// <summary>47 /// Initializes a new instance of <see cref="VariablesScopeView"/> with48 /// the given <paramref name="scope"/>.49 /// </summary>50 /// <remarks>Calls <see cref="VariablesScopeView()"/>.</remarks>51 /// <param name="scope">The scope whose variables should be represented visually.</param>52 public ResultCollectionView(IKeyedItemCollection<string, IResult> content)53 : this() {54 Content = content;55 }56 46 57 47 protected override IResult CreateItem() { -
TabularUnified trunk/sources/HeuristicLab.Optimization.Views/3.3/ResultView.cs ¶
r3455 r3566 57 57 base.ReadOnly = true; 58 58 } 59 /// <summary>60 /// Initializes a new instance of <see cref="VariableView"/> with the given <paramref name="variable"/>.61 /// </summary>62 /// <remarks>Calls <see cref="VariableView()"/>.</remarks>63 /// <param name="variable">The variable to represent visually.</param>64 public ResultView(IResult content)65 : this() {66 Content = content;67 }68 59 69 60 /// <summary> -
TabularUnified trunk/sources/HeuristicLab.Optimization.Views/3.3/RunCollectionBubbleChartView.cs ¶
r3557 r3566 74 74 } 75 75 76 public RunCollectionBubbleChartView(RunCollection content)77 : this() {78 Content = content;79 }80 81 76 public new RunCollection Content { 82 77 get { return (RunCollection)base.Content; } -
TabularUnified trunk/sources/HeuristicLab.Optimization.Views/3.3/RunCollectionTabularView.cs ¶
r3557 r3566 42 42 this.dataGridView.RowHeaderMouseDoubleClick += new DataGridViewCellMouseEventHandler(dataGridView_RowHeaderMouseDoubleClick); 43 43 base.ReadOnly = true; 44 }45 46 public RunCollectionTabularView(RunCollection content)47 : this() {48 Content = content;49 44 } 50 45 -
TabularUnified trunk/sources/HeuristicLab.Optimization.Views/3.3/RunCollectionView.cs ¶
r3557 r3566 52 52 } 53 53 54 public RunCollectionView(IItemCollection<IRun> content)55 : this() {56 Content = content;57 }58 59 54 protected override void DeregisterContentEvents() { 60 55 Content.ItemsAdded -= new CollectionItemsChangedEventHandler<IRun>(Content_ItemsAdded); -
TabularUnified trunk/sources/HeuristicLab.Optimization.Views/3.3/RunView.cs ¶
r3557 r3566 56 56 Caption = "Run"; 57 57 base.ReadOnly = true; 58 }59 /// <summary>60 /// Initializes a new instance of <see cref="VariableView"/> with the given <paramref name="variable"/>.61 /// </summary>62 /// <remarks>Calls <see cref="VariableView()"/>.</remarks>63 /// <param name="variable">The variable to represent visually.</param>64 public RunView(IRun content)65 : this() {66 Content = content;67 58 } 68 59 -
TabularUnified trunk/sources/HeuristicLab.Optimization.Views/3.3/UserDefinedAlgorithmView.cs ¶
r3515 r3566 45 45 public UserDefinedAlgorithmView() { 46 46 InitializeComponent(); 47 }48 /// <summary>49 /// Intializes a new instance of <see cref="ItemBaseView"/> with the given <paramref name="item"/>.50 /// </summary>51 /// <param name="item">The item that should be displayed.</param>52 public UserDefinedAlgorithmView(UserDefinedAlgorithm content)53 : this() {54 Content = content;55 47 } 56 48 -
TabularUnified trunk/sources/HeuristicLab.Parameters.Views/3.3/ConstrainedValueParameterView.cs ¶
r3455 r3566 55 55 Caption = "ConstrainedValueParameter"; 56 56 valueComboBoxItems = new List<T>(); 57 }58 /// <summary>59 /// Initializes a new instance of <see cref="VariableView"/> with the given <paramref name="variable"/>.60 /// </summary>61 /// <remarks>Calls <see cref="VariableView()"/>.</remarks>62 /// <param name="variable">The variable to represent visually.</param>63 public ConstrainedValueParameterView(OptionalConstrainedValueParameter<T> content)64 : this() {65 Content = content;66 57 } 67 58 -
TabularUnified trunk/sources/HeuristicLab.Parameters.Views/3.3/LookupParameterView.cs ¶
r3376 r3566 50 50 InitializeComponent(); 51 51 Caption = "LookupParameter"; 52 }53 /// <summary>54 /// Initializes a new instance of <see cref="VariableView"/> with the given <paramref name="variable"/>.55 /// </summary>56 /// <remarks>Calls <see cref="VariableView()"/>.</remarks>57 /// <param name="variable">The variable to represent visually.</param>58 public LookupParameterView(ILookupParameter<T> content)59 : this() {60 Content = content;61 52 } 62 53 -
TabularUnified trunk/sources/HeuristicLab.Parameters.Views/3.3/ParameterView.cs ¶
r3365 r3566 50 50 Caption = "Parameter"; 51 51 } 52 /// <summary>53 /// Initializes a new instance of <see cref="VariableView"/> with the given <paramref name="variable"/>.54 /// </summary>55 /// <remarks>Calls <see cref="VariableView()"/>.</remarks>56 /// <param name="variable">The variable to represent visually.</param>57 public ParameterView(IParameter content)58 : this() {59 Content = content;60 }61 52 62 53 protected override void OnContentChanged() { -
TabularUnified trunk/sources/HeuristicLab.Parameters.Views/3.3/ValueLookupParameterView.cs ¶
r3526 r3566 53 53 InitializeComponent(); 54 54 Caption = "ValueLookupParameter"; 55 }56 /// <summary>57 /// Initializes a new instance of <see cref="VariableView"/> with the given <paramref name="variable"/>.58 /// </summary>59 /// <remarks>Calls <see cref="VariableView()"/>.</remarks>60 /// <param name="variable">The variable to represent visually.</param>61 public ValueLookupParameterView(IValueLookupParameter<T> content)62 : this() {63 Content = content;64 55 } 65 56 -
TabularUnified trunk/sources/HeuristicLab.Parameters.Views/3.3/ValueParameterView.cs ¶
r3526 r3566 54 54 InitializeComponent(); 55 55 Caption = "ValueParameter"; 56 }57 /// <summary>58 /// Initializes a new instance of <see cref="VariableView"/> with the given <paramref name="variable"/>.59 /// </summary>60 /// <remarks>Calls <see cref="VariableView()"/>.</remarks>61 /// <param name="variable">The variable to represent visually.</param>62 public ValueParameterView(IValueParameter<T> content)63 : this() {64 Content = content;65 56 } 66 57 -
TabularUnified trunk/sources/HeuristicLab.Problems.ArtificialAnt.Views/3.3/AntTrailView.cs ¶
r3460 r3566 40 40 public AntTrailView() { 41 41 InitializeComponent(); 42 }43 44 public AntTrailView(AntTrail content)45 : this() {46 Content = content;47 42 } 48 43 -
TabularUnified trunk/sources/HeuristicLab.Problems.DataAnalysis.Views/3.3/DataAnalysisProblemDataView.cs ¶
r3545 r3566 26 26 } 27 27 28 public DataAnalysisProblemDataView(DataAnalysisProblemData content)29 : this() {30 Content = content;31 }32 33 28 private void importButton_Click(object sender, EventArgs e) { 34 29 if (openFileDialog == null) openFileDialog = new OpenFileDialog(); -
TabularUnified trunk/sources/HeuristicLab.Problems.DataAnalysis.Views/3.3/EstimatedValuesView.cs ¶
r3462 r3566 60 60 } 61 61 62 public EstimatedValuesView(DataAnalysisSolution dataAnalysisSolution)63 : this() {64 Content = dataAnalysisSolution;65 }66 67 62 #region events 68 63 protected override void RegisterContentEvents() { -
TabularUnified trunk/sources/HeuristicLab.Problems.DataAnalysis.Views/3.3/LineChartView.cs ¶
r3462 r3566 60 60 this.chart.ChartAreas[0].AxisY.ScaleView.Zoomable = true; 61 61 this.chart.ChartAreas[0].CursorY.Interval = 0; 62 }63 64 public LineChartView(DataAnalysisSolution dataAnalysisSolution)65 : this() {66 Content = dataAnalysisSolution;67 RedrawChart();68 62 } 69 63 -
TabularUnified trunk/sources/HeuristicLab.Problems.DataAnalysis.Views/3.3/ScatterPlotView.cs ¶
r3480 r3566 81 81 } 82 82 83 public ScatterPlotView(DataAnalysisSolution dataAnalysisSolution)84 : this() {85 Content = dataAnalysisSolution;86 UpdateChart();87 }88 89 83 protected override void RegisterContentEvents() { 90 84 base.RegisterContentEvents(); -
TabularUnified trunk/sources/HeuristicLab.Problems.DataAnalysis.Views/3.3/Symbolic/SimplifiedSymbolicExpressionModelView.cs ¶
r3462 r3566 53 53 } 54 54 55 public SimplifiedSymbolicExpressionModelView(SymbolicRegressionSolution content)56 : this() {57 Content = content;58 }59 60 55 protected override void RegisterContentEvents() { 61 56 base.RegisterContentEvents(); -
TabularUnified trunk/sources/HeuristicLab.Problems.DataAnalysis.Views/3.3/Symbolic/SymbolicExpressionModelView.cs ¶
r3469 r3566 52 52 } 53 53 54 public SymbolicExpressionModelView(SymbolicRegressionSolution content)55 : this() {56 Content = content;57 }58 59 60 54 protected override void RegisterContentEvents() { 61 55 base.RegisterContentEvents(); -
TabularUnified trunk/sources/HeuristicLab.Problems.Knapsack.Views/3.3/KnapsackSolutionView.cs ¶
r3540 r3566 45 45 } 46 46 47 public KnapsackSolutionView(KnapsackSolution content)48 : this() {49 Content = content;50 }51 52 47 protected override void DeregisterContentEvents() { 53 48 Content.BinaryVectorChanged -= new EventHandler(Content_BinaryVectorChanged); -
TabularUnified trunk/sources/HeuristicLab.Problems.TravelingSalesman.Views/3.3/PathTSPTourView.cs ¶
r3502 r3566 45 45 public PathTSPTourView() { 46 46 InitializeComponent(); 47 }48 /// <summary>49 /// Intializes a new instance of <see cref="ItemBaseView"/> with the given <paramref name="item"/>.50 /// </summary>51 /// <param name="item">The item that should be displayed.</param>52 public PathTSPTourView(PathTSPTour content)53 : this() {54 Content = content;55 47 } 56 48 -
TabularUnified trunk/sources/HeuristicLab.Problems.TravelingSalesman.Views/3.3/TravelingSalesmanProblemView.cs ¶
r3455 r3566 46 46 public TravelingSalesmanProblemView() { 47 47 InitializeComponent(); 48 }49 /// <summary>50 /// Intializes a new instance of <see cref="ItemBaseView"/> with the given <paramref name="item"/>.51 /// </summary>52 /// <param name="item">The item that should be displayed.</param>53 public TravelingSalesmanProblemView(TravelingSalesmanProblem content)54 : this() {55 Content = content;56 48 } 57 49
Note: See TracChangeset
for help on using the changeset viewer.