Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.DebugEngine/DebugEngineView.Designer.cs @ 4945

Last change on this file since 4945 was 4909, checked in by epitzer, 14 years ago

Several GUI improvements (#47)

  • add icons and tool tips
  • add support for suspending the operator trace view
  • faster skipping of stack-only operations
  • remove log view and execution time view
File size: 9.8 KB
RevLine 
[4747]1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
4 *
5 * This file is part of HeuristicLab.
6 *
7 * HeuristicLab is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * HeuristicLab is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
19 */
20#endregion
21
22namespace HeuristicLab.DebugEngine {
[4743]23  partial class DebugEngineView {
24    /// <summary>
25    /// Required designer variable.
26    /// </summary>
27    private System.ComponentModel.IContainer components = null;
28
29    /// <summary>
30    /// Clean up any resources being used.
31    /// </summary>
32    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
33    protected override void Dispose(bool disposing) {
34      if (disposing && (components != null)) {
35        components.Dispose();
36      }
37      base.Dispose(disposing);
38    }
39
40    #region Windows Form Designer generated code
41
42    /// <summary>
43    /// Required method for Designer support - do not modify
44    /// the contents of this method with the code editor.
45    /// </summary>
46    private void InitializeComponent() {
[4759]47      this.components = new System.ComponentModel.Container();
[4743]48      System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DebugEngineView));
[4909]49      this.operationContentView = new HeuristicLab.DebugEngine.OperationContentView();
50      this.executionStackView = new HeuristicLab.DebugEngine.ExecutionStackView();
[4759]51      this.splitContainer2 = new System.Windows.Forms.SplitContainer();
[4909]52      this.refreshButton = new System.Windows.Forms.Button();
53      this.skipStackOpsCheckBox = new System.Windows.Forms.CheckBox();
[4743]54      this.stepButton = new System.Windows.Forms.Button();
[4759]55      this.toolTip = new System.Windows.Forms.ToolTip(this.components);
[4904]56      this.splitContainer3 = new System.Windows.Forms.SplitContainer();
[4909]57      this.operatorTraceView = new HeuristicLab.DebugEngine.OperatorTraceView();
[4743]58      this.splitContainer2.Panel1.SuspendLayout();
59      this.splitContainer2.Panel2.SuspendLayout();
60      this.splitContainer2.SuspendLayout();
[4904]61      this.splitContainer3.Panel1.SuspendLayout();
[4909]62      this.splitContainer3.Panel2.SuspendLayout();
[4904]63      this.splitContainer3.SuspendLayout();
[4743]64      this.SuspendLayout();
65      //
[4909]66      // operationContentView
[4743]67      //
[4909]68      this.operationContentView.Caption = "Operation Content View";
69      this.operationContentView.Content = null;
70      this.operationContentView.Dock = System.Windows.Forms.DockStyle.Fill;
71      this.operationContentView.Location = new System.Drawing.Point(0, 0);
72      this.operationContentView.Name = "operationContentView";
73      this.operationContentView.ReadOnly = false;
74      this.operationContentView.Size = new System.Drawing.Size(484, 538);
75      this.operationContentView.TabIndex = 0;
[4743]76      //
[4909]77      // executionStackView
[4743]78      //
[4909]79      this.executionStackView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
80                  | System.Windows.Forms.AnchorStyles.Left)
[4743]81                  | System.Windows.Forms.AnchorStyles.Right)));
[4909]82      this.executionStackView.Caption = "Execution Stack View";
83      this.executionStackView.Content = null;
84      this.executionStackView.Location = new System.Drawing.Point(0, 0);
85      this.executionStackView.Name = "executionStackView";
86      this.executionStackView.ReadOnly = false;
87      this.executionStackView.Size = new System.Drawing.Size(197, 505);
88      this.executionStackView.TabIndex = 0;
[4743]89      //
[4759]90      // splitContainer2
91      //
[4904]92      this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill;
93      this.splitContainer2.Location = new System.Drawing.Point(0, 0);
[4759]94      this.splitContainer2.Name = "splitContainer2";
95      //
96      // splitContainer2.Panel1
97      //
[4909]98      this.splitContainer2.Panel1.Controls.Add(this.executionStackView);
99      this.splitContainer2.Panel1.Controls.Add(this.refreshButton);
100      this.splitContainer2.Panel1.Controls.Add(this.skipStackOpsCheckBox);
101      this.splitContainer2.Panel1.Controls.Add(this.stepButton);
[4759]102      //
103      // splitContainer2.Panel2
104      //
[4876]105      this.splitContainer2.Panel2.Controls.Add(this.operationContentView);
[4909]106      this.splitContainer2.Size = new System.Drawing.Size(687, 538);
107      this.splitContainer2.SplitterDistance = 199;
[4759]108      this.splitContainer2.TabIndex = 0;
109      //
[4903]110      // refreshButton
111      //
[4909]112      this.refreshButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
[4903]113      this.refreshButton.Image = ((System.Drawing.Image)(resources.GetObject("refreshButton.Image")));
[4909]114      this.refreshButton.Location = new System.Drawing.Point(3, 511);
[4903]115      this.refreshButton.Name = "refreshButton";
116      this.refreshButton.Size = new System.Drawing.Size(24, 24);
117      this.refreshButton.TabIndex = 5;
[4909]118      this.toolTip.SetToolTip(this.refreshButton, "Refresh View");
[4903]119      this.refreshButton.UseVisualStyleBackColor = true;
120      this.refreshButton.Click += new System.EventHandler(this.refreshButton_Click);
121      //
122      // skipStackOpsCheckBox
123      //
[4909]124      this.skipStackOpsCheckBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
[4903]125      this.skipStackOpsCheckBox.AutoSize = true;
[4909]126      this.skipStackOpsCheckBox.Location = new System.Drawing.Point(63, 516);
[4903]127      this.skipStackOpsCheckBox.Name = "skipStackOpsCheckBox";
[4909]128      this.skipStackOpsCheckBox.Size = new System.Drawing.Size(78, 17);
[4903]129      this.skipStackOpsCheckBox.TabIndex = 6;
[4909]130      this.skipStackOpsCheckBox.Text = "Skip Stack";
131      this.toolTip.SetToolTip(this.skipStackOpsCheckBox, "Automatically step over steps that manipulate only the execution stack");
[4903]132      this.skipStackOpsCheckBox.UseVisualStyleBackColor = true;
133      //
[4909]134      // stepButton
135      //
136      this.stepButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
137      this.stepButton.Image = ((System.Drawing.Image)(resources.GetObject("stepButton.Image")));
138      this.stepButton.Location = new System.Drawing.Point(33, 511);
139      this.stepButton.Name = "stepButton";
140      this.stepButton.Size = new System.Drawing.Size(24, 24);
141      this.stepButton.TabIndex = 4;
142      this.toolTip.SetToolTip(this.stepButton, "Step");
143      this.stepButton.UseVisualStyleBackColor = true;
144      this.stepButton.Click += new System.EventHandler(this.stepButton_Click);
145      //
[4904]146      // splitContainer3
147      //
148      this.splitContainer3.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
149                  | System.Windows.Forms.AnchorStyles.Left)
150                  | System.Windows.Forms.AnchorStyles.Right)));
[4909]151      this.splitContainer3.Location = new System.Drawing.Point(0, 0);
[4904]152      this.splitContainer3.Name = "splitContainer3";
153      //
154      // splitContainer3.Panel1
155      //
156      this.splitContainer3.Panel1.Controls.Add(this.splitContainer2);
[4909]157      //
158      // splitContainer3.Panel2
159      //
[4904]160      this.splitContainer3.Panel2.Controls.Add(this.operatorTraceView);
[4909]161      this.splitContainer3.Size = new System.Drawing.Size(872, 538);
162      this.splitContainer3.SplitterDistance = 687;
[4904]163      this.splitContainer3.TabIndex = 7;
164      //
[4909]165      // operatorTraceView
[4904]166      //
[4909]167      this.operatorTraceView.Caption = "Operator Trace View";
168      this.operatorTraceView.Content = null;
169      this.operatorTraceView.Dock = System.Windows.Forms.DockStyle.Fill;
170      this.operatorTraceView.Location = new System.Drawing.Point(0, 0);
171      this.operatorTraceView.Name = "operatorTraceView";
172      this.operatorTraceView.ReadOnly = false;
173      this.operatorTraceView.Size = new System.Drawing.Size(181, 538);
174      this.operatorTraceView.TabIndex = 0;
[4904]175      //
[4743]176      // DebugEngineView
177      //
178      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
[4904]179      this.Controls.Add(this.splitContainer3);
[4743]180      this.Name = "DebugEngineView";
[4765]181      this.Size = new System.Drawing.Size(872, 538);
[4743]182      this.splitContainer2.Panel1.ResumeLayout(false);
[4909]183      this.splitContainer2.Panel1.PerformLayout();
[4743]184      this.splitContainer2.Panel2.ResumeLayout(false);
185      this.splitContainer2.ResumeLayout(false);
[4904]186      this.splitContainer3.Panel1.ResumeLayout(false);
[4909]187      this.splitContainer3.Panel2.ResumeLayout(false);
[4904]188      this.splitContainer3.ResumeLayout(false);
[4743]189      this.ResumeLayout(false);
190
191    }
192
193    #endregion
194
195    private System.Windows.Forms.SplitContainer splitContainer2;
196    private System.Windows.Forms.Button stepButton;
[4759]197    private System.Windows.Forms.ToolTip toolTip;
[4871]198    private HeuristicLab.DebugEngine.ExecutionStackView executionStackView;
[4876]199    private HeuristicLab.DebugEngine.OperationContentView operationContentView;
[4903]200    private System.Windows.Forms.Button refreshButton;
201    private System.Windows.Forms.CheckBox skipStackOpsCheckBox;
[4904]202    private System.Windows.Forms.SplitContainer splitContainer3;
203    private OperatorTraceView operatorTraceView;
[4743]204
205  }
206}
Note: See TracBrowser for help on using the repository browser.