forked from baldurk/renderdoc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAPIInspector.Designer.cs
More file actions
161 lines (154 loc) · 7.96 KB
/
APIInspector.Designer.cs
File metadata and controls
161 lines (154 loc) · 7.96 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
namespace renderdocui.Windows
{
partial class APIInspector
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
TreelistView.TreeListColumn treeListColumn3 = new TreelistView.TreeListColumn("EID", "EID");
TreelistView.TreeListColumn treeListColumn4 = new TreelistView.TreeListColumn("Call", "API Call");
this.apiEvents = new TreelistView.TreeListView();
this.callstacklabel = new System.Windows.Forms.Label();
this.panelSplitter = new renderdocui.Controls.DoubleClickSplitter();
this.callstack = new System.Windows.Forms.ListBox();
tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
tableLayoutPanel1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.apiEvents)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.panelSplitter)).BeginInit();
this.panelSplitter.Panel1.SuspendLayout();
this.panelSplitter.Panel2.SuspendLayout();
this.panelSplitter.SuspendLayout();
this.SuspendLayout();
//
// tableLayoutPanel1
//
tableLayoutPanel1.ColumnCount = 1;
tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
tableLayoutPanel1.Controls.Add(this.apiEvents, 0, 0);
tableLayoutPanel1.Controls.Add(this.callstacklabel, 0, 1);
tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
tableLayoutPanel1.Name = "tableLayoutPanel1";
tableLayoutPanel1.RowCount = 2;
tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
tableLayoutPanel1.Size = new System.Drawing.Size(292, 171);
tableLayoutPanel1.TabIndex = 3;
//
// apiEvents
//
this.apiEvents.AlwaysDisplayVScroll = true;
treeListColumn3.AutoSizeMinSize = 50;
treeListColumn3.Width = 60;
treeListColumn4.AutoSize = true;
treeListColumn4.AutoSizeMinSize = 0;
treeListColumn4.Width = 50;
this.apiEvents.Columns.AddRange(new TreelistView.TreeListColumn[] {
treeListColumn3,
treeListColumn4});
this.apiEvents.Cursor = System.Windows.Forms.Cursors.Arrow;
this.apiEvents.Dock = System.Windows.Forms.DockStyle.Fill;
this.apiEvents.Location = new System.Drawing.Point(3, 3);
this.apiEvents.Name = "apiEvents";
this.apiEvents.RowOptions.ShowHeader = false;
this.apiEvents.Size = new System.Drawing.Size(286, 152);
this.apiEvents.TabIndex = 1;
this.apiEvents.Text = "API Calls";
this.apiEvents.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.apiEvents_AfterSelect);
this.apiEvents.KeyDown += new System.Windows.Forms.KeyEventHandler(this.apiEvents_KeyDown);
//
// callstacklabel
//
this.callstacklabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
this.callstacklabel.AutoSize = true;
this.callstacklabel.Cursor = System.Windows.Forms.Cursors.HSplit;
this.callstacklabel.Location = new System.Drawing.Point(3, 158);
this.callstacklabel.Name = "callstacklabel";
this.callstacklabel.Size = new System.Drawing.Size(286, 13);
this.callstacklabel.TabIndex = 3;
this.callstacklabel.Text = "Callstack";
this.callstacklabel.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
this.callstacklabel.DoubleClick += new System.EventHandler(this.callstacklabel_DoubleClick);
//
// panelSplitter
//
this.panelSplitter.Collapsed = false;
this.panelSplitter.Dock = System.Windows.Forms.DockStyle.Fill;
this.panelSplitter.Location = new System.Drawing.Point(0, 0);
this.panelSplitter.Name = "panelSplitter";
this.panelSplitter.Orientation = System.Windows.Forms.Orientation.Horizontal;
//
// panelSplitter.Panel1
//
this.panelSplitter.Panel1.Controls.Add(tableLayoutPanel1);
this.panelSplitter.Panel1Collapse = false;
//
// panelSplitter.Panel2
//
this.panelSplitter.Panel2.Controls.Add(this.callstack);
this.panelSplitter.Size = new System.Drawing.Size(292, 273);
this.panelSplitter.SplitterDistance = 171;
this.panelSplitter.SplitterWidth = 7;
this.panelSplitter.TabIndex = 4;
//
// callstack
//
this.callstack.Dock = System.Windows.Forms.DockStyle.Fill;
this.callstack.FormattingEnabled = true;
this.callstack.HorizontalScrollbar = true;
this.callstack.Location = new System.Drawing.Point(0, 0);
this.callstack.Name = "callstack";
this.callstack.SelectionMode = System.Windows.Forms.SelectionMode.MultiExtended;
this.callstack.Size = new System.Drawing.Size(292, 95);
this.callstack.TabIndex = 2;
this.callstack.KeyDown += new System.Windows.Forms.KeyEventHandler(this.callstack_KeyDown);
//
// APIInspector
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(292, 273);
this.Controls.Add(this.panelSplitter);
this.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.Name = "APIInspector";
this.ShowHint = WeifenLuo.WinFormsUI.Docking.DockState.DockLeft;
this.Text = "API Calls";
this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.APIInspector_FormClosed);
this.Shown += new System.EventHandler(this.APIEvents_Shown);
tableLayoutPanel1.ResumeLayout(false);
tableLayoutPanel1.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.apiEvents)).EndInit();
this.panelSplitter.Panel1.ResumeLayout(false);
this.panelSplitter.Panel2.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.panelSplitter)).EndInit();
this.panelSplitter.ResumeLayout(false);
this.ResumeLayout(false);
}
#endregion
private TreelistView.TreeListView apiEvents;
private System.Windows.Forms.ListBox callstack;
private Controls.DoubleClickSplitter panelSplitter;
private System.Windows.Forms.Label callstacklabel;
}
}