Package MeatEngine :: Package Widgets
[hide private]
[frames] | no frames]

Source Code for Package MeatEngine.Widgets

 1  """Meat Engine Widget Set 
 2   
 3  The term "Widget" in my context is similar to the use of the term in 
 4  the X windows system - a control used to build a GUI. 
 5   
 6  Widgets may be interactive (buttons, sliders) or non-interactive (text 
 7  displays, separators, images). Widgets may be containers for other 
 8  widgets (sizers, scroll boxes). 
 9   
10  This library is intended to be display-neutral, but my principle 
11  interest is drawing to OpenGL. 
12   
13  TODO List 
14   
15   - pushbutton 
16   - radio button 
17   - checkbox 
18   - static text box 
19   - editable text box 
20   - multiline text box (editable and non) 
21   - scroll bar 
22   - scrollable container with clipping 
23   - separator 
24   - grid sizer 
25   
26  """ 
27