crashanalysercmd/UI/Plugins/CAPluginCrashAnalyserUi/Tabs/Base/CATabCrashBase.cs
changeset 0 818e61de6cd1
equal deleted inserted replaced
-1:000000000000 0:818e61de6cd1
       
     1 /*
       
     2 * Copyright (c) 2004-2008 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description: 
       
    15 *
       
    16 */
       
    17 
       
    18 using System;
       
    19 using System.Collections.Generic;
       
    20 using System.Data;
       
    21 using System.Text;
       
    22 using System.Windows.Forms;
       
    23 using CrashAnalyserEngine.Tabs;
       
    24 using CrashAnalyserEngine.Engine;
       
    25 using CrashAnalyserEngine.Interfaces;
       
    26 using CrashItemLib.Engine;
       
    27 using CAPCrashAnalysis.Plugin;
       
    28 
       
    29 namespace CAPluginCrashAnalysisUi.Tabs
       
    30 {
       
    31     internal partial class CATabCrashBase : CATab
       
    32     {
       
    33         #region Constructors
       
    34         protected CATabCrashBase()
       
    35         {
       
    36             // For IDE designer only
       
    37             InitializeComponent();
       
    38         }
       
    39 
       
    40         protected CATabCrashBase( CAPluginCrashAnalysis aSubEngine )
       
    41         {
       
    42             iSubEngine = aSubEngine;
       
    43             //
       
    44             InitializeComponent();
       
    45         }
       
    46         #endregion
       
    47         
       
    48         #region Properties
       
    49         protected CAPluginCrashAnalysis SubEngine
       
    50         {
       
    51             get { return iSubEngine; }
       
    52         }
       
    53 
       
    54         protected CIEngine CrashItemEngine
       
    55         {
       
    56             get { return SubEngine.CrashItemEngine; }
       
    57         }
       
    58 
       
    59         protected IEngineUIManager UIManager
       
    60         {
       
    61             get { return SubEngine.UIEngine.UIManager; }
       
    62         }
       
    63         #endregion
       
    64 
       
    65         #region From CATab
       
    66         protected override void RegisterMenuItems()
       
    67         {
       
    68             base.RegisterMenuItems();
       
    69         }
       
    70         #endregion
       
    71 
       
    72         #region Event handlers
       
    73         #endregion
       
    74 
       
    75         #region Event handlers
       
    76         #endregion
       
    77 
       
    78         #region Internal methods
       
    79         #endregion
       
    80 
       
    81         #region Data members
       
    82         private CAPluginCrashAnalysis iSubEngine = null;
       
    83         #endregion
       
    84     }
       
    85 }