Mike's suggested button layout
Dependencies
- [2]
RK2ASPN7add lots of buttons to the toolbar - [3]
PRE6XPRNresponsively increase/decrease font height - [4]
I52S4E5Frunning `print` now appends to output editor - [5]
HVXZLNCCsend errors from event handlers to output editor - [6]
FPSPT5TMshow current pane number - [*]
R5QXEHUIsomebody stop me - [*]
5RUFNRJOstart of the visual skeleton
Change contents
- file addition: 0106-stop_button[8.2]
stop_button = function(x)local w = App.width('stop')+10button(Global_state, 'stop', {x=x, y=Menu_top+5, w=w, h=Line_height, bg={r=0.6, g=0.8, b=0.6},icon = function(p)App.color(Normal_color)love.graphics.rectangle('line', p.x,p.y, p.w,p.h, 2,2)love.graphics.print('stop', p.x+5,p.y+2)end,onpress1 = clear_handlers,})return x+w+10end - replacement in 0051-run_button at line 2
local w = App.width('Run')+10local w = App.width('run')+10 - replacement in 0051-run_button at line 7
love.graphics.print('Run', p.x+5,p.y+2)love.graphics.print('run', p.x+5,p.y+2) - edit in 0021-draw_menu at line 11
x = stop_button(x)App.color{r=0.5, g=0.5, b=0.5}love.graphics.print('code', x, Menu_top+5)x = x+App.width('code')+10 - edit in 0021-draw_menu at line 22
x = new_pane_button(x)x = duplicate_pane_button(x) - edit in 0021-draw_menu at line 23
App.color{r=0.5, g=0.5, b=0.5}love.graphics.print('screen', x, Menu_top+5)x = x+App.width('screen')+10x = new_pane_button(x)