XplatUIDriver.cs 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  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) 2004 Novell, Inc.
  21. //
  22. // Authors:
  23. // Peter Bartok [email protected]
  24. //
  25. //
  26. // $Revision: 1.18 $
  27. // $Modtime: $
  28. // $Log: XplatUIDriver.cs,v $
  29. // Revision 1.18 2004/08/21 20:51:27 pbartok
  30. // - Added method to get default display size
  31. //
  32. // Revision 1.17 2004/08/21 20:23:56 pbartok
  33. // - Added method to query current grab state
  34. // - Added argument to allow confining a grab to a window
  35. //
  36. // Revision 1.16 2004/08/20 20:03:20 pbartok
  37. // - Added method for setting the window background
  38. //
  39. // Revision 1.15 2004/08/20 19:19:28 jackson
  40. // Expose functionality to send async messages through the driver
  41. //
  42. // Revision 1.14 2004/08/13 21:42:15 pbartok
  43. // - Changed signature for GetCursorPos
  44. //
  45. // Revision 1.13 2004/08/13 19:00:15 jordi
  46. // implements PointToClient (ScreenToClient)
  47. //
  48. // Revision 1.12 2004/08/13 18:53:14 pbartok
  49. // - Changed GetWindowPos to also provide client area size
  50. //
  51. // Revision 1.11 2004/08/12 22:59:03 pbartok
  52. // - Implemented method to get current mouse position
  53. //
  54. // Revision 1.10 2004/08/11 22:20:59 pbartok
  55. // - Signature fixes
  56. //
  57. // Revision 1.9 2004/08/11 19:19:44 pbartok
  58. // - We had SetWindowPos and MoveWindow to set window positions and size,
  59. // removed MoveWindow. We have GetWindowPos, so it made sense to keep
  60. // SetWindowPos as matching counterpart
  61. // - Added some X11 sanity checking
  62. //
  63. // Revision 1.8 2004/08/11 18:55:46 pbartok
  64. // - Added method to calculate difference between decorated window and raw
  65. // client area
  66. //
  67. // Revision 1.7 2004/08/10 17:39:22 pbartok
  68. // - Added GetWindowPos method
  69. //
  70. // Revision 1.6 2004/08/10 14:34:15 jackson
  71. // Use default colors from the theme
  72. //
  73. // Revision 1.5 2004/08/09 20:55:59 pbartok
  74. // - Removed Run method, was only required for initial development
  75. //
  76. // Revision 1.4 2004/08/09 20:51:25 pbartok
  77. // - Implemented GrabWindow/ReleaseWindow methods to allow pointer capture
  78. //
  79. // Revision 1.3 2004/08/04 20:11:24 pbartok
  80. // - Added Invalidate handling
  81. //
  82. // Revision 1.2 2004/08/03 23:09:02 jordi
  83. // fixes spelling mistake
  84. //
  85. // Revision 1.1 2004/07/09 05:21:25 pbartok
  86. // - Initial check-in
  87. //
  88. //
  89. // COMPLETE
  90. using System.Drawing;
  91. namespace System.Windows.Forms {
  92. internal abstract class XplatUIDriver {
  93. internal abstract IntPtr InitializeDriver();
  94. internal abstract void ShutdownDriver(IntPtr token);
  95. internal delegate IntPtr WndProc(IntPtr hwnd, Msg msg, IntPtr wParam, IntPtr lParam);
  96. #region XplatUI Driver Properties
  97. internal virtual Color ForeColor {
  98. get {
  99. return ThemeEngine.Current.DefaultWindowForeColor;
  100. }
  101. }
  102. internal virtual Color BackColor {
  103. get {
  104. return ThemeEngine.Current.DefaultWindowBackColor;
  105. }
  106. }
  107. internal virtual Font Font {
  108. get {
  109. return ThemeEngine.Current.DefaultFont;
  110. }
  111. }
  112. internal virtual Keys ModifierKeys {
  113. get {
  114. return Keys.None;
  115. }
  116. }
  117. internal virtual MouseButtons MouseButtons {
  118. get {
  119. return MouseButtons.None;
  120. }
  121. }
  122. internal virtual Point MousePosition {
  123. get {
  124. return Point.Empty;
  125. }
  126. }
  127. internal virtual bool DropTarget {
  128. get {
  129. return false;
  130. }
  131. set {
  132. }
  133. }
  134. #endregion // XplatUI Driver Properties
  135. #region XplatUI Driver Methods
  136. internal abstract void Exit();
  137. internal abstract void EnableThemes();
  138. internal abstract void GetDisplaySize(out Size size);
  139. internal abstract IntPtr CreateWindow(CreateParams cp);
  140. internal abstract IntPtr CreateWindow(IntPtr Parent, int X, int Y, int Width, int Height);
  141. internal abstract void DestroyWindow(IntPtr handle);
  142. internal abstract bool Text(IntPtr handle, string text);
  143. internal abstract bool SetVisible(IntPtr handle, bool visible);
  144. internal abstract bool IsVisible(IntPtr handle);
  145. internal abstract IntPtr SetParent(IntPtr handle, IntPtr parent);
  146. internal abstract IntPtr GetParent(IntPtr handle);
  147. internal abstract void RefreshWindow(IntPtr handle);
  148. internal abstract void SetWindowBackground(IntPtr handle, Color color);
  149. internal abstract PaintEventArgs PaintEventStart(IntPtr handle);
  150. internal abstract void PaintEventEnd(IntPtr handle);
  151. internal abstract void SetWindowPos(IntPtr handle, int x, int y, int width, int height);
  152. internal abstract void GetWindowPos(IntPtr handle, out int x, out int y, out int width, out int height, out int client_width, out int client_height);
  153. internal abstract void Activate(IntPtr handle);
  154. internal abstract void Invalidate(IntPtr handle, Rectangle rc, bool clear);
  155. internal abstract IntPtr DefWndProc(ref Message msg);
  156. internal abstract void HandleException(Exception e);
  157. internal abstract void DoEvents();
  158. internal abstract bool PeekMessage(ref MSG msg, IntPtr hWnd, int wFilterMin, int wFilterMax, uint flags);
  159. internal abstract bool GetMessage(ref MSG msg, IntPtr hWnd, int wFilterMin, int wFilterMax);
  160. internal abstract bool TranslateMessage(ref MSG msg);
  161. internal abstract bool DispatchMessage(ref MSG msg);
  162. internal abstract bool CalculateWindowRect(IntPtr hWnd, ref Rectangle ClientRect, int Style, bool HasMenu, out Rectangle WindowRect);
  163. internal abstract void GetCursorPos(IntPtr handle, out int x, out int y);
  164. internal abstract void ScreenToClient(IntPtr handle, ref int x, ref int y);
  165. internal abstract void GrabWindow(IntPtr hWnd, IntPtr ConfineToHwnd);
  166. internal abstract void GrabInfo(out IntPtr hWnd, out bool GrabConfined, out Rectangle GrabArea);
  167. internal abstract void ReleaseWindow(IntPtr hWnd);
  168. internal abstract void SendAsyncMethod (AsyncMethodData method);
  169. #endregion // XplatUI Driver Methods
  170. }
  171. }