UnityEditor.UIServiceModule.xml 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261
  1. <?xml version="1.0" encoding="utf-8" standalone="yes"?>
  2. <doc>
  3. <members>
  4. <assembly>
  5. <name>UnityEditor.UIServiceModule</name>
  6. </assembly>
  7. <member name="T:UnityEditor.Overlays.EditorToolbarDropdownToggle">
  8. <summary>
  9. <para>A control that is both a toggle and a dropdown used with EditorToolbarElementAttribute.</para>
  10. </summary>
  11. </member>
  12. <member name="P:UnityEditor.Overlays.EditorToolbarDropdownToggle.dropdownClickable">
  13. <summary>
  14. <para>Clickable object for this dropdown.</para>
  15. </summary>
  16. </member>
  17. <member name="?:UnityEditor.Overlays.EditorToolbarDropdownToggle.dropdownClicked(System.Action)">
  18. <summary>
  19. <para>Action triggered when the dropdown is clicked.</para>
  20. </summary>
  21. <param name="value"></param>
  22. </member>
  23. <member name="P:UnityEditor.Overlays.EditorToolbarDropdownToggle.icon">
  24. <summary>
  25. <para>The text associated with the element.</para>
  26. </summary>
  27. </member>
  28. <member name="P:UnityEditor.Overlays.EditorToolbarDropdownToggle.text">
  29. <summary>
  30. <para>The icon associated with the element.</para>
  31. </summary>
  32. </member>
  33. <member name="M:UnityEditor.Overlays.EditorToolbarDropdownToggle.#ctor">
  34. <summary>
  35. <para>Constructor.</para>
  36. </summary>
  37. <param name="text">The text associated with the element.</param>
  38. <param name="icon">The icon associated with the element.</param>
  39. <param name="dropdownClickEvent">Action triggered when the dropdown is clicked. Usually opens a window or a dropdown menu through the use of GenericMenu.</param>
  40. </member>
  41. <member name="M:UnityEditor.Overlays.EditorToolbarDropdownToggle.#ctor(System.Action)">
  42. <summary>
  43. <para>Constructor.</para>
  44. </summary>
  45. <param name="text">The text associated with the element.</param>
  46. <param name="icon">The icon associated with the element.</param>
  47. <param name="dropdownClickEvent">Action triggered when the dropdown is clicked. Usually opens a window or a dropdown menu through the use of GenericMenu.</param>
  48. </member>
  49. <member name="M:UnityEditor.Overlays.EditorToolbarDropdownToggle.#ctor(System.String,System.Action)">
  50. <summary>
  51. <para>Constructor.</para>
  52. </summary>
  53. <param name="text">The text associated with the element.</param>
  54. <param name="icon">The icon associated with the element.</param>
  55. <param name="dropdownClickEvent">Action triggered when the dropdown is clicked. Usually opens a window or a dropdown menu through the use of GenericMenu.</param>
  56. </member>
  57. <member name="M:UnityEditor.Overlays.EditorToolbarDropdownToggle.#ctor(UnityEngine.Texture2D,System.Action)">
  58. <summary>
  59. <para>Constructor.</para>
  60. </summary>
  61. <param name="text">The text associated with the element.</param>
  62. <param name="icon">The icon associated with the element.</param>
  63. <param name="dropdownClickEvent">Action triggered when the dropdown is clicked. Usually opens a window or a dropdown menu through the use of GenericMenu.</param>
  64. </member>
  65. <member name="M:UnityEditor.Overlays.EditorToolbarDropdownToggle.#ctor(System.String,UnityEngine.Texture2D,System.Action)">
  66. <summary>
  67. <para>Constructor.</para>
  68. </summary>
  69. <param name="text">The text associated with the element.</param>
  70. <param name="icon">The icon associated with the element.</param>
  71. <param name="dropdownClickEvent">Action triggered when the dropdown is clicked. Usually opens a window or a dropdown menu through the use of GenericMenu.</param>
  72. </member>
  73. <member name="M:UnityEditor.Overlays.EditorToolbarDropdownToggle.SetValueWithoutNotify(System.Boolean)">
  74. <summary>
  75. <para>Allow to set a value without being notified of the change, if any.</para>
  76. </summary>
  77. <param name="newValue"></param>
  78. </member>
  79. <member name="T:UnityEditor.Toolbars.EditorToolbarButton">
  80. <summary>
  81. <para>A clickable button used with EditorToolbarElementAttribute.</para>
  82. </summary>
  83. </member>
  84. <member name="P:UnityEditor.Toolbars.EditorToolbarButton.icon">
  85. <summary>
  86. <para>The icon associated with the element.</para>
  87. </summary>
  88. </member>
  89. <member name="P:UnityEditor.Toolbars.EditorToolbarButton.text">
  90. <summary>
  91. <para>The text associated with the element.</para>
  92. </summary>
  93. </member>
  94. <member name="M:UnityEditor.Toolbars.EditorToolbarButton.#ctor">
  95. <summary>
  96. <para>Constructor.</para>
  97. </summary>
  98. <param name="clickEvent">Action triggered when the button is clicked.</param>
  99. <param name="text">The text associated with the element.</param>
  100. <param name="icon">The icon associated with the element.</param>
  101. </member>
  102. <member name="M:UnityEditor.Toolbars.EditorToolbarButton.#ctor(System.Action)">
  103. <summary>
  104. <para>Constructor.</para>
  105. </summary>
  106. <param name="clickEvent">Action triggered when the button is clicked.</param>
  107. <param name="text">The text associated with the element.</param>
  108. <param name="icon">The icon associated with the element.</param>
  109. </member>
  110. <member name="M:UnityEditor.Toolbars.EditorToolbarButton.#ctor(System.String,System.Action)">
  111. <summary>
  112. <para>Constructor.</para>
  113. </summary>
  114. <param name="clickEvent">Action triggered when the button is clicked.</param>
  115. <param name="text">The text associated with the element.</param>
  116. <param name="icon">The icon associated with the element.</param>
  117. </member>
  118. <member name="M:UnityEditor.Toolbars.EditorToolbarButton.#ctor(UnityEngine.Texture2D,System.Action)">
  119. <summary>
  120. <para>Constructor.</para>
  121. </summary>
  122. <param name="clickEvent">Action triggered when the button is clicked.</param>
  123. <param name="text">The text associated with the element.</param>
  124. <param name="icon">The icon associated with the element.</param>
  125. </member>
  126. <member name="M:UnityEditor.Toolbars.EditorToolbarButton.#ctor(System.String,UnityEngine.Texture2D,System.Action)">
  127. <summary>
  128. <para>Constructor.</para>
  129. </summary>
  130. <param name="clickEvent">Action triggered when the button is clicked.</param>
  131. <param name="text">The text associated with the element.</param>
  132. <param name="icon">The icon associated with the element.</param>
  133. </member>
  134. <member name="T:UnityEditor.Toolbars.EditorToolbarDropdown">
  135. <summary>
  136. <para>A clickable dropdown used with EditorToolbarElementAttribute.</para>
  137. </summary>
  138. </member>
  139. <member name="M:UnityEditor.Toolbars.EditorToolbarDropdown.#ctor">
  140. <summary>
  141. <para>Constructor.</para>
  142. </summary>
  143. <param name="clickEvent">Action triggered when the button is clicked. Usually opens a window or a dropdown menu through the use of GenericMenu.</param>
  144. <param name="icon">The icon associated with the element.</param>
  145. <param name="text">The text associated with the element.</param>
  146. </member>
  147. <member name="M:UnityEditor.Toolbars.EditorToolbarDropdown.#ctor(System.Action)">
  148. <summary>
  149. <para>Constructor.</para>
  150. </summary>
  151. <param name="clickEvent">Action triggered when the button is clicked. Usually opens a window or a dropdown menu through the use of GenericMenu.</param>
  152. <param name="icon">The icon associated with the element.</param>
  153. <param name="text">The text associated with the element.</param>
  154. </member>
  155. <member name="M:UnityEditor.Toolbars.EditorToolbarDropdown.#ctor(System.String,System.Action)">
  156. <summary>
  157. <para>Constructor.</para>
  158. </summary>
  159. <param name="clickEvent">Action triggered when the button is clicked. Usually opens a window or a dropdown menu through the use of GenericMenu.</param>
  160. <param name="icon">The icon associated with the element.</param>
  161. <param name="text">The text associated with the element.</param>
  162. </member>
  163. <member name="M:UnityEditor.Toolbars.EditorToolbarDropdown.#ctor(UnityEngine.Texture2D,System.Action)">
  164. <summary>
  165. <para>Constructor.</para>
  166. </summary>
  167. <param name="clickEvent">Action triggered when the button is clicked. Usually opens a window or a dropdown menu through the use of GenericMenu.</param>
  168. <param name="icon">The icon associated with the element.</param>
  169. <param name="text">The text associated with the element.</param>
  170. </member>
  171. <member name="M:UnityEditor.Toolbars.EditorToolbarDropdown.#ctor(System.String,UnityEngine.Texture2D,System.Action)">
  172. <summary>
  173. <para>Constructor.</para>
  174. </summary>
  175. <param name="clickEvent">Action triggered when the button is clicked. Usually opens a window or a dropdown menu through the use of GenericMenu.</param>
  176. <param name="icon">The icon associated with the element.</param>
  177. <param name="text">The text associated with the element.</param>
  178. </member>
  179. <member name="T:UnityEditor.Toolbars.EditorToolbarToggle">
  180. <summary>
  181. <para>A toggle used with EditorToolbarElementAttribute.</para>
  182. </summary>
  183. </member>
  184. <member name="P:UnityEditor.Toolbars.EditorToolbarToggle.icon">
  185. <summary>
  186. <para>The icon associated with the toggle.</para>
  187. </summary>
  188. </member>
  189. <member name="P:UnityEditor.Toolbars.EditorToolbarToggle.offIcon">
  190. <summary>
  191. <para>The icon associated with the toggle when the value is false.</para>
  192. </summary>
  193. </member>
  194. <member name="P:UnityEditor.Toolbars.EditorToolbarToggle.onIcon">
  195. <summary>
  196. <para>The icon associated with the toggle when the value is true.</para>
  197. </summary>
  198. </member>
  199. <member name="P:UnityEditor.Toolbars.EditorToolbarToggle.text">
  200. <summary>
  201. <para>The text associated with the toggle.</para>
  202. </summary>
  203. </member>
  204. <member name="F:UnityEditor.Toolbars.EditorToolbarToggle.ussClassName">
  205. <summary>
  206. <para>USS Class Name used to style the EditorToolbarToggle.</para>
  207. </summary>
  208. </member>
  209. <member name="M:UnityEditor.Toolbars.EditorToolbarToggle.#ctor">
  210. <summary>
  211. <para>Constructor.</para>
  212. </summary>
  213. <param name="text">The text associated with the toggle.</param>
  214. <param name="icon">The icon associated with the toggle.</param>
  215. <param name="onIcon">The icon associated with the toggle when the value is true.</param>
  216. <param name="offIcon">The icon associated with the toggle when the value is false.</param>
  217. </member>
  218. <member name="M:UnityEditor.Toolbars.EditorToolbarToggle.#ctor(System.String)">
  219. <summary>
  220. <para>Constructor.</para>
  221. </summary>
  222. <param name="text">The text associated with the toggle.</param>
  223. <param name="icon">The icon associated with the toggle.</param>
  224. <param name="onIcon">The icon associated with the toggle when the value is true.</param>
  225. <param name="offIcon">The icon associated with the toggle when the value is false.</param>
  226. </member>
  227. <member name="M:UnityEditor.Toolbars.EditorToolbarToggle.#ctor(UnityEngine.Texture2D)">
  228. <summary>
  229. <para>Constructor.</para>
  230. </summary>
  231. <param name="text">The text associated with the toggle.</param>
  232. <param name="icon">The icon associated with the toggle.</param>
  233. <param name="onIcon">The icon associated with the toggle when the value is true.</param>
  234. <param name="offIcon">The icon associated with the toggle when the value is false.</param>
  235. </member>
  236. <member name="M:UnityEditor.Toolbars.EditorToolbarToggle.#ctor(UnityEngine.Texture2D,UnityEngine.Texture2D)">
  237. <summary>
  238. <para>Constructor.</para>
  239. </summary>
  240. <param name="text">The text associated with the toggle.</param>
  241. <param name="icon">The icon associated with the toggle.</param>
  242. <param name="onIcon">The icon associated with the toggle when the value is true.</param>
  243. <param name="offIcon">The icon associated with the toggle when the value is false.</param>
  244. </member>
  245. <member name="M:UnityEditor.Toolbars.EditorToolbarToggle.#ctor(System.String,UnityEngine.Texture2D,UnityEngine.Texture2D)">
  246. <summary>
  247. <para>Constructor.</para>
  248. </summary>
  249. <param name="text">The text associated with the toggle.</param>
  250. <param name="icon">The icon associated with the toggle.</param>
  251. <param name="onIcon">The icon associated with the toggle when the value is true.</param>
  252. <param name="offIcon">The icon associated with the toggle when the value is false.</param>
  253. </member>
  254. <member name="M:UnityEditor.Toolbars.EditorToolbarToggle.SetValueWithoutNotify(System.Boolean)">
  255. <summary>
  256. <para>Allow to set a value without being notified of the change, if any.</para>
  257. </summary>
  258. <param name="newValue"></param>
  259. </member>
  260. </members>
  261. </doc>