sysperfana/heapanalyser/Libraries/UI/HeapCtrlLib/Controls/HeapFilteringControl.Designer.cs
changeset 8 15296fd0af4a
equal deleted inserted replaced
7:8e12a575a9b5 8:15296fd0af4a
       
     1 /*
       
     2 * Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 *
       
     5 * Redistribution and use in source and binary forms, with or without
       
     6 * modification, are permitted provided that the following conditions are met:
       
     7 *
       
     8 * - Redistributions of source code must retain the above copyright notice,
       
     9 *   this list of conditions and the following disclaimer.
       
    10 * - Redistributions in binary form must reproduce the above copyright notice,
       
    11 *   this list of conditions and the following disclaimer in the documentation
       
    12 *   and/or other materials provided with the distribution.
       
    13 * - Neither the name of Nokia Corporation nor the names of its contributors
       
    14 *   may be used to endorse or promote products derived from this software
       
    15 *   without specific prior written permission.
       
    16 *
       
    17 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
       
    18 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
       
    19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
       
    20 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
       
    21 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
       
    22 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
       
    23 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
       
    24 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
       
    25 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
       
    26 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
       
    27 * POSSIBILITY OF SUCH DAMAGE.
       
    28 * 
       
    29 * Initial Contributors:
       
    30 * Nokia Corporation - initial contribution.
       
    31 *
       
    32 * Contributors:
       
    33 *
       
    34 * Description: 
       
    35 *
       
    36 */
       
    37 
       
    38 namespace HeapCtrlLib.Controls
       
    39 {
       
    40     partial class HeapFilteringControl
       
    41     {
       
    42         // <summary> 
       
    43         // Required designer variable.
       
    44         // </summary>
       
    45         private System.ComponentModel.IContainer components = null;
       
    46 
       
    47         // <summary> 
       
    48         // Clean up any resources being used.
       
    49         // </summary>
       
    50         // <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
       
    51         protected override void Dispose( bool disposing )
       
    52         {
       
    53             if ( disposing && ( components != null ) )
       
    54             {
       
    55                 components.Dispose();
       
    56             }
       
    57             base.Dispose( disposing );
       
    58         }
       
    59 
       
    60         #region Component Designer generated code
       
    61 
       
    62         // <summary> 
       
    63         // Required method for Designer support - do not modify 
       
    64         // the contents of this method with the code editor.
       
    65         // </summary>
       
    66         private void InitializeComponent()
       
    67         {
       
    68             this.iTableModel = new XPTable.Models.TableModel();
       
    69             this.iTable = new XPTable.Models.Table();
       
    70             this.iColumnModel = new XPTable.Models.ColumnModel();
       
    71             this.iCol_Enabled = new XPTable.Models.CheckBoxColumn();
       
    72             this.iCol_Colour = new XPTable.Models.ColorColumn();
       
    73             this.iCol_Entity = new XPTable.Models.TextColumn();
       
    74             ( (System.ComponentModel.ISupportInitialize) ( this.iTable ) ).BeginInit();
       
    75             this.SuspendLayout();
       
    76             // 
       
    77             // iTable
       
    78             // 
       
    79             this.iTable.ColumnModel = this.iColumnModel;
       
    80             this.iTable.Dock = System.Windows.Forms.DockStyle.Fill;
       
    81             this.iTable.GridLines = XPTable.Models.GridLines.Both;
       
    82             this.iTable.Location = new System.Drawing.Point( 0, 0 );
       
    83             this.iTable.Name = "iTable";
       
    84             this.iTable.Size = new System.Drawing.Size( 625, 300 );
       
    85             this.iTable.TabIndex = 0;
       
    86             this.iTable.TableModel = this.iTableModel;
       
    87             this.iTable.CellCheckChanged += new XPTable.Events.CellCheckBoxEventHandler( this.iTable_CellCheckChanged );
       
    88             // 
       
    89             // iColumnModel
       
    90             // 
       
    91             this.iColumnModel.Columns.AddRange( new XPTable.Models.Column[] {
       
    92             this.iCol_Enabled,
       
    93             this.iCol_Colour,
       
    94             this.iCol_Entity} );
       
    95             // 
       
    96             // iCol_Enabled
       
    97             // 
       
    98             this.iCol_Enabled.Text = "Enabled";
       
    99             this.iCol_Enabled.Width = 60;
       
   100             // 
       
   101             // iCol_Colour
       
   102             // 
       
   103             this.iCol_Colour.Text = "Colour";
       
   104             this.iCol_Colour.Width = 140;
       
   105             // 
       
   106             // iCol_Entity
       
   107             // 
       
   108             this.iCol_Entity.Text = "Entity";
       
   109             this.iCol_Entity.Width = 350;
       
   110             // 
       
   111             // HeapFilteringControl
       
   112             // 
       
   113             this.AutoScaleDimensions = new System.Drawing.SizeF( 6F, 13F );
       
   114             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
       
   115             this.Controls.Add( this.iTable );
       
   116             this.Name = "HeapFilteringControl";
       
   117             this.Size = new System.Drawing.Size( 625, 300 );
       
   118             ( (System.ComponentModel.ISupportInitialize) ( this.iTable ) ).EndInit();
       
   119             this.ResumeLayout( false );
       
   120 
       
   121         }
       
   122 
       
   123         #endregion
       
   124 
       
   125         private XPTable.Models.TableModel iTableModel;
       
   126         private XPTable.Models.Table iTable;
       
   127         private XPTable.Models.ColumnModel iColumnModel;
       
   128         private XPTable.Models.CheckBoxColumn iCol_Enabled;
       
   129         private XPTable.Models.ColorColumn iCol_Colour;
       
   130         private XPTable.Models.TextColumn iCol_Entity;
       
   131     }
       
   132 }