/main/src/core/MonoDevelop.Ide/MonoDevelop.Components.AtkCocoaHelper/AtkCocoaHelperNoOp.cs

http://github.com/mono/monodevelop · C# · 335 lines · 254 code · 55 blank · 26 comment · 0 complexity · ab636abff49f48f59d025acd3cd5bedc MD5 · raw file

  1. //
  2. // AtkCocoaHelperNoOp.cs
  3. //
  4. // Author:
  5. // iain <iaholmes@microsoft.com>
  6. //
  7. // Copyright (c) 2017
  8. //
  9. // Permission is hereby granted, free of charge, to any person obtaining a copy
  10. // of this software and associated documentation files (the "Software"), to deal
  11. // in the Software without restriction, including without limitation the rights
  12. // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  13. // copies of the Software, and to permit persons to whom the Software is
  14. // furnished to do so, subject to the following conditions:
  15. //
  16. // The above copyright notice and this permission notice shall be included in
  17. // all copies or substantial portions of the Software.
  18. //
  19. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  20. // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  21. // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  22. // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  23. // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  24. // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  25. // THE SOFTWARE.
  26. #if !MAC
  27. using System;
  28. using Gdk;
  29. using Gtk;
  30. namespace MonoDevelop.Components.AtkCocoaHelper
  31. {
  32. public static class AtkCocoaNoopExtensions
  33. {
  34. public static void SetLabel (this Atk.Object o, string label)
  35. {
  36. }
  37. public static void SetLabel (this Gtk.CellRenderer r, string label)
  38. {
  39. }
  40. public static void SetDescription (this Gtk.CellRenderer r, string description)
  41. {
  42. }
  43. public static void SetShouldIgnore (this Atk.Object o, bool ignore)
  44. {
  45. }
  46. public static void SetTitle (this Atk.Object o, string title)
  47. {
  48. }
  49. public static void SetDocument (this Atk.Object o, string documentUrl)
  50. {
  51. }
  52. public static void SetFilename (this Atk.Object o, string filename)
  53. {
  54. }
  55. public static void SetIsMainWindow (this Atk.Object o, bool isMainWindow)
  56. {
  57. }
  58. public static void SetMainWindow (this Atk.Object o, Atk.Object mainWindow)
  59. {
  60. }
  61. public static void SetValue (this Atk.Object o, string stringValue)
  62. {
  63. }
  64. public static void SetUrl (this Atk.Object o, string url)
  65. {
  66. }
  67. public static void SetRole (this Atk.Object o, string role, string description = null)
  68. {
  69. }
  70. public static void SetRole (this Atk.Object o, AtkCocoa.Roles role, string description = null)
  71. {
  72. }
  73. public static void SetSubRole (this Atk.Object o, string subrole)
  74. {
  75. }
  76. public static void SetTitleUIElement (this Atk.Object o, Atk.Object title)
  77. {
  78. }
  79. public static void SetAlternateUIVisible (this Atk.Object o, bool visible)
  80. {
  81. }
  82. public static void SetOrientation (this Atk.Object o, Gtk.Orientation orientation)
  83. {
  84. }
  85. public static void SetTitleFor (this Atk.Object o, params Atk.Object [] objects)
  86. {
  87. }
  88. public static void SetTabs (this Atk.Object o, AccessibilityElementProxy [] tabs)
  89. {
  90. }
  91. public static void SetTabs (this Atk.Object o, Atk.Object [] tabs)
  92. {
  93. }
  94. public static void AddElementToTitle (this Atk.Object title, Atk.Object o)
  95. {
  96. }
  97. public static void RemoveElementFromTitle (this Atk.Object title, Atk.Object o)
  98. {
  99. }
  100. public static void ReplaceAccessibilityElements (this Atk.Object parent, AccessibilityElementProxy [] children)
  101. {
  102. }
  103. public static void SetColumns (this Atk.Object parent, AccessibilityElementProxy [] columns)
  104. {
  105. }
  106. public static void SetRows (this Atk.Object parent, AccessibilityElementProxy [] rows)
  107. {
  108. }
  109. public static void AddAccessibleElement (this Atk.Object o, AccessibilityElementProxy child)
  110. {
  111. }
  112. public static void RemoveAccessibleElement (this Atk.Object o, AccessibilityElementProxy child)
  113. {
  114. }
  115. public static void SetAccessibleChildren (this Atk.Object o, AccessibilityElementProxy [] children)
  116. {
  117. }
  118. public static void AddLinkedUIElement (this Atk.Object o, Atk.Object linked)
  119. {
  120. }
  121. public static void AddLinkedUIElement (this Atk.Object o, params Atk.Object [] linked)
  122. {
  123. }
  124. public static void MakeAccessibilityAnnouncement (this Atk.Object o, string message)
  125. {
  126. }
  127. public static void TransferAccessibleChild (this Atk.Object from, Atk.Object to, Atk.Object child)
  128. {
  129. }
  130. }
  131. public class AccessibilityElementProxy : IAccessibilityElementProxy
  132. {
  133. public AccessibilityElementProxy ()
  134. {
  135. }
  136. public static AccessibilityElementProxy ButtonElementProxy ()
  137. {
  138. return new AccessibilityElementProxy ();
  139. }
  140. public static AccessibilityElementProxy TextElementProxy ()
  141. {
  142. return new AccessibilityElementProxy ();
  143. }
  144. public static bool Enabled {
  145. get {
  146. return false;
  147. }
  148. }
  149. public string Identifier {
  150. get {
  151. return null;
  152. }
  153. set {
  154. }
  155. }
  156. public string Help {
  157. get {
  158. return null;
  159. }
  160. set {
  161. }
  162. }
  163. public string Label {
  164. get {
  165. return null;
  166. }
  167. set {
  168. }
  169. }
  170. public string Title {
  171. get {
  172. return null;
  173. }
  174. set {
  175. }
  176. }
  177. public string Value {
  178. get {
  179. return null;
  180. }
  181. set {
  182. }
  183. }
  184. public bool Hidden {
  185. get {
  186. return false;
  187. }
  188. set {
  189. }
  190. }
  191. public int Index {
  192. get {
  193. return 0;
  194. }
  195. set {
  196. }
  197. }
  198. public bool Focused {
  199. get {
  200. return false;
  201. }
  202. set {
  203. }
  204. }
  205. public Gtk.Widget GtkParent { get; set; }
  206. public Gdk.Rectangle FrameInGtkParent { get; set; }
  207. public Gdk.Rectangle FrameInParent { get; set; }
  208. public void AddAccessibleChild (IAccessibilityElementProxy child)
  209. {
  210. }
  211. public void RemoveAccessibleChild (IAccessibilityElementProxy child)
  212. {
  213. }
  214. public void SetRole (string role, string description = null)
  215. {
  216. }
  217. public void SetRole (AtkCocoa.Roles role, string description = null)
  218. {
  219. }
  220. #pragma warning disable 67 // never used
  221. public event EventHandler PerformCancel;
  222. public event EventHandler PerformConfirm;
  223. public event EventHandler PerformDecrement;
  224. public event EventHandler PerformDelete;
  225. public event EventHandler PerformIncrement;
  226. public event EventHandler PerformPick;
  227. public event EventHandler PerformPress;
  228. public event EventHandler PerformRaise;
  229. public event EventHandler PerformShowAlternateUI;
  230. public event EventHandler PerformShowDefaultUI;
  231. public event EventHandler PerformShowMenu;
  232. #pragma warning restore 67
  233. // For Navigable Text elements
  234. public Func<string> Contents {
  235. set {
  236. }
  237. }
  238. public Func<int> NumberOfCharacters {
  239. set {
  240. }
  241. }
  242. public Func<int> InsertionPointLineNumber {
  243. set {
  244. }
  245. }
  246. public Func<AtkCocoa.Range, Rectangle> FrameForRange {
  247. set {
  248. }
  249. }
  250. public Func<int, int> LineForIndex {
  251. set {
  252. }
  253. }
  254. public Func<int, AtkCocoa.Range> RangeForLine {
  255. set {
  256. }
  257. }
  258. public Func<AtkCocoa.Range, string> StringForRange {
  259. set {
  260. }
  261. }
  262. public Func<int, AtkCocoa.Range> RangeForIndex {
  263. set {
  264. }
  265. }
  266. public Func<int, AtkCocoa.Range> StyleRangeForIndex {
  267. set {
  268. }
  269. }
  270. public Func<Point, AtkCocoa.Range> RangeForPosition {
  271. set {
  272. }
  273. }
  274. public Func<AtkCocoa.Range> GetVisibleCharacterRange {
  275. set {
  276. }
  277. }
  278. }
  279. }
  280. #endif