Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/07/10 11:38:19 (14 years ago)
Author:
mkommend
Message:

implemented showInViewHost and moved ViewHost from Core.Views to MainForm.WindowsForm (ticket #961)

Location:
trunk/sources/HeuristicLab.Core.Views/3.3
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Core.Views/3.3/HeuristicLab.Core.Views-3.3.csproj

    r3177 r3281  
    178178      <DependentUpon>TypeSelector.cs</DependentUpon>
    179179    </Compile>
    180     <Compile Include="ViewHost.cs">
    181       <SubType>UserControl</SubType>
    182     </Compile>
    183     <Compile Include="ViewHost.Designer.cs">
    184       <DependentUpon>ViewHost.cs</DependentUpon>
    185     </Compile>
    186180    <Compile Include="OperatorCollectionView.cs">
    187181      <SubType>UserControl</SubType>
  • trunk/sources/HeuristicLab.Core.Views/3.3/ItemArrayView.Designer.cs

    r2932 r3281  
    6060      this.imageList = new System.Windows.Forms.ImageList(this.components);
    6161      this.detailsGroupBox = new System.Windows.Forms.GroupBox();
    62       this.viewHost = new HeuristicLab.Core.Views.ViewHost();
     62      this.viewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
    6363      this.itemsGroupBox = new System.Windows.Forms.GroupBox();
    6464      this.toolTip = new System.Windows.Forms.ToolTip(this.components);
     
    208208    protected ToolTip toolTip;
    209209    protected ImageList imageList;
    210     protected ViewHost viewHost;
     210    protected HeuristicLab.MainForm.WindowsForms.ViewHost viewHost;
    211211  }
    212212}
  • trunk/sources/HeuristicLab.Core.Views/3.3/ItemCollectionView.Designer.cs

    r2932 r3281  
    6161      this.addButton = new System.Windows.Forms.Button();
    6262      this.detailsGroupBox = new System.Windows.Forms.GroupBox();
    63       this.viewHost = new HeuristicLab.Core.Views.ViewHost();
     63      this.viewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
    6464      this.itemsGroupBox = new System.Windows.Forms.GroupBox();
    6565      this.toolTip = new System.Windows.Forms.ToolTip(this.components);
     
    235235    protected ToolTip toolTip;
    236236    protected ImageList imageList;
    237     protected ViewHost viewHost;
     237    protected HeuristicLab.MainForm.WindowsForms.ViewHost viewHost;
    238238    protected Button sortAscendingButton;
    239239    protected Button sortDescendingButton;
  • trunk/sources/HeuristicLab.Core.Views/3.3/ItemListView.Designer.cs

    r2932 r3281  
    6060      this.addButton = new System.Windows.Forms.Button();
    6161      this.detailsGroupBox = new System.Windows.Forms.GroupBox();
    62       this.viewHost = new HeuristicLab.Core.Views.ViewHost();
     62      this.viewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
    6363      this.itemsGroupBox = new System.Windows.Forms.GroupBox();
    6464      this.toolTip = new System.Windows.Forms.ToolTip(this.components);
     
    235235    protected ToolTip toolTip;
    236236    protected ImageList imageList;
    237     protected ViewHost viewHost;
     237    protected HeuristicLab.MainForm.WindowsForms.ViewHost viewHost;
    238238  }
    239239}
  • trunk/sources/HeuristicLab.Core.Views/3.3/OperatorGraphView.cs

    r2949 r3281  
    3030  /// The visual representation of an <see cref="OperatorGraph"/>.
    3131  /// </summary>
    32   [View("OperatorGraph View (Tree)")]
     32  [View("OperatorGraph View (Tree)",ShowInViewHost=true)]
    3333  [Content(typeof(OperatorGraph), true)]
    3434  public partial class OperatorGraphView : ItemView {
  • trunk/sources/HeuristicLab.Core.Views/3.3/VariableValueView.Designer.cs

    r2989 r3281  
    4646    private void InitializeComponent() {
    4747      this.valuePanel = new System.Windows.Forms.Panel();
    48       this.viewHost = new HeuristicLab.Core.Views.ViewHost();
     48      this.viewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
    4949      this.valuePanel.SuspendLayout();
    5050      this.SuspendLayout();
     
    8787    #endregion
    8888
    89     protected ViewHost viewHost;
     89    protected HeuristicLab.MainForm.WindowsForms.ViewHost viewHost;
    9090    protected System.Windows.Forms.Panel valuePanel;
    9191  }
  • trunk/sources/HeuristicLab.Core.Views/3.3/VariableView.Designer.cs

    r2924 r3281  
    5050      this.valueGroupBox = new System.Windows.Forms.GroupBox();
    5151      this.valuePanel = new System.Windows.Forms.Panel();
    52       this.viewHost = new HeuristicLab.Core.Views.ViewHost();
     52      this.viewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
    5353      this.clearValueButton = new System.Windows.Forms.Button();
    5454      this.setValueButton = new System.Windows.Forms.Button();
     
    178178    protected System.Windows.Forms.TextBox dataTypeTextBox;
    179179    protected System.Windows.Forms.GroupBox valueGroupBox;
    180     protected ViewHost viewHost;
     180    protected HeuristicLab.MainForm.WindowsForms.ViewHost viewHost;
    181181    protected System.Windows.Forms.Button clearValueButton;
    182182    protected System.Windows.Forms.Button setValueButton;
Note: See TracChangeset for help on using the changeset viewer.