Some fixes.

This commit is contained in:
Bruce Hill 2018-03-20 16:54:14 -07:00
parent 1b6bfbadce
commit 7b1e2853cb
2 changed files with 13 additions and 9 deletions

View File

@ -47,7 +47,7 @@ do
local _base_0 = {
configure_size = function(self, height, width)
self.height, self.width = height, width
self._height = #self.columns[1]
self._height = math.max(#self.columns[1], 1)
if self.height == AUTO then
self.height = self._height + 2
end
@ -60,6 +60,7 @@ do
end
self._width = self._width + col_width
end
self._width = math.max(self._width, 1)
if self.width == AUTO then
self.width = self._width + 2
end
@ -199,6 +200,7 @@ do
table.insert(self.colors, color_fn)
end
self:configure_size(height, width)
log:write("New pad: " .. tostring(self.height) .. "," .. tostring(self.width) .. " " .. tostring(self._height) .. "," .. tostring(self._width) .. "\n")
self._frame = C.newwin(self.height, self.width, self.y, self.x)
self._frame:immedok(true)
self._pad = C.newpad(self._height, self._width)
@ -525,11 +527,11 @@ run_debugger = function(err_msg)
local value_x = pads.vars.x + pads.vars.width
local value_w = SCREEN_W - (value_x)
if var_index then
pads.values = Pad("V(a)lue", var_y, value_x, pads.vars.height, value_w, wrap_text(values[var_index], value_w - 2), function(self, i)
pads.values = Pad("(D)ata", var_y, value_x, pads.vars.height, value_w, wrap_text(values[var_index], value_w - 2), function(self, i)
return color()
end)
else
pads.values = Pad("V(a)lue", var_y, value_x, pads.vars.height, value_w, values, function(self, i)
pads.values = Pad("(D)ata", var_y, value_x, pads.vars.height, value_w, { }, function(self, i)
return color()
end)
end
@ -590,7 +592,7 @@ run_debugger = function(err_msg)
select_pad(pads.src)
elseif ('v'):byte() == _exp_0 then
select_pad(pads.vars)
elseif ('a'):byte() == _exp_0 then
elseif ('d'):byte() == _exp_0 then
select_pad(pads.values)
elseif ('o'):byte() == _exp_0 then
local file = stack_locations[pads.stack.selected]

View File

@ -56,6 +56,7 @@ class Pad
table.insert(@colors, color_fn)
@configure_size height, width
log\write("New pad: #{@height},#{@width} #{@_height},#{@_width}\n")
@_frame = C.newwin(@height, @width, @y, @x)
@_frame\immedok(true)
@_pad = C.newpad(@_height, @_width)
@ -68,7 +69,7 @@ class Pad
@dirty = true
configure_size: (@height, @width)=>
@_height = #@columns[1]
@_height = math.max(#@columns[1], 1)
if @height == AUTO
@height = @_height + 2
@ -77,6 +78,7 @@ class Pad
col_width = 0
for chunk in *col do col_width = math.max(col_width, #chunk)
@_width += col_width
@_width = math.max(@_width, 1)
if @width == AUTO
@width = @_width + 2
@ -359,9 +361,9 @@ run_debugger = (err_msg)->
value_w = SCREEN_W-(value_x)
-- Show single value:
if var_index
pads.values = Pad "V(a)lue",var_y,value_x,pads.vars.height,value_w,wrap_text(values[var_index], value_w-2), (i)=>color()
pads.values = Pad "(D)ata",var_y,value_x,pads.vars.height,value_w,wrap_text(values[var_index], value_w-2), (i)=>color()
else
pads.values = Pad "V(a)lue",var_y,value_x,pads.vars.height,value_w,values, (i)=>color()
pads.values = Pad "(D)ata",var_y,value_x,pads.vars.height,value_w,{}, (i)=>color()
collectgarbage()
collectgarbage()
@ -424,8 +426,8 @@ run_debugger = (err_msg)->
when ('v')\byte!
select_pad(pads.vars) -- (V)ars
when ('a')\byte!
select_pad(pads.values) -- V(a)lue
when ('d')\byte!
select_pad(pads.values) -- (D)ata
when ('o')\byte!
file = stack_locations[pads.stack.selected]