Button.lua 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211
  1. --[[
  2. MIT License
  3. Copyright (c) 2019 Mitchell Davis <coding.jackalope@gmail.com>
  4. Permission is hereby granted, free of charge, to any person obtaining a copy
  5. of this software and associated documentation files (the "Software"), to deal
  6. in the Software without restriction, including without limitation the rights
  7. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  8. copies of the Software, and to permit persons to whom the Software is
  9. furnished to do so, subject to the following conditions:
  10. The above copyright notice and this permission notice shall be included in all
  11. copies or substantial portions of the Software.
  12. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  13. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  14. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  15. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  16. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  17. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  18. SOFTWARE.
  19. --]]
  20. local Cursor = require(SLAB_PATH .. '.Internal.Core.Cursor')
  21. local DrawCommands = require(SLAB_PATH .. '.Internal.Core.DrawCommands')
  22. local LayoutManager = require(SLAB_PATH .. '.Internal.UI.LayoutManager')
  23. local Mouse = require(SLAB_PATH .. '.Internal.Input.Mouse')
  24. local Stats = require(SLAB_PATH .. '.Internal.Core.Stats')
  25. local Style = require(SLAB_PATH .. '.Style')
  26. local Text = require(SLAB_PATH .. '.Internal.UI.Text')
  27. local Tooltip = require(SLAB_PATH .. '.Internal.UI.Tooltip')
  28. local Window = require(SLAB_PATH .. '.Internal.UI.Window')
  29. local Button = {}
  30. local Pad = 10.0
  31. local MinWidth = 75.0
  32. local Radius = 8.0
  33. local ClickedId = nil
  34. function Button.Begin(Label, Options)
  35. local StatHandle = Stats.Begin('Button', 'Slab')
  36. Options = Options == nil and {} or Options
  37. Options.Tooltip = Options.Tooltip == nil and "" or Options.Tooltip
  38. Options.Rounding = Options.Rounding == nil and Style.ButtonRounding or Options.Rounding
  39. Options.Invisible = Options.Invisible == nil and false or Options.Invisible
  40. Options.W = Options.W == nil and nil or Options.W
  41. Options.H = Options.H == nil and nil or Options.H
  42. Options.Disabled = Options.Disabled == nil and false or Options.Disabled
  43. local Id = Window.GetItemId(Label)
  44. local W, H = Button.GetSize(Label)
  45. local LabelW = Style.Font:getWidth(Label)
  46. local FontHeight = Style.Font:getHeight()
  47. local TextColor = Options.Disabled and Style.ButtonDisabledTextColor or nil
  48. if Options.W ~= nil then
  49. W = Options.W
  50. end
  51. if Options.H ~= nil then
  52. H = Options.H
  53. end
  54. W, H = LayoutManager.ComputeSize(W, H)
  55. LayoutManager.AddControl(W, H)
  56. local X, Y = Cursor.GetPosition()
  57. local Result = false
  58. local Color = Style.ButtonColor
  59. local MouseX, MouseY = Window.GetMousePosition()
  60. if not Window.IsObstructedAtMouse() and X <= MouseX and MouseX <= X + W and Y <= MouseY and MouseY <= Y + H then
  61. Tooltip.Begin(Options.Tooltip)
  62. Window.SetHotItem(Id)
  63. if not Options.Disabled then
  64. Color = Style.ButtonHoveredColor
  65. if ClickedId == Id then
  66. Color = Style.ButtonPressedColor
  67. end
  68. if Mouse.IsClicked(1) then
  69. ClickedId = Id
  70. end
  71. if Mouse.IsReleased(1) and ClickedId == Id then
  72. Result = true
  73. ClickedId = nil
  74. end
  75. end
  76. end
  77. local LabelX = X + (W * 0.5) - (LabelW * 0.5)
  78. if not Options.Invisible then
  79. DrawCommands.Rectangle('fill', X, Y, W, H, Color, Options.Rounding)
  80. local X, Y = Cursor.GetPosition()
  81. Cursor.SetX(math.floor(LabelX))
  82. Cursor.SetY(math.floor(Y + (H * 0.5) - (FontHeight * 0.5)))
  83. LayoutManager.Begin('Ignore', {Ignore = true})
  84. Text.Begin(Label, {Color = TextColor})
  85. LayoutManager.End()
  86. Cursor.SetPosition(X, Y)
  87. end
  88. Cursor.SetItemBounds(X, Y, W, H)
  89. Cursor.AdvanceY(H)
  90. Window.AddItem(X, Y, W, H, Id)
  91. Stats.End(StatHandle)
  92. return Result
  93. end
  94. function Button.BeginRadio(Label, Options)
  95. local StatHandle = Stats.Begin('RadioButton', 'Slab')
  96. Label = Label == nil and "" or Label
  97. Options = Options == nil and {} or Options
  98. Options.Index = Options.Index == nil and 0 or Options.Index
  99. Options.SelectedIndex = Options.SelectedIndex == nil and 0 or Options.SelectedIndex
  100. Options.Tooltip = Options.Tooltip == nil and "" or Options.Tooltip
  101. local Result = false
  102. local Id = Window.GetItemId(Label)
  103. local W, H = Radius * 2.0, Radius * 2.0
  104. local IsObstructed = Window.IsObstructedAtMouse()
  105. local Color = Style.ButtonColor
  106. local MouseX, MouseY = Window.GetMousePosition()
  107. if Label ~= "" then
  108. local TextW, TextH = Text.GetSize(Label)
  109. W = W + Cursor.PadX() + TextW
  110. H = math.max(H, TextH)
  111. end
  112. LayoutManager.AddControl(W, H)
  113. local X, Y = Cursor.GetPosition()
  114. local CenterX, CenterY = X + Radius, Y + Radius
  115. local DX = MouseX - CenterX
  116. local DY = MouseY - CenterY
  117. local HoveredButton = not IsObstructed and (DX * DX) + (DY * DY) <= Radius * Radius
  118. if HoveredButton then
  119. Color = Style.ButtonHoveredColor
  120. if ClickedId == Id then
  121. Color = Style.ButtonPressedColor
  122. end
  123. if Mouse.IsClicked(1) then
  124. ClickedId = Id
  125. end
  126. if Mouse.IsReleased(1) and ClickedId == Id then
  127. Result = true
  128. ClickedId = nil
  129. end
  130. end
  131. DrawCommands.Circle('fill', CenterX, CenterY, Radius, Color)
  132. if Options.Index > 0 and Options.Index == Options.SelectedIndex then
  133. DrawCommands.Circle('fill', CenterX, CenterY, Radius * 0.7, Style.RadioButtonSelectedColor)
  134. end
  135. if Label ~= "" then
  136. local CursorY = Cursor.GetY()
  137. Cursor.AdvanceX(Radius * 2.0)
  138. LayoutManager.Begin('Ignore', {Ignore = true})
  139. Text.Begin(Label)
  140. LayoutManager.End()
  141. Cursor.SetY(CursorY)
  142. end
  143. if not IsObstructed and X <= MouseX and MouseX <= X + W and Y <= MouseY and MouseY <= Y + H then
  144. Tooltip.Begin(Options.Tooltip)
  145. Window.SetHotItem(Id)
  146. end
  147. Cursor.SetItemBounds(X, Y, W, H)
  148. Cursor.AdvanceY(H)
  149. Window.AddItem(X, Y, W, H)
  150. Stats.End(StatHandle)
  151. return Result
  152. end
  153. function Button.GetSize(Label)
  154. local W = Style.Font:getWidth(Label)
  155. local H = Style.Font:getHeight()
  156. return math.max(W, MinWidth) + Pad * 2.0, H + Pad * 0.5
  157. end
  158. function Button.ClearClicked()
  159. ClickedId = nil
  160. end
  161. return Button