Targon Universal Menu uses code by SMcNeill.
um_dependent.bm - Everything that might have to be modified, depending on your program
um.bm - (hopefully) static functions that will be used by the framework
um.bi - Initialization of variables. I suggest not using this file for your own variables, keep it separate! :D
um_demo.bas - A little demo of what the framework can do
.dui/.tui files - Defines a view.
views.dui/views.tui file - Has to list all the other .dui files you want to use
config.dst file - Keeps settings stored between sessions.
/fonts files - Default fonts and those used by schemes.
title - Big text, although modifiable how you display it (maybe it's too big or too small for your taste?)
text - Standard text, currently does not have overflow
input - Inline input, currently does not have overflow
radiobutton - Can be assigned to a group, works like radio buttons do
checkbox - Toggles like a normal checkbox, assign it a variable via the "name" attribute!
slider - Slides. Value from 0-1. Also assign a variable via the "name" attribute.
gradient - Attribute "color" syntax: color1/color2/color3/etc., will be split evenly
button - Performs an action that you or the framework defined when clicked
dropdown - "name" is the modified variable, "options" syntax: option1/option2/etc.
type - Defines the type of element (see above)
x - Supports numbers or the following values: (previousright, prevr, flex), (previousleft, prevl, -flex), (previous, p, prev), (right, r), (margin, m, left, l, 0)
y - Supports numbers or the following values: (previousbottom, prevb, flex), (previoustop, prevt, -flex), (nexttop, nextt, nt), (previous, p, prev), (bottom, b), (margin, m, top, t, 0)
w - Supports numbers or the following values: (flex, f), full
h - Supports numbers or the following values: (nextt, next.top, nt), 0
padding - Supports numbers
color - Supports all values defined in the selected internal/schemes/[active_scheme].colors file
hovercolor - Supports all values defined in the selected internal/schemes/[active_scheme].colors file
text - Supports text
name - Supports text or references to variables
action - Action to perform when clicked
group - Supports Integer numbers, only used for radiobuttons at the moment
value - Supports values from 0-1, only used for sliders at the moment
style - Only used for buttons and other elements consisting of rectangles. Supports the following values: b, bf
textalign - Supports the following values: topleft, left, bottomleft, topcenter, center, bottomcenter, topright, right, bottomright
url - Used for buttons that are supposed to open the browser
allownumbers - Supports the following values: -1 [true], 0 [false]
allowtext - Supports the following values: -1 [true], 0 [false]
allowspecial - Supports the following values: -1 [true], 0 [false]
Feel free to add those and refine the framework! I also highly encourage adding more functionality and robustness to the overall project - I would love to make this even more universally usable!