Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/22/10 14:08:18 (14 years ago)
Author:
epitzer
Message:

Many small improvements to DebugEngine (#47)

  • suppress logging during execution
  • add refresh button
  • optionally skip over execution stack operators
  • expand all tree views and scroll to top node
  • show operator on click on atomic operation
  • add build.cmd
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.DebugEngine/ExecutionStackView.cs

    r4871 r4903  
    11using System;
    22using System.Collections.Generic;
    3 using System.ComponentModel;
    43using System.Drawing;
    5 using System.Data;
    64using System.Linq;
    7 using System.Text;
    85using System.Windows.Forms;
    96using HeuristicLab.Collections;
    107using HeuristicLab.Core;
     8using HeuristicLab.MainForm;
    119using HeuristicLab.MainForm.WindowsForms;
    12 using HeuristicLab.MainForm;
    1310
    1411namespace HeuristicLab.DebugEngine {
     
    5148        UpdateExecutionStack();
    5249    }
    53    
     50
    5451
    5552    private void UpdateExecutionStack() {
     
    6057        if (treeView.Nodes.Count > 0)
    6158          treeView.TopNode = treeView.Nodes[0];
     59        treeView.ExpandAll();
    6260        treeView.EndUpdate();
    6361        groupBox.Text = string.Format("Execution Stack ({0})", totalNodes);
     
    118116    }
    119117
    120    
     118
    121119
    122120    #region Event Handlers (child controls)
Note: See TracChangeset for help on using the changeset viewer.