* X11Keyboard.cs: Detect and use the num lock mask.
[mono.git] / mcs / class / Managed.Windows.Forms / System.Windows.Forms / ThreadExceptionDialog.cs
1 //
2 // System.Windows.Forms.ThreadExceptionDialog.cs
3 //
4 // Permission is hereby granted, free of charge, to any person obtaining
5 // a copy of this software and associated documentation files (the
6 // "Software"), to deal in the Software without restriction, including
7 // without limitation the rights to use, copy, modify, merge, publish,
8 // distribute, sublicense, and/or sell copies of the Software, and to
9 // permit persons to whom the Software is furnished to do so, subject to
10 // the following conditions:
11 //
12 // The above copyright notice and this permission notice shall be
13 // included in all copies or substantial portions of the Software.
14 //
15 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
19 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
20 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
21 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
22 //
23 // Autors:
24 //              Marek Safar     marek.safar@seznam.cz
25 //
26 // Copyright (C) Novell Inc., 2004
27
28 // COMPLETE - BUT DISABLED TEXTBOX
29
30 using System;
31 using System.Text;
32 using System.Reflection;
33
34 namespace System.Windows.Forms
35 {
36         public class ThreadExceptionDialog: Form
37         {
38                 Exception e;
39                 bool details;
40
41                 private System.Windows.Forms.Button buttonIgnore;
42                 private System.Windows.Forms.Button buttonAbort;
43                 private System.Windows.Forms.Button buttonDetails;
44                 private System.Windows.Forms.Label labelException;
45                 private System.Windows.Forms.Label label1;
46 #if TEXTBOX
47                 private System.Windows.Forms.TextBox textBoxDetails;
48 #endif
49                 private System.Windows.Forms.Label helpText;
50
51                 private void InitializeComponent()
52                 {
53                         this.helpText = new System.Windows.Forms.Label();
54                         this.buttonAbort = new System.Windows.Forms.Button();
55                         this.buttonIgnore = new System.Windows.Forms.Button();
56                         this.buttonDetails = new System.Windows.Forms.Button();
57                         this.labelException = new System.Windows.Forms.Label();
58 #if TEXTBOX
59                         this.textBoxDetails = new System.Windows.Forms.TextBox();
60 #endif
61                         this.label1 = new System.Windows.Forms.Label();
62                         this.SuspendLayout();
63                         // 
64                         // helpText
65                         // 
66                         this.helpText.Location = new System.Drawing.Point(60, 8);
67                         this.helpText.Name = "helpText";
68                         this.helpText.Size = new System.Drawing.Size(356, 40);
69                         this.helpText.TabIndex = 0;
70                         this.helpText.Text = "An unhandled exception has occurred in you application. If you click Ignore the a" +
71                                 "pplication will ignore this error and attempt to continue. If you click Abort, t" +
72                                 "he application will quit immediately.";
73                         // 
74                         // buttonAbort
75                         // 
76                         this.buttonAbort.DialogResult = System.Windows.Forms.DialogResult.Abort;
77                         this.buttonAbort.Location = new System.Drawing.Point(332, 112);
78                         this.buttonAbort.Name = "buttonAbort";
79                         this.buttonAbort.Size = new System.Drawing.Size(85, 23);
80                         this.buttonAbort.TabIndex = 4;
81                         this.buttonAbort.Text = "&Abort";
82                         this.buttonAbort.Click += new System.EventHandler(this.buttonAbort_Click);
83                         // 
84                         // buttonIgnore
85                         // 
86                         this.buttonIgnore.DialogResult = System.Windows.Forms.DialogResult.Ignore;
87                         this.buttonIgnore.Location = new System.Drawing.Point(236, 112);
88                         this.buttonIgnore.Name = "buttonIgnore";
89                         this.buttonIgnore.Size = new System.Drawing.Size(85, 23);
90                         this.buttonIgnore.TabIndex = 3;
91                         this.buttonIgnore.Text = "&Ignore";
92                         // 
93                         // buttonDetails
94                         // 
95                         this.buttonDetails.Location = new System.Drawing.Point(140, 112);
96                         this.buttonDetails.Name = "buttonDetails";
97                         this.buttonDetails.Size = new System.Drawing.Size(85, 23);
98                         this.buttonDetails.TabIndex = 2;
99                         this.buttonDetails.Text = "Show &Details";
100                         this.buttonDetails.Click += new System.EventHandler(this.buttonDetails_Click);
101                         // 
102                         // labelException
103                         // 
104                         this.labelException.Location = new System.Drawing.Point(60, 64);
105                         this.labelException.Name = "labelException";
106                         this.labelException.Size = new System.Drawing.Size(356, 32);
107                         this.labelException.TabIndex = 1;
108                         // 
109                         // textBoxDetails
110                         // 
111 #if TEXTBOX
112                         this.textBoxDetails.Location = new System.Drawing.Point(8, 168);
113                         this.textBoxDetails.Multiline = true;
114                         this.textBoxDetails.Name = "textBoxDetails";
115                         this.textBoxDetails.ReadOnly = true;
116                         this.textBoxDetails.ScrollBars = System.Windows.Forms.ScrollBars.Both;
117                         this.textBoxDetails.Size = new System.Drawing.Size(408, 196);
118                         this.textBoxDetails.TabIndex = 5;
119                         this.textBoxDetails.TabStop = false;
120                         this.textBoxDetails.Text = "";
121                         this.textBoxDetails.WordWrap = false;
122 #endif
123                         // 
124                         // label1
125                         // 
126                         this.label1.Location = new System.Drawing.Point(8, 148);
127                         this.label1.Name = "label1";
128                         this.label1.Size = new System.Drawing.Size(100, 16);
129                         this.label1.TabIndex = 0;
130                         this.label1.Text = "Exception details";
131                         // 
132                         // ThreadExceptionDialog
133                         // 
134                         this.AcceptButton = this.buttonIgnore;
135                         this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
136                         this.CancelButton = this.buttonAbort;
137                         this.ClientSize = new System.Drawing.Size(428, 374);
138                         this.Controls.Add(this.label1);
139 #if TEXTBOX
140                         this.Controls.Add(this.textBoxDetails);
141 #endif
142                         this.Controls.Add(this.labelException);
143                         this.Controls.Add(this.buttonDetails);
144                         this.Controls.Add(this.buttonIgnore);
145                         this.Controls.Add(this.buttonAbort);
146                         this.Controls.Add(this.helpText);
147                         this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
148                         this.MaximizeBox = false;
149                         this.MinimizeBox = false;
150                         this.Name = "ThreadExceptionDialog";
151                         this.ShowInTaskbar = false;
152                         this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
153                         this.TopMost = true;
154                         this.ResumeLayout(false);
155                 }
156         
157                 public ThreadExceptionDialog (Exception e)
158                 {
159                         this.e = e;
160                         InitializeComponent ();
161
162                         this.labelException.Text = e.Message;
163                         if (Form.ActiveForm != null)
164                                 this.Text = Form.ActiveForm.Text;
165                         else
166                                 this.Text = "Mono";
167                         this.buttonAbort.Enabled = Application.AllowQuit;
168                         RefreshDetails ();
169                         FillExceptionDetails ();
170                 }
171
172                 void buttonDetails_Click(object sender, System.EventArgs e)
173                 {
174                         details = !details;
175                         RefreshDetails ();
176                 }
177
178                 void FillExceptionDetails ()
179                 {
180                         StringBuilder sb = new StringBuilder ();
181                         sb.Append (e.ToString ());
182                         sb.Append (Environment.NewLine + Environment.NewLine);
183                         sb.Append ("Loaded assemblies:" + Environment.NewLine + Environment.NewLine);
184
185                         foreach (Assembly a in AppDomain.CurrentDomain.GetAssemblies ()) {
186                                 AssemblyName an = a.GetName ();
187                                 sb.AppendFormat ("Name:\t{0}" + Environment.NewLine, an.Name);
188                                 sb.AppendFormat ("Version:\t{0}" + Environment.NewLine, an.Version);
189                                 sb.AppendFormat ("Location:\t{0}" + Environment.NewLine, an.CodeBase);
190                                 sb.Append (Environment.NewLine);
191                         }
192 #if TEXTBOX
193                         textBoxDetails.Text = sb.ToString ();
194 #endif
195                 }
196
197                 void RefreshDetails ()
198                 {
199                         if (details) {
200                                 buttonDetails.Text = "Hide &Details";
201                                 Height = 410;
202                                 return;
203                         }
204                         buttonDetails.Text = "Show &Details";
205                         Height = 180;
206                 }
207
208                 void buttonAbort_Click(object sender, System.EventArgs e)
209                 {
210                         Application.Exit ();
211                 }
212         }
213 }