sysperfana/heapanalyser/Libraries/UI/HeapUiLib/Controls/HeapCellSizeDistributionControl.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 HeapUiLib.Controls
       
    39 {
       
    40     partial class HeapCellSizeDistributionControl
       
    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             XPTable.Models.DataSourceColumnBinder dataSourceColumnBinder1 = new XPTable.Models.DataSourceColumnBinder();
       
    69             this.iTable = new XPTable.Models.Table();
       
    70             this.iColumnModel = new XPTable.Models.ColumnModel();
       
    71             this.iCol_Size = new XPTable.Models.TextColumn();
       
    72             this.iCol_Count = new XPTable.Models.TextColumn();
       
    73             this.iCol_Total = new XPTable.Models.TextColumn();
       
    74             this.iCol_PercentageOfType = new XPTable.Models.TextColumn();
       
    75             this.iCol_PercentageOfHeap = new XPTable.Models.TextColumn();
       
    76             this.iTableModel = new XPTable.Models.TableModel();
       
    77             this.iGP_Show = new System.Windows.Forms.GroupBox();
       
    78             this.iRB_Free = new System.Windows.Forms.RadioButton();
       
    79             this.iRB_Allocated = new System.Windows.Forms.RadioButton();
       
    80             ( (System.ComponentModel.ISupportInitialize) ( this.iTable ) ).BeginInit();
       
    81             this.iGP_Show.SuspendLayout();
       
    82             this.SuspendLayout();
       
    83             // 
       
    84             // iTable
       
    85             // 
       
    86             this.iTable.Anchor = ( (System.Windows.Forms.AnchorStyles) ( ( ( ( System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom )
       
    87                         | System.Windows.Forms.AnchorStyles.Left )
       
    88                         | System.Windows.Forms.AnchorStyles.Right ) ) );
       
    89             this.iTable.BorderColor = System.Drawing.Color.Black;
       
    90             this.iTable.ColumnModel = this.iColumnModel;
       
    91             this.iTable.DataMember = null;
       
    92             this.iTable.DataSourceColumnBinder = dataSourceColumnBinder1;
       
    93             this.iTable.EnableToolTips = true;
       
    94             this.iTable.Font = new System.Drawing.Font( "Tahoma", 8.25F );
       
    95             this.iTable.FullRowSelect = true;
       
    96             this.iTable.HeaderFont = new System.Drawing.Font( "Tahoma", 6.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ( (byte) ( 0 ) ) );
       
    97             this.iTable.Location = new System.Drawing.Point( 0, 52 );
       
    98             this.iTable.Name = "iTable";
       
    99             this.iTable.NoItemsText = "No Data";
       
   100             this.iTable.NoItemsTextColor = System.Drawing.SystemColors.ControlText;
       
   101             this.iTable.NoItemsTextFont = new System.Drawing.Font( "Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ( (byte) ( 0 ) ) );
       
   102             this.iTable.Size = new System.Drawing.Size( 517, 130 );
       
   103             this.iTable.TabIndex = 0;
       
   104             this.iTable.TableModel = this.iTableModel;
       
   105             this.iTable.UnfocusedBorderColor = System.Drawing.Color.Black;
       
   106             this.iTable.PrepareForSort += new XPTable.Events.SortEventHandler( this.iTable_PrepareForSort );
       
   107             // 
       
   108             // iColumnModel
       
   109             // 
       
   110             this.iColumnModel.Columns.AddRange( new XPTable.Models.Column[] {
       
   111             this.iCol_Size,
       
   112             this.iCol_Count,
       
   113             this.iCol_Total,
       
   114             this.iCol_PercentageOfType,
       
   115             this.iCol_PercentageOfHeap} );
       
   116             // 
       
   117             // iCol_Size
       
   118             // 
       
   119             this.iCol_Size.ContentWidth = 26;
       
   120             this.iCol_Size.Text = "Size";
       
   121             this.iCol_Size.Width = 120;
       
   122             // 
       
   123             // iCol_Count
       
   124             // 
       
   125             this.iCol_Count.ContentWidth = 80;
       
   126             this.iCol_Count.Text = "Instance Count";
       
   127             this.iCol_Count.Width = 90;
       
   128             // 
       
   129             // iCol_Total
       
   130             // 
       
   131             this.iCol_Total.ContentWidth = 29;
       
   132             this.iCol_Total.Text = "Total";
       
   133             this.iCol_Total.Width = 90;
       
   134             // 
       
   135             // iCol_PercentageOfType
       
   136             // 
       
   137             this.iCol_PercentageOfType.ContentWidth = 62;
       
   138             this.iCol_PercentageOfType.Text = "Percentage";
       
   139             // 
       
   140             // iCol_PercentageOfHeap
       
   141             // 
       
   142             this.iCol_PercentageOfHeap.ContentWidth = 100;
       
   143             this.iCol_PercentageOfHeap.Text = "Percentage (Heap)";
       
   144             this.iCol_PercentageOfHeap.Width = 110;
       
   145             // 
       
   146             // iGP_Show
       
   147             // 
       
   148             this.iGP_Show.Controls.Add( this.iRB_Free );
       
   149             this.iGP_Show.Controls.Add( this.iRB_Allocated );
       
   150             this.iGP_Show.Location = new System.Drawing.Point( 0, 0 );
       
   151             this.iGP_Show.Name = "iGP_Show";
       
   152             this.iGP_Show.Size = new System.Drawing.Size( 243, 46 );
       
   153             this.iGP_Show.TabIndex = 1;
       
   154             this.iGP_Show.TabStop = false;
       
   155             this.iGP_Show.Text = "Show...";
       
   156             // 
       
   157             // iRB_Free
       
   158             // 
       
   159             this.iRB_Free.AutoSize = true;
       
   160             this.iRB_Free.Location = new System.Drawing.Point( 139, 20 );
       
   161             this.iRB_Free.Name = "iRB_Free";
       
   162             this.iRB_Free.Size = new System.Drawing.Size( 70, 17 );
       
   163             this.iRB_Free.TabIndex = 0;
       
   164             this.iRB_Free.Text = "Free cells";
       
   165             this.iRB_Free.UseVisualStyleBackColor = true;
       
   166             this.iRB_Free.CheckedChanged += new System.EventHandler( this.iRB_CheckedChanged );
       
   167             // 
       
   168             // iRB_Allocated
       
   169             // 
       
   170             this.iRB_Allocated.AutoSize = true;
       
   171             this.iRB_Allocated.Checked = true;
       
   172             this.iRB_Allocated.Location = new System.Drawing.Point( 22, 20 );
       
   173             this.iRB_Allocated.Name = "iRB_Allocated";
       
   174             this.iRB_Allocated.Size = new System.Drawing.Size( 92, 17 );
       
   175             this.iRB_Allocated.TabIndex = 0;
       
   176             this.iRB_Allocated.TabStop = true;
       
   177             this.iRB_Allocated.Text = "Allocated cells";
       
   178             this.iRB_Allocated.UseVisualStyleBackColor = true;
       
   179             this.iRB_Allocated.CheckedChanged += new System.EventHandler( this.iRB_CheckedChanged );
       
   180             // 
       
   181             // HeapCellSizeDistributionControl
       
   182             // 
       
   183             this.AutoScaleDimensions = new System.Drawing.SizeF( 6F, 13F );
       
   184             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
       
   185             this.Controls.Add( this.iGP_Show );
       
   186             this.Controls.Add( this.iTable );
       
   187             this.Font = new System.Drawing.Font( "Tahoma", 8.25F );
       
   188             this.Name = "HeapCellSizeDistributionControl";
       
   189             this.Size = new System.Drawing.Size( 517, 182 );
       
   190             ( (System.ComponentModel.ISupportInitialize) ( this.iTable ) ).EndInit();
       
   191             this.iGP_Show.ResumeLayout( false );
       
   192             this.iGP_Show.PerformLayout();
       
   193             this.ResumeLayout( false );
       
   194 
       
   195         }
       
   196 
       
   197         #endregion
       
   198 
       
   199         private XPTable.Models.Table iTable;
       
   200         private XPTable.Models.ColumnModel iColumnModel;
       
   201         private XPTable.Models.TableModel iTableModel;
       
   202         private XPTable.Models.TextColumn iCol_Size;
       
   203         private XPTable.Models.TextColumn iCol_Count;
       
   204         private XPTable.Models.TextColumn iCol_PercentageOfType;
       
   205         private XPTable.Models.TextColumn iCol_PercentageOfHeap;
       
   206         private XPTable.Models.TextColumn iCol_Total;
       
   207         private System.Windows.Forms.GroupBox iGP_Show;
       
   208         private System.Windows.Forms.RadioButton iRB_Free;
       
   209         private System.Windows.Forms.RadioButton iRB_Allocated;
       
   210     }
       
   211 }