XplatUIDriver.cs 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231
  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.25 $
  27. // $Modtime: $
  28. // $Log: XplatUIDriver.cs,v $
  29. // Revision 1.25 2004/10/18 04:50:54 pbartok
  30. // - Added method for enabling/disabling windows
  31. // - Added method for setting window modality
  32. // - Added method for setting topmost window
  33. //
  34. // Revision 1.24 2004/10/02 19:07:36 pbartok
  35. // - Added ClientToScreen coordinate translation method
  36. //
  37. // Revision 1.23 2004/09/21 00:54:15 jackson
  38. // New message loop that uses poll so we don't get a busy loop
  39. //
  40. // Revision 1.22 2004/09/13 21:18:32 pbartok
  41. // - Added Z-Ordering methods
  42. //
  43. // Revision 1.21 2004/09/11 00:57:35 pbartok
  44. // - Added method to retrieve text from window
  45. //
  46. // Revision 1.20 2004/08/24 11:29:44 jackson
  47. // Move timers to the driver level. On X they are queued by the driver and checked on idle.
  48. //
  49. // Revision 1.19 2004/08/23 19:39:30 pbartok
  50. // - Added method to move mouse cursor
  51. //
  52. // Revision 1.18 2004/08/21 20:51:27 pbartok
  53. // - Added method to get default display size
  54. //
  55. // Revision 1.17 2004/08/21 20:23:56 pbartok
  56. // - Added method to query current grab state
  57. // - Added argument to allow confining a grab to a window
  58. //
  59. // Revision 1.16 2004/08/20 20:03:20 pbartok
  60. // - Added method for setting the window background
  61. //
  62. // Revision 1.15 2004/08/20 19:19:28 jackson
  63. // Expose functionality to send async messages through the driver
  64. //
  65. // Revision 1.14 2004/08/13 21:42:15 pbartok
  66. // - Changed signature for GetCursorPos
  67. //
  68. // Revision 1.13 2004/08/13 19:00:15 jordi
  69. // implements PointToClient (ScreenToClient)
  70. //
  71. // Revision 1.12 2004/08/13 18:53:14 pbartok
  72. // - Changed GetWindowPos to also provide client area size
  73. //
  74. // Revision 1.11 2004/08/12 22:59:03 pbartok
  75. // - Implemented method to get current mouse position
  76. //
  77. // Revision 1.10 2004/08/11 22:20:59 pbartok
  78. // - Signature fixes
  79. //
  80. // Revision 1.9 2004/08/11 19:19:44 pbartok
  81. // - We had SetWindowPos and MoveWindow to set window positions and size,
  82. // removed MoveWindow. We have GetWindowPos, so it made sense to keep
  83. // SetWindowPos as matching counterpart
  84. // - Added some X11 sanity checking
  85. //
  86. // Revision 1.8 2004/08/11 18:55:46 pbartok
  87. // - Added method to calculate difference between decorated window and raw
  88. // client area
  89. //
  90. // Revision 1.7 2004/08/10 17:39:22 pbartok
  91. // - Added GetWindowPos method
  92. //
  93. // Revision 1.6 2004/08/10 14:34:15 jackson
  94. // Use default colors from the theme
  95. //
  96. // Revision 1.5 2004/08/09 20:55:59 pbartok
  97. // - Removed Run method, was only required for initial development
  98. //
  99. // Revision 1.4 2004/08/09 20:51:25 pbartok
  100. // - Implemented GrabWindow/ReleaseWindow methods to allow pointer capture
  101. //
  102. // Revision 1.3 2004/08/04 20:11:24 pbartok
  103. // - Added Invalidate handling
  104. //
  105. // Revision 1.2 2004/08/03 23:09:02 jordi
  106. // fixes spelling mistake
  107. //
  108. // Revision 1.1 2004/07/09 05:21:25 pbartok
  109. // - Initial check-in
  110. //
  111. //
  112. // COMPLETE
  113. using System.Drawing;
  114. namespace System.Windows.Forms {
  115. internal abstract class XplatUIDriver {
  116. internal abstract IntPtr InitializeDriver();
  117. internal abstract void ShutdownDriver(IntPtr token);
  118. internal delegate IntPtr WndProc(IntPtr hwnd, Msg msg, IntPtr wParam, IntPtr lParam);
  119. #region XplatUI Driver Properties
  120. internal virtual Color ForeColor {
  121. get {
  122. return ThemeEngine.Current.DefaultWindowForeColor;
  123. }
  124. }
  125. internal virtual Color BackColor {
  126. get {
  127. return ThemeEngine.Current.DefaultWindowBackColor;
  128. }
  129. }
  130. internal virtual Font Font {
  131. get {
  132. return ThemeEngine.Current.DefaultFont;
  133. }
  134. }
  135. internal virtual Keys ModifierKeys {
  136. get {
  137. return Keys.None;
  138. }
  139. }
  140. internal virtual MouseButtons MouseButtons {
  141. get {
  142. return MouseButtons.None;
  143. }
  144. }
  145. internal virtual Point MousePosition {
  146. get {
  147. return Point.Empty;
  148. }
  149. }
  150. internal virtual bool DropTarget {
  151. get {
  152. return false;
  153. }
  154. set {
  155. }
  156. }
  157. #endregion // XplatUI Driver Properties
  158. internal abstract event EventHandler Idle;
  159. #region XplatUI Driver Methods
  160. internal abstract void Exit();
  161. internal abstract void EnableThemes();
  162. internal abstract void GetDisplaySize(out Size size);
  163. internal abstract IntPtr CreateWindow(CreateParams cp);
  164. internal abstract IntPtr CreateWindow(IntPtr Parent, int X, int Y, int Width, int Height);
  165. internal abstract void DestroyWindow(IntPtr handle);
  166. internal abstract bool GetText(IntPtr handle, out string text);
  167. internal abstract bool Text(IntPtr handle, string text);
  168. internal abstract bool SetVisible(IntPtr handle, bool visible);
  169. internal abstract bool IsVisible(IntPtr handle);
  170. internal abstract IntPtr SetParent(IntPtr handle, IntPtr parent);
  171. internal abstract IntPtr GetParent(IntPtr handle);
  172. internal abstract void RefreshWindow(IntPtr handle);
  173. internal abstract void SetWindowBackground(IntPtr handle, Color color);
  174. internal abstract PaintEventArgs PaintEventStart(IntPtr handle);
  175. internal abstract void PaintEventEnd(IntPtr handle);
  176. internal abstract void SetWindowPos(IntPtr handle, int x, int y, int width, int height);
  177. 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);
  178. internal abstract void Activate(IntPtr handle);
  179. internal abstract void EnableWindow(IntPtr handle, bool Enable);
  180. internal abstract void SetModal(IntPtr handle, bool Modal);
  181. internal abstract void Invalidate(IntPtr handle, Rectangle rc, bool clear);
  182. internal abstract IntPtr DefWndProc(ref Message msg);
  183. internal abstract void HandleException(Exception e);
  184. internal abstract void DoEvents();
  185. internal abstract bool PeekMessage(ref MSG msg, IntPtr hWnd, int wFilterMin, int wFilterMax, uint flags);
  186. internal abstract bool GetMessage(ref MSG msg, IntPtr hWnd, int wFilterMin, int wFilterMax);
  187. internal abstract bool TranslateMessage(ref MSG msg);
  188. internal abstract bool DispatchMessage(ref MSG msg);
  189. internal abstract bool SetZOrder(IntPtr hWnd, IntPtr AfterhWnd, bool Top, bool Bottom);
  190. internal abstract bool SetTopmost(IntPtr hWnd, bool Enabled);
  191. internal abstract bool CalculateWindowRect(IntPtr hWnd, ref Rectangle ClientRect, int Style, bool HasMenu, out Rectangle WindowRect);
  192. internal abstract void GetCursorPos(IntPtr handle, out int x, out int y);
  193. internal abstract void SetCursorPos(IntPtr handle, int x, int y);
  194. internal abstract void ScreenToClient(IntPtr handle, ref int x, ref int y);
  195. internal abstract void ClientToScreen(IntPtr handle, ref int x, ref int y);
  196. internal abstract void GrabWindow(IntPtr hWnd, IntPtr ConfineToHwnd);
  197. internal abstract void GrabInfo(out IntPtr hWnd, out bool GrabConfined, out Rectangle GrabArea);
  198. internal abstract void ReleaseWindow(IntPtr hWnd);
  199. internal abstract void SendAsyncMethod (AsyncMethodData method);
  200. internal abstract void SetTimer (Timer timer);
  201. internal abstract void KillTimer (Timer timer);
  202. #endregion // XplatUI Driver Methods
  203. }
  204. }