@tlua/gmod 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (278) hide show
  1. package/README.md +28 -0
  2. package/__metadata.json +4 -0
  3. package/_globals.d.tlua +178 -0
  4. package/_gmod-std.d.tlua +35 -0
  5. package/achievementicon.d.tlua +12 -0
  6. package/achievements.d.tlua +162 -0
  7. package/ai.d.tlua +65 -0
  8. package/ai_schedule.d.tlua +17 -0
  9. package/ai_task.d.tlua +17 -0
  10. package/angle.d.tlua +197 -0
  11. package/avatarimage.d.tlua +10 -0
  12. package/awesomium.d.tlua +14 -0
  13. package/baseclass.d.tlua +42 -0
  14. package/bf_read.d.tlua +110 -0
  15. package/bit.d.tlua +121 -0
  16. package/button.d.tlua +13 -0
  17. package/cam.d.tlua +220 -0
  18. package/ceffectdata.d.tlua +337 -0
  19. package/chat.d.tlua +62 -0
  20. package/checkbutton.d.tlua +14 -0
  21. package/cleanup.d.tlua +88 -0
  22. package/cluaemitter.d.tlua +119 -0
  23. package/clualocomotion.d.tlua +383 -0
  24. package/cluaparticle.d.tlua +426 -0
  25. package/cmovedata.d.tlua +476 -0
  26. package/cnavarea.d.tlua +845 -0
  27. package/cnavladder.d.tlua +209 -0
  28. package/cnewparticleeffect.d.tlua +259 -0
  29. package/color.d.tlua +339 -0
  30. package/concommand.d.tlua +69 -0
  31. package/constraint.d.tlua +311 -0
  32. package/construct.d.tlua +26 -0
  33. package/contentheader.d.tlua +32 -0
  34. package/contenticon.d.tlua +86 -0
  35. package/contentsidebar.d.tlua +45 -0
  36. package/contentsidebartoolbox.d.tlua +13 -0
  37. package/contextbase.d.tlua +37 -0
  38. package/controlpanel.d.tlua +140 -0
  39. package/controlpresets.d.tlua +118 -0
  40. package/convar.d.tlua +162 -0
  41. package/cookie.d.tlua +60 -0
  42. package/coroutine.d.tlua +90 -0
  43. package/crecipientfilter.d.tlua +152 -0
  44. package/csent.d.tlua +10 -0
  45. package/csoundpatch.d.tlua +150 -0
  46. package/ctakedamageinfo.d.tlua +366 -0
  47. package/ctrllistbox.d.tlua +12 -0
  48. package/ctrlnumpad.d.tlua +73 -0
  49. package/cusercmd.d.tlua +320 -0
  50. package/custom_classes.d.tlua +65 -0
  51. package/custom_entity_fields.d.tlua +96 -0
  52. package/cvars.d.tlua +80 -0
  53. package/dadjustablemodelpanel.d.tlua +81 -0
  54. package/dalphabar.d.tlua +27 -0
  55. package/dbinder.d.tlua +37 -0
  56. package/dbubblecontainer.d.tlua +18 -0
  57. package/dbutton.d.tlua +88 -0
  58. package/dcategoryheader.d.tlua +13 -0
  59. package/dcategorylist.d.tlua +11 -0
  60. package/dcheckbox.d.tlua +46 -0
  61. package/dcheckboxlabel.d.tlua +90 -0
  62. package/dcollapsiblecategory.d.tlua +240 -0
  63. package/dcolorbutton.d.tlua +73 -0
  64. package/dcolorcombo.d.tlua +54 -0
  65. package/dcolorcube.d.tlua +137 -0
  66. package/dcolormixer.d.tlua +303 -0
  67. package/dcolorpalette.d.tlua +294 -0
  68. package/dcolumnsheet.d.tlua +49 -0
  69. package/dcombobox.d.tlua +161 -0
  70. package/ddragbase.d.tlua +151 -0
  71. package/ddrawer.d.tlua +72 -0
  72. package/debug.d.tlua +236 -0
  73. package/debugoverlay.d.tlua +193 -0
  74. package/dentityproperties.d.tlua +63 -0
  75. package/derma.d.tlua +119 -0
  76. package/dexpandbutton.d.tlua +30 -0
  77. package/dfilebrowser.d.tlua +228 -0
  78. package/dform.d.tlua +176 -0
  79. package/dframe.d.tlua +261 -0
  80. package/dgrid.d.tlua +113 -0
  81. package/dhorizontaldivider.d.tlua +196 -0
  82. package/dhorizontalscroller.d.tlua +104 -0
  83. package/dhscrollbar.d.tlua +109 -0
  84. package/dhtml.d.tlua +91 -0
  85. package/dhtmlcontrols.d.tlua +62 -0
  86. package/diconbrowser.d.tlua +113 -0
  87. package/diconlayout.d.tlua +190 -0
  88. package/dimage.d.tlua +221 -0
  89. package/dimagebutton.d.tlua +103 -0
  90. package/dkillicon.d.tlua +9 -0
  91. package/dlabel.d.tlua +385 -0
  92. package/dlabeleditable.d.tlua +51 -0
  93. package/dlabelurl.d.tlua +100 -0
  94. package/dlistbox.d.tlua +82 -0
  95. package/dlistboxitem.d.tlua +42 -0
  96. package/dlistlayout.d.tlua +14 -0
  97. package/dlistview.d.tlua +360 -0
  98. package/dlistview_column.d.tlua +135 -0
  99. package/dlistview_columnplain.d.tlua +11 -0
  100. package/dlistview_draggerbar.d.tlua +11 -0
  101. package/dlistview_line.d.tlua +140 -0
  102. package/dlistviewheaderlabel.d.tlua +11 -0
  103. package/dlistviewlabel.d.tlua +11 -0
  104. package/dlistviewline.d.tlua +11 -0
  105. package/dmenu.d.tlua +266 -0
  106. package/dmenubar.d.tlua +42 -0
  107. package/dmenuoption.d.tlua +135 -0
  108. package/dmenuoptioncvar.d.tlua +64 -0
  109. package/dmodelpanel.d.tlua +207 -0
  110. package/dmodelselect.d.tlua +20 -0
  111. package/dmodelselectmulti.d.tlua +19 -0
  112. package/dnotify.d.tlua +93 -0
  113. package/dnumberscratch.d.tlua +284 -0
  114. package/dnumberwang.d.tlua +147 -0
  115. package/dnumpad.d.tlua +11 -0
  116. package/dnumslider.d.tlua +182 -0
  117. package/dpanel.d.tlua +152 -0
  118. package/dpanellist.d.tlua +109 -0
  119. package/dpaneloverlay.d.tlua +65 -0
  120. package/dpanelselect.d.tlua +13 -0
  121. package/dpanpanel.d.tlua +64 -0
  122. package/dprogress.d.tlua +27 -0
  123. package/dproperties.d.tlua +52 -0
  124. package/dproperty_boolean.d.tlua +12 -0
  125. package/dproperty_combo.d.tlua +31 -0
  126. package/dproperty_entity.d.tlua +12 -0
  127. package/dproperty_float.d.tlua +12 -0
  128. package/dproperty_generic.d.tlua +50 -0
  129. package/dproperty_int.d.tlua +12 -0
  130. package/dproperty_vectorcolor.d.tlua +14 -0
  131. package/dpropertysheet.d.tlua +167 -0
  132. package/dragndrop.d.tlua +123 -0
  133. package/draw.d.tlua +162 -0
  134. package/drgbpicker.d.tlua +49 -0
  135. package/drive.d.tlua +159 -0
  136. package/dscrollbargrip.d.tlua +13 -0
  137. package/dscrollpanel.d.tlua +110 -0
  138. package/dshape.d.tlua +72 -0
  139. package/dsizetocontents.d.tlua +46 -0
  140. package/dslider.d.tlua +302 -0
  141. package/dsprite.d.tlua +84 -0
  142. package/dtab.d.tlua +81 -0
  143. package/dtextentry.d.tlua +442 -0
  144. package/dtilelayout.d.tlua +218 -0
  145. package/dtooltip.d.tlua +76 -0
  146. package/dtree.d.tlua +185 -0
  147. package/dtree_node.d.tlua +793 -0
  148. package/dtree_node_button.d.tlua +13 -0
  149. package/duplicator.d.tlua +338 -0
  150. package/dverticaldivider.d.tlua +223 -0
  151. package/dvscrollbar.d.tlua +109 -0
  152. package/editablepanel.d.tlua +10 -0
  153. package/effect.d.tlua +121 -0
  154. package/effects.d.tlua +77 -0
  155. package/engine.d.tlua +248 -0
  156. package/entity.d.tlua +8295 -0
  157. package/ents.d.tlua +267 -0
  158. package/enums.d.tlua +7082 -0
  159. package/file.d.tlua +419 -0
  160. package/file_class.d.tlua +7 -0
  161. package/fingerposer.d.tlua +12 -0
  162. package/fingervar.d.tlua +13 -0
  163. package/frame.d.tlua +11 -0
  164. package/frame_blend.d.tlua +105 -0
  165. package/game.d.tlua +482 -0
  166. package/gameevent.d.tlua +968 -0
  167. package/gamemode.d.tlua +48 -0
  168. package/global.d.tlua +3156 -0
  169. package/gm.d.tlua +3218 -0
  170. package/gmod.d.tlua +20 -0
  171. package/gmsave.d.tlua +53 -0
  172. package/gui.d.tlua +232 -0
  173. package/gwen.d.tlua +55 -0
  174. package/halo.d.tlua +42 -0
  175. package/hammer.d.tlua +17 -0
  176. package/hook.d.tlua +64 -0
  177. package/html.d.tlua +22 -0
  178. package/http.d.tlua +72 -0
  179. package/iconeditor.d.tlua +130 -0
  180. package/igmodaudiochannel.d.tlua +419 -0
  181. package/imagecheckbox.d.tlua +48 -0
  182. package/imaterial.d.tlua +288 -0
  183. package/imesh.d.tlua +70 -0
  184. package/index.d.tlua +277 -0
  185. package/input.d.tlua +252 -0
  186. package/invalidateinternalentitycache.d.tlua +13 -0
  187. package/irestore.d.tlua +94 -0
  188. package/isave.d.tlua +94 -0
  189. package/itexture.d.tlua +108 -0
  190. package/ivideowriter.d.tlua +53 -0
  191. package/jit.d.tlua +243 -0
  192. package/killicon.d.tlua +84 -0
  193. package/label.d.tlua +20 -0
  194. package/language.d.tlua +26 -0
  195. package/list.d.tlua +112 -0
  196. package/makeballoon.d.tlua +15 -0
  197. package/markup.d.tlua +38 -0
  198. package/markupobject.d.tlua +53 -0
  199. package/material.d.tlua +9 -0
  200. package/math.d.tlua +899 -0
  201. package/matproxy.d.tlua +60 -0
  202. package/matselect.d.tlua +106 -0
  203. package/menu.d.tlua +20 -0
  204. package/menubar.d.tlua +39 -0
  205. package/mesh.d.tlua +183 -0
  206. package/modelimage.d.tlua +12 -0
  207. package/motionsensor.d.tlua +115 -0
  208. package/navmesh.d.tlua +274 -0
  209. package/net.d.tlua +639 -0
  210. package/nextbot.d.tlua +380 -0
  211. package/notification.d.tlua +35 -0
  212. package/npc.d.tlua +1787 -0
  213. package/numpad.d.tlua +89 -0
  214. package/os.d.tlua +56 -0
  215. package/package.d.tlua +15 -0
  216. package/package.json +18 -0
  217. package/panel.d.tlua +3650 -0
  218. package/panellist.d.tlua +13 -0
  219. package/pathfollower.d.tlua +301 -0
  220. package/permissions.d.tlua +77 -0
  221. package/physcollide.d.tlua +40 -0
  222. package/physenv.d.tlua +136 -0
  223. package/physobj.d.tlua +799 -0
  224. package/pixelvis_handle_t.d.tlua +9 -0
  225. package/player.d.tlua +3320 -0
  226. package/player_manager.d.tlua +147 -0
  227. package/preseteditor.d.tlua +13 -0
  228. package/presets.d.tlua +79 -0
  229. package/projectedtexture.d.tlua +553 -0
  230. package/properties.d.tlua +65 -0
  231. package/propselect.d.tlua +50 -0
  232. package/radiobutton.d.tlua +13 -0
  233. package/render.d.tlua +1700 -0
  234. package/resource.d.tlua +73 -0
  235. package/richtext.d.tlua +17 -0
  236. package/sandbox.d.tlua +576 -0
  237. package/saverestore.d.tlua +148 -0
  238. package/schedule.d.tlua +69 -0
  239. package/scripted_ents.d.tlua +124 -0
  240. package/search.d.tlua +26 -0
  241. package/serverlist.d.tlua +85 -0
  242. package/slidebar.d.tlua +12 -0
  243. package/slider.d.tlua +11 -0
  244. package/sound.d.tlua +140 -0
  245. package/spawnicon.d.tlua +95 -0
  246. package/spawnmenu.d.tlua +286 -0
  247. package/spawnmenucontentpanel.d.tlua +52 -0
  248. package/sql.d.tlua +154 -0
  249. package/stack.d.tlua +57 -0
  250. package/steamworks.d.tlua +208 -0
  251. package/string.d.tlua +535 -0
  252. package/structures.d.tlua +4442 -0
  253. package/surface.d.tlua +463 -0
  254. package/surfaceinfo.d.tlua +70 -0
  255. package/system.d.tlua +134 -0
  256. package/table.d.tlua +533 -0
  257. package/task.d.tlua +92 -0
  258. package/team.d.tlua +195 -0
  259. package/textentry.d.tlua +12 -0
  260. package/tgaimage.d.tlua +11 -0
  261. package/timer.d.tlua +198 -0
  262. package/tool.d.tlua +466 -0
  263. package/ugcpublishwindow.d.tlua +83 -0
  264. package/umsg.d.tlua +147 -0
  265. package/undo.d.tlua +122 -0
  266. package/urllabel.d.tlua +13 -0
  267. package/usermessage.d.tlua +48 -0
  268. package/utf8.d.tlua +89 -0
  269. package/util.d.tlua +1087 -0
  270. package/vector.d.tlua +413 -0
  271. package/vehicle.d.tlua +472 -0
  272. package/vgui.d.tlua +201 -0
  273. package/video.d.tlua +17 -0
  274. package/vmatrix.d.tlua +392 -0
  275. package/weapon.d.tlua +913 -0
  276. package/weapons.d.tlua +90 -0
  277. package/widgets.d.tlua +29 -0
  278. package/workshopfilebase.d.tlua +68 -0
@@ -0,0 +1,793 @@
1
+ // AUTO-GENERATED tlua declarations. Do not edit by hand.
2
+
3
+ /**
4
+ * **INTERNAL**: This is used internally - although you're able to use it you probably shouldn't.
5
+ *
6
+ *
7
+ * This panel is created whenever you add a node to a [DTree](https://wiki.facepunch.com/gmod/DTree).
8
+ * The root node of a [DTree](https://wiki.facepunch.com/gmod/DTree) is also a [DTree_Node](https://wiki.facepunch.com/gmod/DTree_Node) and controls much of its action. it can be accessed with [DTree:Root](https://wiki.facepunch.com/gmod/DTree:Root).
9
+ *
10
+ * @realm client and menu
11
+ * @source https://wiki.facepunch.com/gmod/DTree_Node
12
+ */
13
+ interface DTree_Node extends DPanel {}
14
+
15
+ interface DTree_Node {
16
+ /**
17
+ * A helper function that adds a new node and calls to [DTree_Node:MakeFolder](https://wiki.facepunch.com/gmod/DTree_Node:MakeFolder) on it.
18
+ * @realm client and menu
19
+ * @source https://wiki.facepunch.com/gmod/DTree_Node:AddFolder
20
+ */
21
+ AddFolder(self: DTree_Node, name: string, folder: string, path: string, showFiles?: boolean, wildcard?: string, bDontForceExpandable?: boolean): Panel;
22
+ }
23
+
24
+ interface DTree_Node {
25
+ /**
26
+ * Add a child node to the DTree_Node
27
+ * @realm client and menu
28
+ * @source https://wiki.facepunch.com/gmod/DTree_Node:AddNode
29
+ */
30
+ AddNode(self: DTree_Node, name: string, icon?: string): Panel;
31
+ }
32
+
33
+ interface DTree_Node {
34
+ /**
35
+ * **INTERNAL**: This is used internally - although you're able to use it you probably shouldn't.
36
+ *
37
+ *
38
+ * Adds the given panel to the child nodes list, a [DListLayout](https://wiki.facepunch.com/gmod/DListLayout).
39
+ *
40
+ * @realm client and menu
41
+ * @source https://wiki.facepunch.com/gmod/DTree_Node:AddPanel
42
+ */
43
+ AddPanel(self: DTree_Node, pnl: Panel): void;
44
+ }
45
+
46
+ interface DTree_Node {
47
+ /**
48
+ * **INTERNAL**: This is used internally - although you're able to use it you probably shouldn't.
49
+ *
50
+ *
51
+ * Internal function that handles the expand/collapse animations.
52
+ *
53
+ * @realm client and menu
54
+ * @source https://wiki.facepunch.com/gmod/DTree_Node:AnimSlide
55
+ */
56
+ AnimSlide(self: DTree_Node, anim: table, delta: number, data: table): void;
57
+ }
58
+
59
+ interface DTree_Node {
60
+ /**
61
+ * **INTERNAL**: This is used internally - although you're able to use it you probably shouldn't.
62
+ *
63
+ *
64
+ * Called when a child node is expanded or collapsed to propagate this event to parent nodes to update layout.
65
+ *
66
+ * @realm client and menu
67
+ * @source https://wiki.facepunch.com/gmod/DTree_Node:ChildExpanded
68
+ */
69
+ ChildExpanded(self: DTree_Node, expanded: boolean): void;
70
+ }
71
+
72
+ interface DTree_Node {
73
+ /**
74
+ * Cleans up the internal table of items (sub-nodes) of this node from invalid panels or sub-nodes that were moved from this node to another.
75
+ *
76
+ * Appears the be completely unused by the game on its own.
77
+ *
78
+ * @realm client and menu
79
+ * @source https://wiki.facepunch.com/gmod/DTree_Node:CleanList
80
+ */
81
+ CleanList(self: DTree_Node): void;
82
+ }
83
+
84
+ interface DTree_Node {
85
+ /**
86
+ * Create and returns a copy of this node, including all the sub-nodes.
87
+ * @realm client and menu
88
+ * @source https://wiki.facepunch.com/gmod/DTree_Node:Copy
89
+ */
90
+ Copy(self: DTree_Node): Panel;
91
+ }
92
+
93
+ interface DTree_Node {
94
+ /**
95
+ * **INTERNAL**: This is used internally - although you're able to use it you probably shouldn't.
96
+ *
97
+ *
98
+ * Creates the container [DListLayout](https://wiki.facepunch.com/gmod/DListLayout) for the [DTree_Node](https://wiki.facepunch.com/gmod/DTree_Node)s.
99
+ *
100
+ * This is called automatically so you don't have to.
101
+ *
102
+ * @realm client and menu
103
+ * @source https://wiki.facepunch.com/gmod/DTree_Node:CreateChildNodes
104
+ */
105
+ CreateChildNodes(self: DTree_Node): void;
106
+ }
107
+
108
+ interface DTree_Node {
109
+ /**
110
+ * Expands or collapses this node, as well as ALL child nodes of this node.
111
+ *
112
+ * Works opposite of [DTree_Node:ExpandTo](https://wiki.facepunch.com/gmod/DTree_Node:ExpandTo).
113
+ *
114
+ * @realm client and menu
115
+ * @source https://wiki.facepunch.com/gmod/DTree_Node:ExpandRecurse
116
+ */
117
+ ExpandRecurse(self: DTree_Node, expand: boolean): void;
118
+ }
119
+
120
+ interface DTree_Node {
121
+ /**
122
+ * Collapses or expands all nodes from the topmost-level node to this one.
123
+ *
124
+ * Works opposite of [DTree_Node:ExpandRecurse](https://wiki.facepunch.com/gmod/DTree_Node:ExpandRecurse).
125
+ *
126
+ * @realm client and menu
127
+ * @source https://wiki.facepunch.com/gmod/DTree_Node:ExpandTo
128
+ */
129
+ ExpandTo(self: DTree_Node, expand: boolean): void;
130
+ }
131
+
132
+ interface DTree_Node {
133
+ /**
134
+ * **INTERNAL**: This is used internally - although you're able to use it you probably shouldn't.
135
+ *
136
+ *
137
+ * Called automatically from [DTree_Node:PopulateChildrenAndSelf](https://wiki.facepunch.com/gmod/DTree_Node:PopulateChildrenAndSelf) and [DTree_Node:PopulateChildren](https://wiki.facepunch.com/gmod/DTree_Node:PopulateChildren) to populate this node with child nodes of files and folders.
138
+ *
139
+ * @realm client and menu
140
+ * @source https://wiki.facepunch.com/gmod/DTree_Node:FilePopulate
141
+ */
142
+ FilePopulate(self: DTree_Node, bAndChildren: boolean, bExpand: boolean): void;
143
+ }
144
+
145
+ interface DTree_Node {
146
+ /**
147
+ * **INTERNAL**: This is used internally - although you're able to use it you probably shouldn't.
148
+ *
149
+ *
150
+ * Called automatically from [DTree_Node:FilePopulate](https://wiki.facepunch.com/gmod/DTree_Node:FilePopulate) to actually fill the node with sub-nodes based on set preferences like should files be added, etc.
151
+ *
152
+ * @realm client and menu
153
+ * @source https://wiki.facepunch.com/gmod/DTree_Node:FilePopulateCallback
154
+ */
155
+ FilePopulateCallback(self: DTree_Node, files: table, folders: table, foldername: string, path: string, bAndChildren: boolean, wildcard: string): void;
156
+ }
157
+
158
+ interface DTree_Node {
159
+ /**
160
+ * Returns n-th child node.
161
+ *
162
+ * Basically an alias of [Panel:GetChild](https://wiki.facepunch.com/gmod/Panel:GetChild).
163
+ *
164
+ * @realm client and menu
165
+ * @source https://wiki.facepunch.com/gmod/DTree_Node:GetChildNode
166
+ */
167
+ GetChildNode(self: DTree_Node, num: number): Panel;
168
+ }
169
+
170
+ interface DTree_Node {
171
+ /**
172
+ * Returns the number of child nodes this node has. For use with [DTree_Node:GetChildNode](https://wiki.facepunch.com/gmod/DTree_Node:GetChildNode)
173
+ *
174
+ * @realm client and menu
175
+ * @source https://wiki.facepunch.com/gmod/DTree_Node:GetChildNodeCount
176
+ */
177
+ GetChildNodeCount(self: DTree_Node): number;
178
+ }
179
+
180
+ interface DTree_Node {
181
+ /**
182
+ * Returns a table containing all child nodes of this node.
183
+ *
184
+ * @realm client and menu
185
+ * @source https://wiki.facepunch.com/gmod/DTree_Node:GetChildNodes
186
+ */
187
+ GetChildNodes(self: DTree_Node): table;
188
+ }
189
+
190
+ interface DTree_Node {
191
+ /**
192
+ * Returns value set by [DTree_Node:SetDirty](https://wiki.facepunch.com/gmod/DTree_Node:SetDirty).
193
+ *
194
+ * @realm client and menu
195
+ * @source https://wiki.facepunch.com/gmod/DTree_Node:GetDirty
196
+ */
197
+ GetDirty(self: DTree_Node): boolean;
198
+ }
199
+
200
+ interface DTree_Node {
201
+ /**
202
+ * Returns whether the double clock to collapse/expand functionality is enabled on this node.
203
+ * @realm client and menu
204
+ * @source https://wiki.facepunch.com/gmod/DTree_Node:GetDoubleClickToOpen
205
+ */
206
+ GetDoubleClickToOpen(self: DTree_Node): boolean;
207
+ }
208
+
209
+ interface DTree_Node {
210
+ /**
211
+ * **INTERNAL**: This is used internally - although you're able to use it you probably shouldn't.
212
+ *
213
+ *
214
+ * Returns what is set by [DTree_Node:SetDraggableName](https://wiki.facepunch.com/gmod/DTree_Node:SetDraggableName).
215
+ *
216
+ * @realm client and menu
217
+ * @source https://wiki.facepunch.com/gmod/DTree_Node:GetDraggableName
218
+ */
219
+ GetDraggableName(self: DTree_Node): string;
220
+ }
221
+
222
+ interface DTree_Node {
223
+ /**
224
+ * **INTERNAL**: This is used internally - although you're able to use it you probably shouldn't.
225
+ *
226
+ *
227
+ * Returns whether or not this node is drawing lines
228
+ *
229
+ * @realm client and menu
230
+ * @source https://wiki.facepunch.com/gmod/DTree_Node:GetDrawLines
231
+ */
232
+ GetDrawLines(self: DTree_Node): boolean;
233
+ }
234
+
235
+ interface DTree_Node {
236
+ /**
237
+ * Returns whether the node is expanded or not.
238
+ * @realm client and menu
239
+ * @source https://wiki.facepunch.com/gmod/DTree_Node:GetExpanded
240
+ */
241
+ GetExpanded(self: DTree_Node): boolean;
242
+ }
243
+
244
+ interface DTree_Node {
245
+ /**
246
+ * Returns the filepath of the file attached to this node.
247
+ * @realm client and menu
248
+ * @source https://wiki.facepunch.com/gmod/DTree_Node:GetFileName
249
+ */
250
+ GetFileName(self: DTree_Node): string;
251
+ }
252
+
253
+ interface DTree_Node {
254
+ /**
255
+ * Returns the folder path to search in, set by [DTree_Node:MakeFolder](https://wiki.facepunch.com/gmod/DTree_Node:MakeFolder).
256
+ * @realm client and menu
257
+ * @source https://wiki.facepunch.com/gmod/DTree_Node:GetFolder
258
+ */
259
+ GetFolder(self: DTree_Node): string;
260
+ }
261
+
262
+ interface DTree_Node {
263
+ /**
264
+ * Returns whether the expand/collapse button is shown on this node regardless of whether or not it has sub-nodes.
265
+ *
266
+ * See also [DTree_Node:SetForceShowExpander](https://wiki.facepunch.com/gmod/DTree_Node:SetForceShowExpander).
267
+ *
268
+ * @realm client and menu
269
+ * @source https://wiki.facepunch.com/gmod/DTree_Node:GetForceShowExpander
270
+ */
271
+ GetForceShowExpander(self: DTree_Node): boolean;
272
+ }
273
+
274
+ interface DTree_Node {
275
+ /**
276
+ * Returns whether the expand button (little + button) should be shown or hidden.
277
+ * @realm client and menu
278
+ * @source https://wiki.facepunch.com/gmod/DTree_Node:GetHideExpander
279
+ */
280
+ GetHideExpander(self: DTree_Node): boolean;
281
+ }
282
+
283
+ interface DTree_Node {
284
+ /**
285
+ * Returns the image path to the icon of this node.
286
+ * @realm client and menu
287
+ * @source https://wiki.facepunch.com/gmod/DTree_Node:GetIcon
288
+ */
289
+ GetIcon(self: DTree_Node): string;
290
+ }
291
+
292
+ interface DTree_Node {
293
+ /**
294
+ * Returns the indentation level of the [DTree](https://wiki.facepunch.com/gmod/DTree) this node belongs to.
295
+ *
296
+ * Alias of [DTree:GetIndentSize](https://wiki.facepunch.com/gmod/DTree:GetIndentSize), see it for more info.
297
+ *
298
+ * @realm client and menu
299
+ * @source https://wiki.facepunch.com/gmod/DTree_Node:GetIndentSize
300
+ */
301
+ GetIndentSize(self: DTree_Node): number;
302
+ }
303
+
304
+ interface DTree_Node {
305
+ /**
306
+ * Returns whether this node is the last child on this level or not.
307
+ * @realm client and menu
308
+ * @source https://wiki.facepunch.com/gmod/DTree_Node:GetLastChild
309
+ */
310
+ GetLastChild(self: DTree_Node): boolean;
311
+ }
312
+
313
+ interface DTree_Node {
314
+ /**
315
+ * **INTERNAL**: This is used internally - although you're able to use it you probably shouldn't.
316
+ * Returns whether the node still needs a filesystem search for sub-nodes.
317
+ * @realm client and menu
318
+ * @source https://wiki.facepunch.com/gmod/DTree_Node:GetNeedsChildSearch
319
+ * @deprecated Seems to be unused entirely.
320
+ */
321
+ GetNeedsChildSearch(self: DTree_Node): boolean;
322
+ }
323
+
324
+ interface DTree_Node {
325
+ /**
326
+ * **INTERNAL**: This is used internally - although you're able to use it you probably shouldn't.
327
+ *
328
+ *
329
+ * Returns whether or not the node is set to be populated from the filesystem.
330
+ *
331
+ * @realm client and menu
332
+ * @source https://wiki.facepunch.com/gmod/DTree_Node:GetNeedsPopulating
333
+ */
334
+ GetNeedsPopulating(self: DTree_Node): boolean;
335
+ }
336
+
337
+ interface DTree_Node {
338
+ /**
339
+ * Returns the parent [DTree_Node](https://wiki.facepunch.com/gmod/DTree_Node). Note that [Panel:GetParent](https://wiki.facepunch.com/gmod/Panel:GetParent) will not be the same!
340
+ * @realm client and menu
341
+ * @source https://wiki.facepunch.com/gmod/DTree_Node:GetParentNode
342
+ */
343
+ GetParentNode(self: DTree_Node): Panel;
344
+ }
345
+
346
+ interface DTree_Node {
347
+ /**
348
+ * Returns the path ID ([File Search Paths](https://wiki.facepunch.com/gmod/File_Search_Paths)) used in populating the [DTree](https://wiki.facepunch.com/gmod/DTree) from the filesystem.
349
+ *
350
+ * See [DTree_Node:SetPathID](https://wiki.facepunch.com/gmod/DTree_Node:SetPathID) and [DTree_Node:MakeFolder](https://wiki.facepunch.com/gmod/DTree_Node:MakeFolder).
351
+ *
352
+ * @realm client and menu
353
+ * @source https://wiki.facepunch.com/gmod/DTree_Node:GetPathID
354
+ */
355
+ GetPathID(self: DTree_Node): string;
356
+ }
357
+
358
+ interface DTree_Node {
359
+ /**
360
+ * Returns the root node, the [DTree](https://wiki.facepunch.com/gmod/DTree) this node is under.
361
+ *
362
+ * See also [DTree_Node:GetParentNode](https://wiki.facepunch.com/gmod/DTree_Node:GetParentNode).
363
+ *
364
+ * @realm client and menu
365
+ * @source https://wiki.facepunch.com/gmod/DTree_Node:GetRoot
366
+ */
367
+ GetRoot(self: DTree_Node): Panel;
368
+ }
369
+
370
+ interface DTree_Node {
371
+ /**
372
+ * Returns whether or not nodes for files should/will be added when populating the node from filesystem.
373
+ * @realm client and menu
374
+ * @source https://wiki.facepunch.com/gmod/DTree_Node:GetShowFiles
375
+ */
376
+ GetShowFiles(self: DTree_Node): boolean;
377
+ }
378
+
379
+ interface DTree_Node {
380
+ /**
381
+ * Returns the wildcard set by [DTree_Node:MakeFolder](https://wiki.facepunch.com/gmod/DTree_Node:MakeFolder).
382
+ * @realm client and menu
383
+ * @source https://wiki.facepunch.com/gmod/DTree_Node:GetWildCard
384
+ */
385
+ GetWildCard(self: DTree_Node): string;
386
+ }
387
+
388
+ interface DTree_Node {
389
+ /**
390
+ * Inserts a sub-node into this node before or after the given node.
391
+ * @realm client and menu
392
+ * @source https://wiki.facepunch.com/gmod/DTree_Node:Insert
393
+ */
394
+ Insert(self: DTree_Node, node: Panel, nodeNextTo: Panel, before: boolean): void;
395
+ }
396
+
397
+ interface DTree_Node {
398
+ /**
399
+ * **INTERNAL**: This is used internally - although you're able to use it you probably shouldn't.
400
+ *
401
+ *
402
+ * Inserts an existing node as a "child" or a sub-node of this node.
403
+ * Used internally by the drag'n'drop functionality.
404
+ *
405
+ * @realm client and menu
406
+ * @source https://wiki.facepunch.com/gmod/DTree_Node:InsertNode
407
+ */
408
+ InsertNode(self: DTree_Node, node: Panel): void;
409
+ }
410
+
411
+ interface DTree_Node {
412
+ /**
413
+ * **INTERNAL**: This is used internally - although you're able to use it you probably shouldn't.
414
+ *
415
+ *
416
+ * Called automatically internally.
417
+ *
418
+ * Makes the target node compatible with this node's drag'n'drop.
419
+ *
420
+ * @realm client and menu
421
+ * @source https://wiki.facepunch.com/gmod/DTree_Node:InstallDraggable
422
+ */
423
+ InstallDraggable(self: DTree_Node, node: Panel): void;
424
+ }
425
+
426
+ interface DTree_Node {
427
+ /**
428
+ * **INTERNAL**: This is used internally - although you're able to use it you probably shouldn't.
429
+ *
430
+ *
431
+ * See [DTree_Node:DoClick](https://wiki.facepunch.com/gmod/DTree_Node:DoClick)
432
+ *
433
+ * @realm client and menu
434
+ * @source https://wiki.facepunch.com/gmod/DTree_Node:InternalDoClick
435
+ */
436
+ InternalDoClick(self: DTree_Node): void;
437
+ }
438
+
439
+ interface DTree_Node {
440
+ /**
441
+ * **INTERNAL**: This is used internally - although you're able to use it you probably shouldn't.
442
+ *
443
+ *
444
+ * See [DTree_Node:DoRightClick](https://wiki.facepunch.com/gmod/DTree_Node:DoRightClick).
445
+ *
446
+ * @realm client and menu
447
+ * @source https://wiki.facepunch.com/gmod/DTree_Node:InternalDoRightClick
448
+ */
449
+ InternalDoRightClick(self: DTree_Node): void;
450
+ }
451
+
452
+ interface DTree_Node {
453
+ /**
454
+ * Returns true if [DTree_Node:GetRoot](https://wiki.facepunch.com/gmod/DTree_Node:GetRoot) is the same as [DTree_Node:GetParentNode](https://wiki.facepunch.com/gmod/DTree_Node:GetParentNode) of this node.
455
+ * @realm client and menu
456
+ * @source https://wiki.facepunch.com/gmod/DTree_Node:IsRootNode
457
+ */
458
+ IsRootNode(self: DTree_Node): boolean;
459
+ }
460
+
461
+ interface DTree_Node {
462
+ /**
463
+ * Removes given node as a sub-node of this node.
464
+ *
465
+ * It doesn't actually remove or unparent the panel, just removes it from the internal [DListView](https://wiki.facepunch.com/gmod/DListView).
466
+ *
467
+ * @realm client and menu
468
+ * @source https://wiki.facepunch.com/gmod/DTree_Node:LeaveTree
469
+ */
470
+ LeaveTree(self: DTree_Node, pnl: Panel): void;
471
+ }
472
+
473
+ interface DTree_Node {
474
+ /**
475
+ * Makes this node a folder in the filesystem. This will make it automatically populated.
476
+ *
477
+ * See also [DTree_Node:AddFolder](https://wiki.facepunch.com/gmod/DTree_Node:AddFolder).
478
+ *
479
+ * @realm client and menu
480
+ * @source https://wiki.facepunch.com/gmod/DTree_Node:MakeFolder
481
+ */
482
+ MakeFolder(self: DTree_Node, folder: string, path: string, showFiles?: boolean, wildcard?: string, dontForceExpandable?: boolean): void;
483
+ }
484
+
485
+ interface DTree_Node {
486
+ /**
487
+ * Moves given panel to the top of the children of this node.
488
+ *
489
+ * Despite name of this function, it cannot move the children to any position but the topmost.
490
+ *
491
+ * @realm client and menu
492
+ * @source https://wiki.facepunch.com/gmod/DTree_Node:MoveChildTo
493
+ */
494
+ MoveChildTo(self: DTree_Node, node: Panel): void;
495
+ }
496
+
497
+ interface DTree_Node {
498
+ /**
499
+ * Moves this node to the top of the level.
500
+ * @realm client and menu
501
+ * @source https://wiki.facepunch.com/gmod/DTree_Node:MoveToTop
502
+ */
503
+ MoveToTop(self: DTree_Node): void;
504
+ }
505
+
506
+ interface DTree_Node {
507
+ /**
508
+ * **INTERNAL**: This is used internally - although you're able to use it you probably shouldn't.
509
+ *
510
+ *
511
+ * Called automatically to perform layout on this node if this node [DTree_Node:IsRootNode](https://wiki.facepunch.com/gmod/DTree_Node:IsRootNode).
512
+ *
513
+ * @realm client and menu
514
+ * @source https://wiki.facepunch.com/gmod/DTree_Node:PerformRootNodeLayout
515
+ */
516
+ PerformRootNodeLayout(self: DTree_Node): void;
517
+ }
518
+
519
+ interface DTree_Node {
520
+ /**
521
+ * **INTERNAL**: This is used internally - although you're able to use it you probably shouldn't.
522
+ *
523
+ *
524
+ * Called automatically from [DTree_Node:PopulateChildrenAndSelf](https://wiki.facepunch.com/gmod/DTree_Node:PopulateChildrenAndSelf).
525
+ *
526
+ * @realm client and menu
527
+ * @source https://wiki.facepunch.com/gmod/DTree_Node:PopulateChildren
528
+ */
529
+ PopulateChildren(self: DTree_Node): void;
530
+ }
531
+
532
+ interface DTree_Node {
533
+ /**
534
+ * **INTERNAL**: This is used internally - although you're able to use it you probably shouldn't.
535
+ *
536
+ *
537
+ * Called automatically from [DTree_Node:SetExpanded](https://wiki.facepunch.com/gmod/DTree_Node:SetExpanded) (or when user manually expands the node) to populate the node with sub-nodes from the filesystem if this was enabled via [DTree_Node:MakeFolder](https://wiki.facepunch.com/gmod/DTree_Node:MakeFolder).
538
+ *
539
+ * @realm client and menu
540
+ * @source https://wiki.facepunch.com/gmod/DTree_Node:PopulateChildrenAndSelf
541
+ */
542
+ PopulateChildrenAndSelf(self: DTree_Node, expand: boolean): void;
543
+ }
544
+
545
+ interface DTree_Node {
546
+ /**
547
+ * Appears to have no effect on the [DTree_Node](https://wiki.facepunch.com/gmod/DTree_Node).
548
+ *
549
+ * @realm client and menu
550
+ * @source https://wiki.facepunch.com/gmod/DTree_Node:SetDirty
551
+ */
552
+ SetDirty(self: DTree_Node, dirty: boolean): void;
553
+ }
554
+
555
+ interface DTree_Node {
556
+ /**
557
+ * Sets whether double clicking the node should expand/collapse it or not.
558
+ * @realm client and menu
559
+ * @source https://wiki.facepunch.com/gmod/DTree_Node:SetDoubleClickToOpen
560
+ */
561
+ SetDoubleClickToOpen(self: DTree_Node, enable: boolean): void;
562
+ }
563
+
564
+ interface DTree_Node {
565
+ /**
566
+ * **INTERNAL**: This is used internally - although you're able to use it you probably shouldn't.
567
+ *
568
+ *
569
+ * Used to store name for sub elements for a [Panel:Droppable](https://wiki.facepunch.com/gmod/Panel:Droppable) call.
570
+ *
571
+ * @realm client and menu
572
+ * @source https://wiki.facepunch.com/gmod/DTree_Node:SetDraggableName
573
+ */
574
+ SetDraggableName(self: DTree_Node, name: string): void;
575
+ }
576
+
577
+ interface DTree_Node {
578
+ /**
579
+ * **INTERNAL**: This is used internally - although you're able to use it you probably shouldn't.
580
+ *
581
+ *
582
+ * Sets whether or not this node should draw visual lines.
583
+ *
584
+ * @realm client and menu
585
+ * @source https://wiki.facepunch.com/gmod/DTree_Node:SetDrawLines
586
+ */
587
+ SetDrawLines(self: DTree_Node, draw: boolean): void;
588
+ }
589
+
590
+ interface DTree_Node {
591
+ /**
592
+ * Expands or collapses this node.
593
+ * @realm client and menu
594
+ * @source https://wiki.facepunch.com/gmod/DTree_Node:SetExpanded
595
+ */
596
+ SetExpanded(self: DTree_Node, expand: boolean, surpressAnimation?: boolean): void;
597
+ }
598
+
599
+ interface DTree_Node {
600
+ /**
601
+ * **INTERNAL**: This is used internally - although you're able to use it you probably shouldn't.
602
+ *
603
+ *
604
+ * Sets the file full filepath to the file attached to this node
605
+ *
606
+ * @realm client and menu
607
+ * @source https://wiki.facepunch.com/gmod/DTree_Node:SetFileName
608
+ */
609
+ SetFileName(self: DTree_Node, filename: string): void;
610
+ }
611
+
612
+ interface DTree_Node {
613
+ /**
614
+ * **INTERNAL**: This is used internally - although you're able to use it you probably shouldn't.
615
+ *
616
+ *
617
+ * Sets the folder to search files and folders in.
618
+ *
619
+ * Use [DTree_Node:MakeFolder](https://wiki.facepunch.com/gmod/DTree_Node:MakeFolder) instead.
620
+ *
621
+ * @realm client and menu
622
+ * @source https://wiki.facepunch.com/gmod/DTree_Node:SetFolder
623
+ */
624
+ SetFolder(self: DTree_Node, folder: string): void;
625
+ }
626
+
627
+ interface DTree_Node {
628
+ /**
629
+ * Sets whether or not the expand/collapse button (+/- button) should be shown on this node regardless of whether it has sub-elements or not.
630
+ * @realm client and menu
631
+ * @source https://wiki.facepunch.com/gmod/DTree_Node:SetForceShowExpander
632
+ */
633
+ SetForceShowExpander(self: DTree_Node, forceShow: boolean): void;
634
+ }
635
+
636
+ interface DTree_Node {
637
+ /**
638
+ * **INTERNAL**: This is used internally - although you're able to use it you probably shouldn't.
639
+ *
640
+ *
641
+ * Sets whether the expand button (little + button) should be shown or hidden.
642
+ *
643
+ * @realm client and menu
644
+ * @source https://wiki.facepunch.com/gmod/DTree_Node:SetHideExpander
645
+ */
646
+ SetHideExpander(self: DTree_Node, hide: boolean): void;
647
+ }
648
+
649
+ interface DTree_Node {
650
+ /**
651
+ * Sets the material for the icon of the [DTree_Node](https://wiki.facepunch.com/gmod/DTree_Node).
652
+ * @realm client and menu
653
+ * @source https://wiki.facepunch.com/gmod/DTree_Node:SetIcon
654
+ */
655
+ SetIcon(self: DTree_Node, path: string): void;
656
+ }
657
+
658
+ interface DTree_Node {
659
+ /**
660
+ * **INTERNAL**: This is used internally - although you're able to use it you probably shouldn't.
661
+ *
662
+ *
663
+ * Called automatically to set whether this node is the last child on this level or not.
664
+ *
665
+ * @realm client and menu
666
+ * @source https://wiki.facepunch.com/gmod/DTree_Node:SetLastChild
667
+ */
668
+ SetLastChild(self: DTree_Node, last: boolean): void;
669
+ }
670
+
671
+ interface DTree_Node {
672
+ /**
673
+ * **INTERNAL**: This is used internally - although you're able to use it you probably shouldn't.
674
+ *
675
+ *
676
+ *
677
+ * Sets whether the node still needs a filesystem search for sub-nodes.
678
+ *
679
+ * @realm client and menu
680
+ * @source https://wiki.facepunch.com/gmod/DTree_Node:SetNeedsChildSearch
681
+ * @deprecated Seems to be unused entirely.
682
+ */
683
+ SetNeedsChildSearch(self: DTree_Node, newState: boolean): void;
684
+ }
685
+
686
+ interface DTree_Node {
687
+ /**
688
+ * **INTERNAL**: This is used internally - although you're able to use it you probably shouldn't.
689
+ *
690
+ *
691
+ * Sets whether or not the node needs populating from the filesystem.
692
+ *
693
+ * @realm client and menu
694
+ * @source https://wiki.facepunch.com/gmod/DTree_Node:SetNeedsPopulating
695
+ */
696
+ SetNeedsPopulating(self: DTree_Node, needs: boolean): void;
697
+ }
698
+
699
+ interface DTree_Node {
700
+ /**
701
+ * **INTERNAL**: This is used internally - although you're able to use it you probably shouldn't.
702
+ *
703
+ *
704
+ * Sets the parent node of this node. Not the same as [Panel:SetParent](https://wiki.facepunch.com/gmod/Panel:SetParent).
705
+ *
706
+ * This is set automatically, you shouldn't use this.
707
+ *
708
+ * @realm client and menu
709
+ * @source https://wiki.facepunch.com/gmod/DTree_Node:SetParentNode
710
+ */
711
+ SetParentNode(self: DTree_Node, parent: Panel): void;
712
+ }
713
+
714
+ interface DTree_Node {
715
+ /**
716
+ * **INTERNAL**: This is used internally - although you're able to use it you probably shouldn't.
717
+ *
718
+ *
719
+ * Sets the path ID ([File Search Paths](https://wiki.facepunch.com/gmod/File_Search_Paths)) for populating the tree from the filesystem.
720
+ *
721
+ * Use [DTree_Node:MakeFolder](https://wiki.facepunch.com/gmod/DTree_Node:MakeFolder) instead.
722
+ *
723
+ * @realm client and menu
724
+ * @source https://wiki.facepunch.com/gmod/DTree_Node:SetPathID
725
+ */
726
+ SetPathID(self: DTree_Node, path: string): void;
727
+ }
728
+
729
+ interface DTree_Node {
730
+ /**
731
+ * **INTERNAL**: This is used internally - although you're able to use it you probably shouldn't.
732
+ *
733
+ *
734
+ * Sets the root node (the [DTree](https://wiki.facepunch.com/gmod/DTree)) of this node.
735
+ *
736
+ * This is set automatically, you shouldn't use this.
737
+ *
738
+ * @realm client and menu
739
+ * @source https://wiki.facepunch.com/gmod/DTree_Node:SetRoot
740
+ */
741
+ SetRoot(self: DTree_Node, root: Panel): void;
742
+ }
743
+
744
+ interface DTree_Node {
745
+ /**
746
+ * **INTERNAL**: This is used internally - although you're able to use it you probably shouldn't.
747
+ *
748
+ *
749
+ * Sets whether or not nodes for files should be added when populating the node from filesystem.
750
+ *
751
+ * @realm client and menu
752
+ * @source https://wiki.facepunch.com/gmod/DTree_Node:SetShowFiles
753
+ */
754
+ SetShowFiles(self: DTree_Node, showFiles: boolean): void;
755
+ }
756
+
757
+ interface DTree_Node {
758
+ /**
759
+ * **INTERNAL**: This is used internally - although you're able to use it you probably shouldn't.
760
+ *
761
+ *
762
+ * Sets the search wildcard.
763
+ *
764
+ * Use [DTree_Node:MakeFolder](https://wiki.facepunch.com/gmod/DTree_Node:MakeFolder) instead
765
+ *
766
+ * @realm client and menu
767
+ * @source https://wiki.facepunch.com/gmod/DTree_Node:SetWildCard
768
+ */
769
+ SetWildCard(self: DTree_Node, wildcard: string): void;
770
+ }
771
+
772
+ interface DTree_Node {
773
+ /**
774
+ * Currently does nothing, not implemented.
775
+ *
776
+ * @realm client and menu
777
+ * @source https://wiki.facepunch.com/gmod/DTree_Node:SetupCopy
778
+ */
779
+ SetupCopy(self: DTree_Node): void;
780
+ }
781
+
782
+ interface DTree_Node {
783
+ /**
784
+ * Returns whether or not the [DTree](https://wiki.facepunch.com/gmod/DTree) this node is in has icons enabled.
785
+ *
786
+ * See [DTree:ShowIcons](https://wiki.facepunch.com/gmod/DTree:ShowIcons) for more info.
787
+ *
788
+ * @realm client and menu
789
+ * @source https://wiki.facepunch.com/gmod/DTree_Node:ShowIcons
790
+ */
791
+ ShowIcons(self: DTree_Node): number;
792
+ }
793
+