Changeset 5287 for trunk/sources/HeuristicLab.DebugEngine
- Timestamp:
- 01/12/11 09:13:15 (14 years ago)
- 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 77 77 // executionStackView 78 78 // 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) 81 81 | System.Windows.Forms.AnchorStyles.Right))); 82 82 this.executionStackView.Caption = "Execution Stack View"; … … 111 111 // 112 112 this.refreshButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); 113 this.refreshButton.Image = HeuristicLab.Common.Resources.VS 2008ImageLibrary.Refresh;113 this.refreshButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Refresh; 114 114 this.refreshButton.Location = new System.Drawing.Point(3, 511); 115 115 this.refreshButton.Name = "refreshButton"; … … 137 137 // 138 138 this.stepButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); 139 this.stepButton.Image = HeuristicLab.Common.Resources.VS 2008ImageLibrary.MoveNext;139 this.stepButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.MoveNext; 140 140 this.stepButton.Location = new System.Drawing.Point(33, 511); 141 141 this.stepButton.Name = "stepButton"; … … 148 148 // splitContainer3 149 149 // 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) 152 152 | System.Windows.Forms.AnchorStyles.Right))); 153 153 this.splitContainer3.Location = new System.Drawing.Point(0, 0); -
TabularUnified trunk/sources/HeuristicLab.DebugEngine/3.3/ExecutionStackView.cs ¶
r5219 r5287 76 76 treeView.Nodes.Clear(); 77 77 treeView.ImageList.Images.Clear(); 78 treeView.ImageList.Images.Add(VS 2008ImageLibrary.Method);79 treeView.ImageList.Images.Add(VS 2008ImageLibrary.Module);80 treeView.ImageList.Images.Add(VS 2008ImageLibrary.BreakpointActive);78 treeView.ImageList.Images.Add(VSImageLibrary.Method); 79 treeView.ImageList.Images.Add(VSImageLibrary.Module); 80 treeView.ImageList.Images.Add(VSImageLibrary.BreakpointActive); 81 81 int totalNodes = AddStackOperations(treeView.Nodes, ((IEnumerable<IOperation>)Content).Reverse()); 82 82 if (treeView.Nodes.Count > 0) -
TabularUnified trunk/sources/HeuristicLab.DebugEngine/3.3/OperationContent.cs ¶
r5146 r5287 43 43 Name = Utils.Name(AtomicOperation); 44 44 if (AtomicOperation.Operator != null && AtomicOperation.Operator.Breakpoint) { 45 Icon = VS 2008ImageLibrary.BreakpointActive;45 Icon = VSImageLibrary.BreakpointActive; 46 46 } else { 47 Icon = VS 2008ImageLibrary.Method;47 Icon = VSImageLibrary.Method; 48 48 } 49 49 } else if (Collection != null) { 50 50 Name = string.Format("{0} Operations", Collection.Count); 51 Icon = VS 2008ImageLibrary.Module;51 Icon = VSImageLibrary.Module; 52 52 } else { 53 53 Name = ""; 54 Icon = VS 2008ImageLibrary.Nothing;54 Icon = VSImageLibrary.Nothing; 55 55 } 56 56 } -
TabularUnified trunk/sources/HeuristicLab.DebugEngine/3.3/OperationContentView.cs ¶
r5220 r5287 80 80 scopeTreeView.Nodes.Clear(); 81 81 scopeTreeView.ImageList.Images.Clear(); 82 scopeTreeView.ImageList.Images.Add(VS 2008ImageLibrary.Namespace);83 scopeTreeView.ImageList.Images.Add(VS 2008ImageLibrary.Field);82 scopeTreeView.ImageList.Images.Add(VSImageLibrary.Namespace); 83 scopeTreeView.ImageList.Images.Add(VSImageLibrary.Field); 84 84 if (Content.IsContext) { 85 85 var scope = Content.ExecutionContext.Scope; … … 124 124 executionContextTreeView.Nodes.Clear(); 125 125 executionContextTreeView.ImageList.Images.Clear(); 126 executionContextTreeView.ImageList.Images.Add(VS 2008ImageLibrary.Namespace);126 executionContextTreeView.ImageList.Images.Add(VSImageLibrary.Namespace); 127 127 if (Content.IsContext) { 128 128 AddExecutionContext(Content.ExecutionContext, executionContextTreeView.Nodes); … … 156 156 TreeNode paramNode = node.Nodes.Add(label); 157 157 paramNode.Tag = param; 158 executionContextTreeView.ImageList.Images.Add(param.ItemImage ?? VS 2008ImageLibrary.Nothing);158 executionContextTreeView.ImageList.Images.Add(param.ItemImage ?? VSImageLibrary.Nothing); 159 159 paramNode.ImageIndex = executionContextTreeView.ImageList.Images.Count - 1; 160 160 paramNode.SelectedImageIndex = paramNode.ImageIndex; -
TabularUnified trunk/sources/HeuristicLab.DebugEngine/3.3/OperatorTraceView.cs ¶
r5221 r5287 84 84 listView.Items.Clear(); 85 85 listView.SmallImageList.Images.Clear(); 86 listView.SmallImageList.Images.Add(VS 2008ImageLibrary.Method);87 listView.SmallImageList.Images.Add(VS 2008ImageLibrary.Module);88 listView.SmallImageList.Images.Add(VS 2008ImageLibrary.BreakpointActive);86 listView.SmallImageList.Images.Add(VSImageLibrary.Method); 87 listView.SmallImageList.Images.Add(VSImageLibrary.Module); 88 listView.SmallImageList.Images.Add(VSImageLibrary.BreakpointActive); 89 89 foreach (var item in Content) { 90 90 var viewItem = listView.Items.Add(item.Name ?? item.ItemName); … … 140 140 #endregion 141 141 142 142 143 143 } 144 144
Note: See TracChangeset
for help on using the changeset viewer.