Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
10/12/14 03:02:37 (10 years ago)
Author:
swagner
Message:

#2205: Worked on optimization networks

Location:
branches/OptimizationNetworks/HeuristicLab.Optimization.Networks.Views/3.3
Files:
2 added
6 edited

Legend:

Unmodified
Added
Removed
  • branches/OptimizationNetworks/HeuristicLab.Optimization.Networks.Views/3.3/AlgorithmNodeView.cs

    r11412 r11452  
    3030  [Content(typeof(AlgorithmNode), true)]
    3131  [Content(typeof(IAlgorithmNode), false)]
    32   public partial class AlgorithmNodeView : NodeView {
     32  public partial class AlgorithmNodeView : EntityView {
    3333    protected TypeSelectorDialog typeSelectorDialog;
    3434
  • branches/OptimizationNetworks/HeuristicLab.Optimization.Networks.Views/3.3/HeuristicLab.Optimization.Networks.Views-3.3.csproj

    r11449 r11452  
    103103      <DependentUpon>EntityView.cs</DependentUpon>
    104104    </Compile>
     105    <Compile Include="InputOutputPortView.cs">
     106      <SubType>UserControl</SubType>
     107    </Compile>
     108    <Compile Include="InputOutputPortView.Designer.cs">
     109      <DependentUpon>InputOutputPortView.cs</DependentUpon>
     110    </Compile>
    105111    <Compile Include="PortView.cs">
    106112      <SubType>UserControl</SubType>
  • branches/OptimizationNetworks/HeuristicLab.Optimization.Networks.Views/3.3/NodeView.Designer.cs

    r11409 r11452  
    4545    /// </summary>
    4646    private void InitializeComponent() {
     47      this.portCollectionView = new HeuristicLab.Optimization.Networks.Views.PortCollectionView();
    4748      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
    4849      this.SuspendLayout();
     
    5253      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
    5354      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
    54       this.nameTextBox.Location = new System.Drawing.Point(69, 0);
    55       this.nameTextBox.Size = new System.Drawing.Size(551, 20);
    5655      //
    57       // infoLabel
     56      // portCollectionView
    5857      //
    59       this.infoLabel.Location = new System.Drawing.Point(626, 3);
     58      this.portCollectionView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     59            | System.Windows.Forms.AnchorStyles.Left)
     60            | System.Windows.Forms.AnchorStyles.Right)));
     61      this.portCollectionView.Caption = "PortCollection View";
     62      this.portCollectionView.Content = null;
     63      this.portCollectionView.Location = new System.Drawing.Point(0, 26);
     64      this.portCollectionView.Name = "portCollectionView";
     65      this.portCollectionView.ReadOnly = false;
     66      this.portCollectionView.ShowDetails = true;
     67      this.portCollectionView.Size = new System.Drawing.Size(645, 491);
     68      this.portCollectionView.TabIndex = 3;
    6069      //
    6170      // NodeView
    6271      //
    6372      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
     73      this.Controls.Add(this.portCollectionView);
    6474      this.Name = "NodeView";
    65       this.Size = new System.Drawing.Size(645, 517);
     75      this.Controls.SetChildIndex(this.nameLabel, 0);
     76      this.Controls.SetChildIndex(this.nameTextBox, 0);
     77      this.Controls.SetChildIndex(this.infoLabel, 0);
     78      this.Controls.SetChildIndex(this.portCollectionView, 0);
    6679      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
    6780      this.ResumeLayout(false);
     
    7285    #endregion
    7386
     87    protected PortCollectionView portCollectionView;
     88
     89
    7490
    7591
  • branches/OptimizationNetworks/HeuristicLab.Optimization.Networks.Views/3.3/NodeView.cs

    r11449 r11452  
    3838    }
    3939
    40     protected override void DeregisterContentEvents() {
    41       // remove events here
    42       base.DeregisterContentEvents();
    43     }
    44 
    45     protected override void RegisterContentEvents() {
    46       base.RegisterContentEvents();
    47       // add events here
    48     }
    49 
    5040    protected override void OnContentChanged() {
    5141      base.OnContentChanged();
    52       //...
     42      portCollectionView.Content = Content == null ? null : Content.Ports;
    5343    }
    5444
    5545    protected override void SetEnabledStateOfControls() {
    5646      base.SetEnabledStateOfControls();
    57       //...
     47      portCollectionView.Enabled = Content != null && !ReadOnly;
    5848    }
    5949  }
  • branches/OptimizationNetworks/HeuristicLab.Optimization.Networks.Views/3.3/VariablesNodeView.Designer.cs

    r11412 r11452  
    4545    /// </summary>
    4646    private void InitializeComponent() {
    47       this.portCollectionView = new HeuristicLab.Optimization.Networks.Views.PortCollectionView();
    4847      this.splitContainer = new System.Windows.Forms.SplitContainer();
    4948      this.variableCollectionView = new HeuristicLab.Core.Views.VariableCollectionView();
     49      this.portCollectionView = new HeuristicLab.Optimization.Networks.Views.PortCollectionView();
    5050      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
    5151      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit();
     
    5959      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
    6060      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
    61       //
    62       // portCollectionView
    63       //
    64       this.portCollectionView.Caption = "PortCollection View";
    65       this.portCollectionView.Content = null;
    66       this.portCollectionView.Dock = System.Windows.Forms.DockStyle.Fill;
    67       this.portCollectionView.Location = new System.Drawing.Point(0, 0);
    68       this.portCollectionView.Name = "portCollectionView";
    69       this.portCollectionView.ReadOnly = false;
    70       this.portCollectionView.ShowDetails = true;
    71       this.portCollectionView.Size = new System.Drawing.Size(645, 238);
    72       this.portCollectionView.TabIndex = 0;
    7361      //
    7462      // splitContainer
     
    8977      this.splitContainer.Panel2.Controls.Add(this.variableCollectionView);
    9078      this.splitContainer.Size = new System.Drawing.Size(645, 491);
    91       this.splitContainer.SplitterDistance = 238;
     79      this.splitContainer.SplitterDistance = 237;
    9280      this.splitContainer.TabIndex = 3;
    9381      //
     
    10189      this.variableCollectionView.ReadOnly = false;
    10290      this.variableCollectionView.ShowDetails = true;
    103       this.variableCollectionView.Size = new System.Drawing.Size(645, 249);
     91      this.variableCollectionView.Size = new System.Drawing.Size(645, 250);
    10492      this.variableCollectionView.TabIndex = 0;
     93      //
     94      // portCollectionView
     95      //
     96      this.portCollectionView.Caption = "PortCollection View";
     97      this.portCollectionView.Content = null;
     98      this.portCollectionView.Dock = System.Windows.Forms.DockStyle.Fill;
     99      this.portCollectionView.Location = new System.Drawing.Point(0, 0);
     100      this.portCollectionView.Name = "portCollectionView";
     101      this.portCollectionView.ReadOnly = false;
     102      this.portCollectionView.ShowDetails = true;
     103      this.portCollectionView.Size = new System.Drawing.Size(645, 237);
     104      this.portCollectionView.TabIndex = 0;
    105105      //
    106106      // VariablesNodeView
     
    125125    #endregion
    126126
    127     protected PortCollectionView portCollectionView;
    128127    protected System.Windows.Forms.SplitContainer splitContainer;
    129128    protected Core.Views.VariableCollectionView variableCollectionView;
     129    private PortCollectionView portCollectionView;
    130130
    131131
  • branches/OptimizationNetworks/HeuristicLab.Optimization.Networks.Views/3.3/VariablesNodeView.cs

    r11412 r11452  
    3030  [Content(typeof(VariablesNode), true)]
    3131  [Content(typeof(IVariablesNode), false)]
    32   public partial class VariablesNodeView : NodeView {
     32  public partial class VariablesNodeView : EntityView {
    3333    public new IVariablesNode Content {
    3434      get { return (IVariablesNode)base.Content; }
Note: See TracChangeset for help on using the changeset viewer.