mirror of
https://github.com/PHIDIAS0303/ExpCluster.git
synced 2025-12-27 19:45:22 +09:00
32 lines
768 B
Lua
32 lines
768 B
Lua
--[[-- 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
|
|
@usage-- Making a basic frame, contains a label with hello world
|
|
local basic_frame =
|
|
Gui.clone_concept('dropdown','basic_frame')
|
|
:set_title('Basic Frame')
|
|
:define_draw(function(properties,parent,element)
|
|
element.add{
|
|
type = 'label',
|
|
caption = 'Hello, World!'
|
|
}
|
|
end)
|
|
]]
|
|
Gui.new_concept('frame')
|
|
:new_property('title')
|
|
:define_draw(function(properties,parent,element)
|
|
element = parent.add{
|
|
name = properties.name,
|
|
type = 'frame',
|
|
caption = properties.title
|
|
}
|
|
|
|
return element
|
|
end) |