X11Exception.cs 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. // Permission is hereby granted, free of charge, to any person obtaining
  2. // a copy of this software and associated documentation files (the
  3. // "Software"), to deal in the Software without restriction, including
  4. // without limitation the rights to use, copy, modify, merge, publish,
  5. // distribute, sublicense, and/or sell copies of the Software, and to
  6. // permit persons to whom the Software is furnished to do so, subject to
  7. // the following conditions:
  8. //
  9. // The above copyright notice and this permission notice shall be
  10. // included in all copies or substantial portions of the Software.
  11. //
  12. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  13. // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  14. // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  15. // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  16. // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  17. // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  18. // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  19. //
  20. // Copyright (c) 2006 Novell, Inc. (http://www.novell.com)
  21. //
  22. //
  23. using System;
  24. using System.Text;
  25. using System.Threading;
  26. using System.Windows.Forms;
  27. namespace System.Windows.Forms.X11Internal {
  28. internal class X11Exception : ApplicationException {
  29. IntPtr Display;
  30. IntPtr ResourceID;
  31. IntPtr Serial;
  32. XRequest RequestCode;
  33. byte ErrorCode;
  34. byte MinorCode;
  35. public X11Exception (IntPtr Display, IntPtr ResourceID, IntPtr Serial, byte ErrorCode, XRequest RequestCode, byte MinorCode)
  36. {
  37. this.Display = Display;
  38. this.ResourceID = ResourceID;
  39. this.Serial = Serial;
  40. this.RequestCode = RequestCode;
  41. this.ErrorCode = ErrorCode;
  42. this.MinorCode = MinorCode;
  43. }
  44. public override string Message {
  45. get {
  46. return GetMessage (Display, ResourceID, Serial, ErrorCode, RequestCode, MinorCode);
  47. }
  48. }
  49. public static string GetMessage (IntPtr Display, IntPtr ResourceID, IntPtr Serial, byte ErrorCode, XRequest RequestCode, byte MinorCode)
  50. {
  51. StringBuilder sb;
  52. string x_error_text;
  53. string error;
  54. string hwnd_text;
  55. string control_text;
  56. Hwnd hwnd;
  57. Control c;
  58. sb = new StringBuilder(160);
  59. Xlib.XGetErrorText (Display, ErrorCode, sb, sb.Capacity);
  60. x_error_text = sb.ToString();
  61. hwnd = Hwnd.ObjectFromHandle(ResourceID);
  62. if (hwnd != null) {
  63. hwnd_text = hwnd.ToString();
  64. c = Control.FromHandle(hwnd.Handle);
  65. if (c != null) {
  66. control_text = c.ToString();
  67. } else {
  68. control_text = String.Format("<handle {0:X} non-existant>", hwnd.Handle);
  69. }
  70. }
  71. else {
  72. hwnd_text = "<null>";
  73. control_text = "<null>";
  74. }
  75. error = String.Format("\n Error: {0}\n Request: {1:D} ({2})\n Resource ID: 0x{3:X}\n Serial: {4}\n Hwnd: {5}\n Control: {6}", x_error_text, RequestCode, RequestCode, ResourceID.ToInt32(), Serial, hwnd_text, control_text);
  76. return error;
  77. }
  78. }
  79. }