mirror of
https://github.com/PHIDIAS0303/ExpCluster.git
synced 2026-03-31 03:04:40 +09:00
Button docs
This commit is contained in:
24
expcore/gui/concepts/frame.lua
Normal file
24
expcore/gui/concepts/frame.lua
Normal file
@@ -0,0 +1,24 @@
|
||||
--[[-- Core Module - Gui
|
||||
@module Gui
|
||||
@alias Gui
|
||||
]]
|
||||
|
||||
local Gui = require 'expcore.gui.core'
|
||||
|
||||
--[[-- The basic frame element
|
||||
@element frame
|
||||
@tparam ?string|Concepts.LocalisedString title the title that will show in the frame
|
||||
]]
|
||||
Gui.new_concept('frame')
|
||||
:new_property('title',function(properties,value)
|
||||
properties.title = value
|
||||
end)
|
||||
:define_draw(function(properties,parent,element)
|
||||
element = parent.add{
|
||||
name = properties.name,
|
||||
type = 'frame',
|
||||
caption = properties.title
|
||||
}
|
||||
|
||||
return element
|
||||
end)
|
||||
Reference in New Issue
Block a user