Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/12/11 09:13:15 (14 years ago)
Author:
abeham
Message:

#1337

  • Renamed VS2008ImageLibrary resource to VSImageLibrary
  • Added Filter icon to the VS2010ImageLibrary folder and the resource manager
Location:
trunk/sources/HeuristicLab.DebugEngine/3.3
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/sources/HeuristicLab.DebugEngine/3.3/DebugEngineView.Designer.cs

    r5117 r5287  
    7777      // executionStackView
    7878      //
    79       this.executionStackView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
    80             | System.Windows.Forms.AnchorStyles.Left) 
     79      this.executionStackView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     80            | System.Windows.Forms.AnchorStyles.Left)
    8181            | System.Windows.Forms.AnchorStyles.Right)));
    8282      this.executionStackView.Caption = "Execution Stack View";
     
    111111      //
    112112      this.refreshButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
    113       this.refreshButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Refresh;
     113      this.refreshButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Refresh;
    114114      this.refreshButton.Location = new System.Drawing.Point(3, 511);
    115115      this.refreshButton.Name = "refreshButton";
     
    137137      //
    138138      this.stepButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
    139       this.stepButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.MoveNext;
     139      this.stepButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.MoveNext;
    140140      this.stepButton.Location = new System.Drawing.Point(33, 511);
    141141      this.stepButton.Name = "stepButton";
     
    148148      // splitContainer3
    149149      //
    150       this.splitContainer3.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
    151             | System.Windows.Forms.AnchorStyles.Left) 
     150      this.splitContainer3.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     151            | System.Windows.Forms.AnchorStyles.Left)
    152152            | System.Windows.Forms.AnchorStyles.Right)));
    153153      this.splitContainer3.Location = new System.Drawing.Point(0, 0);
  • TabularUnified trunk/sources/HeuristicLab.DebugEngine/3.3/ExecutionStackView.cs

    r5219 r5287  
    7676      treeView.Nodes.Clear();
    7777      treeView.ImageList.Images.Clear();
    78       treeView.ImageList.Images.Add(VS2008ImageLibrary.Method);
    79       treeView.ImageList.Images.Add(VS2008ImageLibrary.Module);
    80       treeView.ImageList.Images.Add(VS2008ImageLibrary.BreakpointActive);
     78      treeView.ImageList.Images.Add(VSImageLibrary.Method);
     79      treeView.ImageList.Images.Add(VSImageLibrary.Module);
     80      treeView.ImageList.Images.Add(VSImageLibrary.BreakpointActive);
    8181      int totalNodes = AddStackOperations(treeView.Nodes, ((IEnumerable<IOperation>)Content).Reverse());
    8282      if (treeView.Nodes.Count > 0)
  • TabularUnified trunk/sources/HeuristicLab.DebugEngine/3.3/OperationContent.cs

    r5146 r5287  
    4343        Name = Utils.Name(AtomicOperation);
    4444        if (AtomicOperation.Operator != null && AtomicOperation.Operator.Breakpoint) {
    45           Icon = VS2008ImageLibrary.BreakpointActive;
     45          Icon = VSImageLibrary.BreakpointActive;
    4646        } else {
    47           Icon = VS2008ImageLibrary.Method;
     47          Icon = VSImageLibrary.Method;
    4848        }
    4949      } else if (Collection != null) {
    5050        Name = string.Format("{0} Operations", Collection.Count);
    51         Icon = VS2008ImageLibrary.Module;
     51        Icon = VSImageLibrary.Module;
    5252      } else {
    5353        Name = "";
    54         Icon = VS2008ImageLibrary.Nothing;
     54        Icon = VSImageLibrary.Nothing;
    5555      }
    5656    }
  • TabularUnified trunk/sources/HeuristicLab.DebugEngine/3.3/OperationContentView.cs

    r5220 r5287  
    8080      scopeTreeView.Nodes.Clear();
    8181      scopeTreeView.ImageList.Images.Clear();
    82       scopeTreeView.ImageList.Images.Add(VS2008ImageLibrary.Namespace);
    83       scopeTreeView.ImageList.Images.Add(VS2008ImageLibrary.Field);
     82      scopeTreeView.ImageList.Images.Add(VSImageLibrary.Namespace);
     83      scopeTreeView.ImageList.Images.Add(VSImageLibrary.Field);
    8484      if (Content.IsContext) {
    8585        var scope = Content.ExecutionContext.Scope;
     
    124124      executionContextTreeView.Nodes.Clear();
    125125      executionContextTreeView.ImageList.Images.Clear();
    126       executionContextTreeView.ImageList.Images.Add(VS2008ImageLibrary.Namespace);
     126      executionContextTreeView.ImageList.Images.Add(VSImageLibrary.Namespace);
    127127      if (Content.IsContext) {
    128128        AddExecutionContext(Content.ExecutionContext, executionContextTreeView.Nodes);
     
    156156        TreeNode paramNode = node.Nodes.Add(label);
    157157        paramNode.Tag = param;
    158         executionContextTreeView.ImageList.Images.Add(param.ItemImage ?? VS2008ImageLibrary.Nothing);
     158        executionContextTreeView.ImageList.Images.Add(param.ItemImage ?? VSImageLibrary.Nothing);
    159159        paramNode.ImageIndex = executionContextTreeView.ImageList.Images.Count - 1;
    160160        paramNode.SelectedImageIndex = paramNode.ImageIndex;
  • TabularUnified trunk/sources/HeuristicLab.DebugEngine/3.3/OperatorTraceView.cs

    r5221 r5287  
    8484      listView.Items.Clear();
    8585      listView.SmallImageList.Images.Clear();
    86       listView.SmallImageList.Images.Add(VS2008ImageLibrary.Method);
    87       listView.SmallImageList.Images.Add(VS2008ImageLibrary.Module);
    88       listView.SmallImageList.Images.Add(VS2008ImageLibrary.BreakpointActive);
     86      listView.SmallImageList.Images.Add(VSImageLibrary.Method);
     87      listView.SmallImageList.Images.Add(VSImageLibrary.Module);
     88      listView.SmallImageList.Images.Add(VSImageLibrary.BreakpointActive);
    8989      foreach (var item in Content) {
    9090        var viewItem = listView.Items.Add(item.Name ?? item.ItemName);
     
    140140    #endregion
    141141
    142    
     142
    143143  }
    144144
Note: See TracChangeset for help on using the changeset viewer.