1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/GUI/CrashForm.Designer.cs Sun Jul 04 12:12:37 2010 +0000
1.3 @@ -0,0 +1,279 @@
1.4 +/*
1.5 +
1.6 + Version: MPL 1.1/GPL 2.0/LGPL 2.1
1.7 +
1.8 + The contents of this file are subject to the Mozilla Public License Version
1.9 + 1.1 (the "License"); you may not use this file except in compliance with
1.10 + the License. You may obtain a copy of the License at
1.11 +
1.12 + http://www.mozilla.org/MPL/
1.13 +
1.14 + Software distributed under the License is distributed on an "AS IS" basis,
1.15 + WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
1.16 + for the specific language governing rights and limitations under the License.
1.17 +
1.18 + The Original Code is the Open Hardware Monitor code.
1.19 +
1.20 + The Initial Developer of the Original Code is
1.21 + Michael Möller <m.moeller@gmx.ch>.
1.22 + Portions created by the Initial Developer are Copyright (C) 2009-2010
1.23 + the Initial Developer. All Rights Reserved.
1.24 +
1.25 + Contributor(s):
1.26 +
1.27 + Alternatively, the contents of this file may be used under the terms of
1.28 + either the GNU General Public License Version 2 or later (the "GPL"), or
1.29 + the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
1.30 + in which case the provisions of the GPL or the LGPL are applicable instead
1.31 + of those above. If you wish to allow use of your version of this file only
1.32 + under the terms of either the GPL or the LGPL, and not to allow others to
1.33 + use your version of this file under the terms of the MPL, indicate your
1.34 + decision by deleting the provisions above and replace them with the notice
1.35 + and other provisions required by the GPL or the LGPL. If you do not delete
1.36 + the provisions above, a recipient may use your version of this file under
1.37 + the terms of any one of the MPL, the GPL or the LGPL.
1.38 +
1.39 +*/
1.40 +
1.41 +namespace OpenHardwareMonitor.GUI {
1.42 + partial class CrashForm {
1.43 + /// <summary>
1.44 + /// Required designer variable.
1.45 + /// </summary>
1.46 + private System.ComponentModel.IContainer components = null;
1.47 +
1.48 + /// <summary>
1.49 + /// Clean up any resources being used.
1.50 + /// </summary>
1.51 + /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
1.52 + protected override void Dispose(bool disposing) {
1.53 + if (disposing && (components != null)) {
1.54 + components.Dispose();
1.55 + }
1.56 + base.Dispose(disposing);
1.57 + }
1.58 +
1.59 + #region Windows Form Designer generated code
1.60 +
1.61 + /// <summary>
1.62 + /// Required method for Designer support - do not modify
1.63 + /// the contents of this method with the code editor.
1.64 + /// </summary>
1.65 + private void InitializeComponent() {
1.66 + this.sendButton = new System.Windows.Forms.Button();
1.67 + this.exitButton = new System.Windows.Forms.Button();
1.68 + this.commentTextBox = new System.Windows.Forms.TextBox();
1.69 + this.titleLabel = new System.Windows.Forms.Label();
1.70 + this.label3 = new System.Windows.Forms.Label();
1.71 + this.label1 = new System.Windows.Forms.Label();
1.72 + this.commentPanel = new System.Windows.Forms.Panel();
1.73 + this.reportPanel = new System.Windows.Forms.Panel();
1.74 + this.reportTextBox = new System.Windows.Forms.TextBox();
1.75 + this.textBox1 = new System.Windows.Forms.TextBox();
1.76 + this.label2 = new System.Windows.Forms.Label();
1.77 + this.emailTextBox = new System.Windows.Forms.TextBox();
1.78 + this.commentPanel.SuspendLayout();
1.79 + this.reportPanel.SuspendLayout();
1.80 + this.SuspendLayout();
1.81 + //
1.82 + // sendButton
1.83 + //
1.84 + this.sendButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
1.85 + this.sendButton.Location = new System.Drawing.Point(449, 469);
1.86 + this.sendButton.Name = "sendButton";
1.87 + this.sendButton.Size = new System.Drawing.Size(75, 23);
1.88 + this.sendButton.TabIndex = 2;
1.89 + this.sendButton.Text = "Send";
1.90 + this.sendButton.UseVisualStyleBackColor = true;
1.91 + this.sendButton.Click += new System.EventHandler(this.sendButton_Click);
1.92 + //
1.93 + // exitButton
1.94 + //
1.95 + this.exitButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
1.96 + this.exitButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
1.97 + this.exitButton.Location = new System.Drawing.Point(530, 469);
1.98 + this.exitButton.Name = "exitButton";
1.99 + this.exitButton.Size = new System.Drawing.Size(75, 23);
1.100 + this.exitButton.TabIndex = 3;
1.101 + this.exitButton.Text = "Exit";
1.102 + this.exitButton.UseVisualStyleBackColor = true;
1.103 + //
1.104 + // commentTextBox
1.105 + //
1.106 + this.commentTextBox.AcceptsReturn = true;
1.107 + this.commentTextBox.BorderStyle = System.Windows.Forms.BorderStyle.None;
1.108 + this.commentTextBox.Dock = System.Windows.Forms.DockStyle.Fill;
1.109 + this.commentTextBox.Location = new System.Drawing.Point(4, 4);
1.110 + this.commentTextBox.Multiline = true;
1.111 + this.commentTextBox.Name = "commentTextBox";
1.112 + this.commentTextBox.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
1.113 + this.commentTextBox.Size = new System.Drawing.Size(586, 77);
1.114 + this.commentTextBox.TabIndex = 1;
1.115 + //
1.116 + // titleLabel
1.117 + //
1.118 + this.titleLabel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
1.119 + | System.Windows.Forms.AnchorStyles.Right)));
1.120 + this.titleLabel.BackColor = System.Drawing.SystemColors.Window;
1.121 + this.titleLabel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
1.122 + this.titleLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
1.123 + this.titleLabel.Location = new System.Drawing.Point(-1, -1);
1.124 + this.titleLabel.Name = "titleLabel";
1.125 + this.titleLabel.Padding = new System.Windows.Forms.Padding(10);
1.126 + this.titleLabel.Size = new System.Drawing.Size(619, 52);
1.127 + this.titleLabel.TabIndex = 4;
1.128 + this.titleLabel.Text = "Open Hardware Monitor has encountered a problem and needs to close. We are sorry " +
1.129 + "for the inconvenience.";
1.130 + //
1.131 + // label3
1.132 + //
1.133 + this.label3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
1.134 + | System.Windows.Forms.AnchorStyles.Right)));
1.135 + this.label3.AutoEllipsis = true;
1.136 + this.label3.AutoSize = true;
1.137 + this.label3.Location = new System.Drawing.Point(9, 63);
1.138 + this.label3.Margin = new System.Windows.Forms.Padding(3, 12, 3, 8);
1.139 + this.label3.Name = "label3";
1.140 + this.label3.Size = new System.Drawing.Size(571, 13);
1.141 + this.label3.TabIndex = 5;
1.142 + this.label3.Text = "To help diagnose and fix the problem, you can send a crash report. The following " +
1.143 + "report has been created automatically:";
1.144 + //
1.145 + // label1
1.146 + //
1.147 + this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
1.148 + | System.Windows.Forms.AnchorStyles.Right)));
1.149 + this.label1.AutoEllipsis = true;
1.150 + this.label1.AutoSize = true;
1.151 + this.label1.Location = new System.Drawing.Point(9, 347);
1.152 + this.label1.Margin = new System.Windows.Forms.Padding(3, 12, 3, 8);
1.153 + this.label1.Name = "label1";
1.154 + this.label1.Size = new System.Drawing.Size(279, 13);
1.155 + this.label1.TabIndex = 6;
1.156 + this.label1.Text = "You can add additional information to the report (optional):";
1.157 + //
1.158 + // commentPanel
1.159 + //
1.160 + this.commentPanel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
1.161 + | System.Windows.Forms.AnchorStyles.Right)));
1.162 + this.commentPanel.BackColor = System.Drawing.SystemColors.Window;
1.163 + this.commentPanel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
1.164 + this.commentPanel.Controls.Add(this.commentTextBox);
1.165 + this.commentPanel.Location = new System.Drawing.Point(12, 371);
1.166 + this.commentPanel.Margin = new System.Windows.Forms.Padding(3, 3, 3, 8);
1.167 + this.commentPanel.Name = "commentPanel";
1.168 + this.commentPanel.Padding = new System.Windows.Forms.Padding(4, 4, 1, 4);
1.169 + this.commentPanel.Size = new System.Drawing.Size(593, 87);
1.170 + this.commentPanel.TabIndex = 1;
1.171 + this.commentPanel.TabStop = true;
1.172 + //
1.173 + // reportPanel
1.174 + //
1.175 + this.reportPanel.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
1.176 + | System.Windows.Forms.AnchorStyles.Left)
1.177 + | System.Windows.Forms.AnchorStyles.Right)));
1.178 + this.reportPanel.BackColor = System.Drawing.SystemColors.Window;
1.179 + this.reportPanel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
1.180 + this.reportPanel.Controls.Add(this.reportTextBox);
1.181 + this.reportPanel.Controls.Add(this.textBox1);
1.182 + this.reportPanel.Location = new System.Drawing.Point(12, 87);
1.183 + this.reportPanel.Name = "reportPanel";
1.184 + this.reportPanel.Padding = new System.Windows.Forms.Padding(4, 4, 1, 4);
1.185 + this.reportPanel.Size = new System.Drawing.Size(593, 212);
1.186 + this.reportPanel.TabIndex = 8;
1.187 + //
1.188 + // reportTextBox
1.189 + //
1.190 + this.reportTextBox.BackColor = System.Drawing.SystemColors.Window;
1.191 + this.reportTextBox.BorderStyle = System.Windows.Forms.BorderStyle.None;
1.192 + this.reportTextBox.Dock = System.Windows.Forms.DockStyle.Fill;
1.193 + this.reportTextBox.Location = new System.Drawing.Point(4, 4);
1.194 + this.reportTextBox.Multiline = true;
1.195 + this.reportTextBox.Name = "reportTextBox";
1.196 + this.reportTextBox.ReadOnly = true;
1.197 + this.reportTextBox.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
1.198 + this.reportTextBox.Size = new System.Drawing.Size(586, 202);
1.199 + this.reportTextBox.TabIndex = 9;
1.200 + this.reportTextBox.TabStop = false;
1.201 + //
1.202 + // textBox1
1.203 + //
1.204 + this.textBox1.BorderStyle = System.Windows.Forms.BorderStyle.None;
1.205 + this.textBox1.Dock = System.Windows.Forms.DockStyle.Fill;
1.206 + this.textBox1.Location = new System.Drawing.Point(4, 4);
1.207 + this.textBox1.Multiline = true;
1.208 + this.textBox1.Name = "textBox1";
1.209 + this.textBox1.Size = new System.Drawing.Size(586, 202);
1.210 + this.textBox1.TabIndex = 2;
1.211 + //
1.212 + // label2
1.213 + //
1.214 + this.label2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
1.215 + | System.Windows.Forms.AnchorStyles.Right)));
1.216 + this.label2.AutoEllipsis = true;
1.217 + this.label2.AutoSize = true;
1.218 + this.label2.Location = new System.Drawing.Point(9, 318);
1.219 + this.label2.Margin = new System.Windows.Forms.Padding(3, 12, 3, 8);
1.220 + this.label2.Name = "label2";
1.221 + this.label2.Size = new System.Drawing.Size(171, 13);
1.222 + this.label2.TabIndex = 9;
1.223 + this.label2.Text = "Enter your email address (optional):";
1.224 + //
1.225 + // emailTextBox
1.226 + //
1.227 + this.emailTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
1.228 + | System.Windows.Forms.AnchorStyles.Right)));
1.229 + this.emailTextBox.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
1.230 + this.emailTextBox.Location = new System.Drawing.Point(188, 315);
1.231 + this.emailTextBox.Name = "emailTextBox";
1.232 + this.emailTextBox.Size = new System.Drawing.Size(417, 20);
1.233 + this.emailTextBox.TabIndex = 0;
1.234 + //
1.235 + // CrashReportForm
1.236 + //
1.237 + this.AcceptButton = this.sendButton;
1.238 + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
1.239 + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
1.240 + this.CancelButton = this.exitButton;
1.241 + this.ClientSize = new System.Drawing.Size(617, 504);
1.242 + this.ControlBox = false;
1.243 + this.Controls.Add(this.emailTextBox);
1.244 + this.Controls.Add(this.label2);
1.245 + this.Controls.Add(this.reportPanel);
1.246 + this.Controls.Add(this.commentPanel);
1.247 + this.Controls.Add(this.label1);
1.248 + this.Controls.Add(this.label3);
1.249 + this.Controls.Add(this.titleLabel);
1.250 + this.Controls.Add(this.exitButton);
1.251 + this.Controls.Add(this.sendButton);
1.252 + this.MaximizeBox = false;
1.253 + this.MinimizeBox = false;
1.254 + this.Name = "CrashReportForm";
1.255 + this.ShowIcon = false;
1.256 + this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
1.257 + this.Text = "Open Hardware Monitor";
1.258 + this.commentPanel.ResumeLayout(false);
1.259 + this.commentPanel.PerformLayout();
1.260 + this.reportPanel.ResumeLayout(false);
1.261 + this.reportPanel.PerformLayout();
1.262 + this.ResumeLayout(false);
1.263 + this.PerformLayout();
1.264 +
1.265 + }
1.266 +
1.267 + #endregion
1.268 +
1.269 + private System.Windows.Forms.Button sendButton;
1.270 + private System.Windows.Forms.Button exitButton;
1.271 + private System.Windows.Forms.TextBox commentTextBox;
1.272 + private System.Windows.Forms.Label titleLabel;
1.273 + private System.Windows.Forms.Label label3;
1.274 + private System.Windows.Forms.Label label1;
1.275 + private System.Windows.Forms.Panel commentPanel;
1.276 + private System.Windows.Forms.Panel reportPanel;
1.277 + private System.Windows.Forms.TextBox reportTextBox;
1.278 + private System.Windows.Forms.TextBox textBox1;
1.279 + private System.Windows.Forms.Label label2;
1.280 + private System.Windows.Forms.TextBox emailTextBox;
1.281 + }
1.282 +}
1.283 \ No newline at end of file