Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/20/10 05:04:31 (14 years ago)
Author:
swagner
Message:

Committing first results of the refactoring of HeuristicLab.Core and related plugins (#95)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Core.Views/3.3/ScopeView.Designer.cs

    r2520 r2655  
    3232    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
    3333    protected override void Dispose(bool disposing) {
    34       if (scopesTreeView.Nodes.Count > 0) {
    35         RemoveTreeNode(scopesTreeView.Nodes[0]);
    36         scopesTreeView.Nodes.Clear();
    37       }
    38       if (disposing && (components != null)) {
    39         components.Dispose();
     34      if (disposing) {
     35        if (scopesTreeView.Nodes.Count > 0) {
     36          RemoveTreeNode(scopesTreeView.Nodes[0]);
     37          scopesTreeView.Nodes.Clear();
     38        }
     39        if (components != null) components.Dispose();
    4040      }
    4141      base.Dispose(disposing);
     
    4949    /// </summary>
    5050    private void InitializeComponent() {
    51       this.components = new System.ComponentModel.Container();
    5251      this.scopesTreeView = new System.Windows.Forms.TreeView();
    53       this.contextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
    54       this.automaticUpdatingToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
    55       this.refreshToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
    56       this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripSeparator();
    57       this.viewToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
    58       this.variablesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
    59       this.contextMenuStrip.SuspendLayout();
     52      this.splitContainer = new System.Windows.Forms.SplitContainer();
     53      this.scopesGroupBox = new System.Windows.Forms.GroupBox();
     54      this.variableCollectionView = new HeuristicLab.Core.Views.VariableCollectionView();
     55      this.splitContainer.Panel1.SuspendLayout();
     56      this.splitContainer.Panel2.SuspendLayout();
     57      this.splitContainer.SuspendLayout();
     58      this.scopesGroupBox.SuspendLayout();
    6059      this.SuspendLayout();
    6160      //
    6261      // scopesTreeView
    6362      //
    64       this.scopesTreeView.ContextMenuStrip = this.contextMenuStrip;
    6563      this.scopesTreeView.Dock = System.Windows.Forms.DockStyle.Fill;
    6664      this.scopesTreeView.HideSelection = false;
    67       this.scopesTreeView.Location = new System.Drawing.Point(0, 0);
     65      this.scopesTreeView.Location = new System.Drawing.Point(3, 16);
    6866      this.scopesTreeView.Name = "scopesTreeView";
    6967      this.scopesTreeView.ShowNodeToolTips = true;
    70       this.scopesTreeView.Size = new System.Drawing.Size(400, 400);
     68      this.scopesTreeView.Size = new System.Drawing.Size(394, 181);
    7169      this.scopesTreeView.TabIndex = 0;
    7270      this.scopesTreeView.AfterCollapse += new System.Windows.Forms.TreeViewEventHandler(this.scopesTreeView_AfterCollapse);
    7371      this.scopesTreeView.BeforeExpand += new System.Windows.Forms.TreeViewCancelEventHandler(this.scopesTreeView_BeforeExpand);
    74       this.scopesTreeView.DoubleClick += new System.EventHandler(this.scopesTreeView_DoubleClick);
    7572      this.scopesTreeView.MouseDown += new System.Windows.Forms.MouseEventHandler(this.scopesTreeView_MouseDown);
    7673      this.scopesTreeView.ItemDrag += new System.Windows.Forms.ItemDragEventHandler(this.scopesTreeView_ItemDrag);
    7774      //
    78       // contextMenuStrip
     75      // splitContainer
    7976      //
    80       this.contextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
    81             this.automaticUpdatingToolStripMenuItem,
    82             this.refreshToolStripMenuItem,
    83             this.toolStripMenuItem1,
    84             this.variablesToolStripMenuItem,
    85             this.viewToolStripMenuItem});
    86       this.contextMenuStrip.Name = "contextMenuStrip";
    87       this.contextMenuStrip.Size = new System.Drawing.Size(180, 98);
    88       this.contextMenuStrip.Opening += new System.ComponentModel.CancelEventHandler(this.contextMenuStrip_Opening);
     77      this.splitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
     78      this.splitContainer.Location = new System.Drawing.Point(0, 0);
     79      this.splitContainer.Name = "splitContainer";
     80      this.splitContainer.Orientation = System.Windows.Forms.Orientation.Horizontal;
    8981      //
    90       // automaticUpdatingToolStripMenuItem
     82      // splitContainer.Panel1
    9183      //
    92       this.automaticUpdatingToolStripMenuItem.CheckOnClick = true;
    93       this.automaticUpdatingToolStripMenuItem.Name = "automaticUpdatingToolStripMenuItem";
    94       this.automaticUpdatingToolStripMenuItem.Size = new System.Drawing.Size(179, 22);
    95       this.automaticUpdatingToolStripMenuItem.Text = "Automatic &Updating";
    96       this.automaticUpdatingToolStripMenuItem.ToolTipText = "Automatically update scope editor during execution";
    97       this.automaticUpdatingToolStripMenuItem.Click += new System.EventHandler(this.automaticUpdatingToolStripMenuItem_Click);
     84      this.splitContainer.Panel1.Controls.Add(this.scopesGroupBox);
    9885      //
    99       // refreshToolStripMenuItem
     86      // splitContainer.Panel2
    10087      //
    101       this.refreshToolStripMenuItem.Name = "refreshToolStripMenuItem";
    102       this.refreshToolStripMenuItem.Size = new System.Drawing.Size(179, 22);
    103       this.refreshToolStripMenuItem.Text = "&Refresh";
    104       this.refreshToolStripMenuItem.Click += new System.EventHandler(this.refreshToolStripMenuItem_Click);
     88      this.splitContainer.Panel2.Controls.Add(this.variableCollectionView);
     89      this.splitContainer.Size = new System.Drawing.Size(400, 400);
     90      this.splitContainer.SplitterDistance = 200;
     91      this.splitContainer.TabIndex = 1;
    10592      //
    106       // toolStripMenuItem1
     93      // scopesGroupBox
    10794      //
    108       this.toolStripMenuItem1.Name = "toolStripMenuItem1";
    109       this.toolStripMenuItem1.Size = new System.Drawing.Size(176, 6);
     95      this.scopesGroupBox.Controls.Add(this.scopesTreeView);
     96      this.scopesGroupBox.Dock = System.Windows.Forms.DockStyle.Fill;
     97      this.scopesGroupBox.Location = new System.Drawing.Point(0, 0);
     98      this.scopesGroupBox.Name = "scopesGroupBox";
     99      this.scopesGroupBox.Size = new System.Drawing.Size(400, 200);
     100      this.scopesGroupBox.TabIndex = 0;
     101      this.scopesGroupBox.TabStop = false;
     102      this.scopesGroupBox.Text = "&Scopes";
    110103      //
    111       // viewToolStripMenuItem
     104      // variableCollectionView
    112105      //
    113       this.viewToolStripMenuItem.Name = "viewToolStripMenuItem";
    114       this.viewToolStripMenuItem.Size = new System.Drawing.Size(179, 22);
    115       this.viewToolStripMenuItem.Text = "&View";
    116       //
    117       // variablesToolStripMenuItem
    118       //
    119       this.variablesToolStripMenuItem.Name = "variablesToolStripMenuItem";
    120       this.variablesToolStripMenuItem.Size = new System.Drawing.Size(179, 22);
    121       this.variablesToolStripMenuItem.Text = "&Variables...";
    122       this.variablesToolStripMenuItem.Click += new System.EventHandler(this.variablesToolStripMenuItem_Click);
     106      this.variableCollectionView.Caption = "VariableCollection";
     107      this.variableCollectionView.Dock = System.Windows.Forms.DockStyle.Fill;
     108      this.variableCollectionView.ItemCollection = null;
     109      this.variableCollectionView.Location = new System.Drawing.Point(0, 0);
     110      this.variableCollectionView.Name = "variableCollectionView";
     111      this.variableCollectionView.NamedItemCollection = null;
     112      this.variableCollectionView.Size = new System.Drawing.Size(400, 196);
     113      this.variableCollectionView.TabIndex = 0;
    123114      //
    124115      // ScopeView
     
    126117      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
    127118      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
    128       this.Controls.Add(this.scopesTreeView);
     119      this.Controls.Add(this.splitContainer);
    129120      this.Name = "ScopeView";
    130121      this.Size = new System.Drawing.Size(400, 400);
    131       this.contextMenuStrip.ResumeLayout(false);
     122      this.splitContainer.Panel1.ResumeLayout(false);
     123      this.splitContainer.Panel2.ResumeLayout(false);
     124      this.splitContainer.ResumeLayout(false);
     125      this.scopesGroupBox.ResumeLayout(false);
    132126      this.ResumeLayout(false);
    133127
     
    137131
    138132    private System.Windows.Forms.TreeView scopesTreeView;
    139     private System.Windows.Forms.ContextMenuStrip contextMenuStrip;
    140     private System.Windows.Forms.ToolStripMenuItem viewToolStripMenuItem;
    141     private System.Windows.Forms.ToolStripMenuItem automaticUpdatingToolStripMenuItem;
    142     private System.Windows.Forms.ToolStripMenuItem refreshToolStripMenuItem;
    143     private System.Windows.Forms.ToolStripSeparator toolStripMenuItem1;
    144     private System.Windows.Forms.ToolStripMenuItem variablesToolStripMenuItem;
     133    private System.Windows.Forms.SplitContainer splitContainer;
     134    private System.Windows.Forms.GroupBox scopesGroupBox;
     135    private VariableCollectionView variableCollectionView;
    145136  }
    146137}
Note: See TracChangeset for help on using the changeset viewer.