1// Copyright 2013 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5namespace ChromeDebug
6{
7    partial class AttachDialog
8    {
9        /// <summary>
10        /// Required designer variable.
11        /// </summary>
12        private System.ComponentModel.IContainer components = null;
13
14        /// <summary>
15        /// Clean up any resources being used.
16        /// </summary>
17        /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
18        protected override void Dispose(bool disposing)
19        {
20            if (disposing && (components != null))
21            {
22                components.Dispose();
23            }
24            base.Dispose(disposing);
25        }
26
27        #region Windows Form Designer generated code
28
29        /// <summary>
30        /// Required method for Designer support - do not modify
31        /// the contents of this method with the code editor.
32        /// </summary>
33        private void InitializeComponent()
34        {
35      this.listViewProcesses = new System.Windows.Forms.ListView();
36      this.columnHeaderProcess = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
37      this.columnHeaderPid = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
38      this.columnHeaderTitle = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
39      this.columnHeaderType = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
40      this.columnHeaderSession = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
41      this.columnHeaderCmdLine = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
42      this.buttonAttach = new System.Windows.Forms.Button();
43      this.buttonCancel = new System.Windows.Forms.Button();
44      this.groupBox1 = new System.Windows.Forms.GroupBox();
45      this.buttonRefresh = new System.Windows.Forms.Button();
46      this.checkBoxOnlyChrome = new System.Windows.Forms.CheckBox();
47      this.groupBox1.SuspendLayout();
48      this.SuspendLayout();
49      //
50      // listViewProcesses
51      //
52      this.listViewProcesses.AllowColumnReorder = true;
53      this.listViewProcesses.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
54            | System.Windows.Forms.AnchorStyles.Left)
55            | System.Windows.Forms.AnchorStyles.Right)));
56      this.listViewProcesses.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
57            this.columnHeaderProcess,
58            this.columnHeaderPid,
59            this.columnHeaderTitle,
60            this.columnHeaderType,
61            this.columnHeaderSession,
62            this.columnHeaderCmdLine});
63      this.listViewProcesses.FullRowSelect = true;
64      this.listViewProcesses.Location = new System.Drawing.Point(14, 27);
65      this.listViewProcesses.Name = "listViewProcesses";
66      this.listViewProcesses.Size = new System.Drawing.Size(884, 462);
67      this.listViewProcesses.TabIndex = 0;
68      this.listViewProcesses.UseCompatibleStateImageBehavior = false;
69      this.listViewProcesses.View = System.Windows.Forms.View.Details;
70      //
71      // columnHeaderProcess
72      //
73      this.columnHeaderProcess.Text = "Executable";
74      this.columnHeaderProcess.Width = 65;
75      //
76      // columnHeaderPid
77      //
78      this.columnHeaderPid.Text = "PID";
79      this.columnHeaderPid.Width = 30;
80      //
81      // columnHeaderTitle
82      //
83      this.columnHeaderTitle.Text = "Title";
84      this.columnHeaderTitle.Width = 32;
85      //
86      // columnHeaderType
87      //
88      this.columnHeaderType.Text = "Type";
89      this.columnHeaderType.Width = 36;
90      //
91      // columnHeaderSession
92      //
93      this.columnHeaderSession.Text = "Session";
94      this.columnHeaderSession.Width = 49;
95      //
96      // columnHeaderCmdLine
97      //
98      this.columnHeaderCmdLine.Text = "Command Line";
99      this.columnHeaderCmdLine.Width = 668;
100      //
101      // buttonAttach
102      //
103      this.buttonAttach.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
104      this.buttonAttach.DialogResult = System.Windows.Forms.DialogResult.OK;
105      this.buttonAttach.Location = new System.Drawing.Point(684, 603);
106      this.buttonAttach.Name = "buttonAttach";
107      this.buttonAttach.Size = new System.Drawing.Size(118, 41);
108      this.buttonAttach.TabIndex = 2;
109      this.buttonAttach.Text = "Attach";
110      this.buttonAttach.UseVisualStyleBackColor = true;
111      this.buttonAttach.Click += new System.EventHandler(this.buttonAttach_Click);
112      //
113      // buttonCancel
114      //
115      this.buttonCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
116      this.buttonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
117      this.buttonCancel.Location = new System.Drawing.Point(808, 603);
118      this.buttonCancel.Name = "buttonCancel";
119      this.buttonCancel.Size = new System.Drawing.Size(118, 41);
120      this.buttonCancel.TabIndex = 3;
121      this.buttonCancel.Text = "Cancel";
122      this.buttonCancel.UseVisualStyleBackColor = true;
123      //
124      // groupBox1
125      //
126      this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
127            | System.Windows.Forms.AnchorStyles.Left)
128            | System.Windows.Forms.AnchorStyles.Right)));
129      this.groupBox1.Controls.Add(this.listViewProcesses);
130      this.groupBox1.Location = new System.Drawing.Point(12, 27);
131      this.groupBox1.Name = "groupBox1";
132      this.groupBox1.Size = new System.Drawing.Size(914, 511);
133      this.groupBox1.TabIndex = 5;
134      this.groupBox1.TabStop = false;
135      this.groupBox1.Text = "Available Processes";
136      //
137      // buttonRefresh
138      //
139      this.buttonRefresh.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
140      this.buttonRefresh.Location = new System.Drawing.Point(808, 552);
141      this.buttonRefresh.Name = "buttonRefresh";
142      this.buttonRefresh.Size = new System.Drawing.Size(117, 33);
143      this.buttonRefresh.TabIndex = 6;
144      this.buttonRefresh.Text = "Refresh";
145      this.buttonRefresh.UseVisualStyleBackColor = true;
146      this.buttonRefresh.Click += new System.EventHandler(this.buttonRefresh_Click);
147      //
148      // checkBoxOnlyChrome
149      //
150      this.checkBoxOnlyChrome.AutoSize = true;
151      this.checkBoxOnlyChrome.Checked = true;
152      this.checkBoxOnlyChrome.CheckState = System.Windows.Forms.CheckState.Checked;
153      this.checkBoxOnlyChrome.Location = new System.Drawing.Point(12, 561);
154      this.checkBoxOnlyChrome.Name = "checkBoxOnlyChrome";
155      this.checkBoxOnlyChrome.Size = new System.Drawing.Size(165, 17);
156      this.checkBoxOnlyChrome.TabIndex = 7;
157      this.checkBoxOnlyChrome.Text = "Only show Chrome processes";
158      this.checkBoxOnlyChrome.UseVisualStyleBackColor = true;
159      this.checkBoxOnlyChrome.CheckedChanged += new System.EventHandler(this.checkBoxOnlyChrome_CheckedChanged);
160      //
161      // AttachDialog
162      //
163      this.AcceptButton = this.buttonAttach;
164      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
165      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
166      this.CancelButton = this.buttonCancel;
167      this.ClientSize = new System.Drawing.Size(940, 656);
168      this.ControlBox = false;
169      this.Controls.Add(this.checkBoxOnlyChrome);
170      this.Controls.Add(this.buttonRefresh);
171      this.Controls.Add(this.groupBox1);
172      this.Controls.Add(this.buttonCancel);
173      this.Controls.Add(this.buttonAttach);
174      this.MaximizeBox = false;
175      this.MinimizeBox = false;
176      this.Name = "AttachDialog";
177      this.ShowInTaskbar = false;
178      this.Text = "Attach to Chrome";
179      this.Load += new System.EventHandler(this.AttachDialog_Load);
180      this.groupBox1.ResumeLayout(false);
181      this.ResumeLayout(false);
182      this.PerformLayout();
183
184        }
185
186        #endregion
187
188        private System.Windows.Forms.ListView listViewProcesses;
189        private System.Windows.Forms.Button buttonAttach;
190        private System.Windows.Forms.Button buttonCancel;
191        private System.Windows.Forms.ColumnHeader columnHeaderProcess;
192        private System.Windows.Forms.ColumnHeader columnHeaderPid;
193        private System.Windows.Forms.ColumnHeader columnHeaderTitle;
194        private System.Windows.Forms.ColumnHeader columnHeaderCmdLine;
195        private System.Windows.Forms.ColumnHeader columnHeaderType;
196        private System.Windows.Forms.ColumnHeader columnHeaderSession;
197        private System.Windows.Forms.GroupBox groupBox1;
198        private System.Windows.Forms.Button buttonRefresh;
199        private System.Windows.Forms.CheckBox checkBoxOnlyChrome;
200    }
201}