Add all objects

This commit is contained in:
Erlend
2022-05-30 07:49:44 +02:00
committed by GitHub
parent a9e8251e59
commit 91933afdc2
21 changed files with 1524 additions and 0 deletions

25
docs/objects/Button.md Normal file
View File

@@ -0,0 +1,25 @@
# Button
Buttons are objects, which execute function by clicking on them
The following list is only available to buttons: <br>
Remember button also inherits from [object](https://github.com/NoryiE/basalt/wiki/Object):
## setText
Sets the displayed button text
````lua
local mainFrame = basalt.createFrame("myFirstFrame"):show()
local aButton = mainFrame:addButton("myFirstButton"):setText("Click"):show() -- you could also use :setValue() instead of :setText() - no difference
````
**Arguments:** string text<br>
**returns:** self<br>
## Examples
Add a onClick event:
````lua
local mainFrame = basalt.createFrame("myFirstFrame"):show()
local aButton = mainFrame:addButton("myFirstButton"):setText("Click"):onClick(function(self,event,button,x,y)
if(event=="mouse_click")and(button==1)then
basalt.debug("Left mousebutton got clicked!")
end
end):show()