-
Notifications
You must be signed in to change notification settings - Fork 0
/
min-log.rb
71 lines (71 loc) · 2.49 KB
/
min-log.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
module Shoes::LogWindow
def setup
app.set_window_title("#{CONSOLE_HDR}")
@main_slot = stack do
flow do
background black
stack :width => -380 do
tagline "#{CONSOLE_HDR}", :stroke => white
end
flow :margin => 6, :width => 120 do
@auto_scroll = check :checked => true
para "au", ins("t"), "oscroll?", :stroke => white
click { @auto_scroll.checked ^= true }
end
keypress { |n| @auto_scroll.checked ^= true if n.eql?(:alt_t) }
button "Clear", :margin => 6, :width => 80, :height => 40 do
Shoes.log.clear
end
button "Copy", :margin => 6, :width => 80, :height => 40 do
self.clipboard = Shoes.log.collect { |typ, msg, at, mid, rbf, rbl|
"#{typ.to_s.capitalize} in #{rbf} line #{rbl} | #{at}\n" +
"#{msg.to_s.force_encoding "UTF-8"}\n"
}.join("\n")
end
button "Save", :margin => 6, :width => 80, :height => 40 do
filename = ask_save_file
File.open(filename, "w") { |f|
f.write(Shoes.log.collect { |typ, msg, at, mid, rbf, rbl|
"#{typ.to_s.capitalize} in #{rbf} line #{rbl} | #{at}\n" +
"#{msg.to_s.force_encoding "UTF-8"}\n"
}.join("\n"))
} if filename
end
end
@log, @hash = stack, nil
timer(0) { update }
every(0.2) do
update
end
end
end
def update
if @hash != Shoes.log.hash
@hash = Shoes.log.hash
@log.clear do
i = 0
Shoes.log.each do |typ, msg, at, mid, rbf, rbl|
stack do
background "#f1f5e1" if i % 2 == 0
inscription strong(typ.to_s.capitalize, :stroke => "#05C"), " in ",
span(rbf, " line ", rbl, :stroke => "#335"), " | ",
span(at, :stroke => "#777"),
:stroke => "#059", :margin => 4, :margin_bottom => 0
flow do
stack :margin => 6, :width => 20 do
image "#{DIR}/static/icon-#{typ}.png"
end
stack :margin => 4, :width => -20 do
s = msg.to_s.force_encoding "UTF-8"
s << "\n#{msg.backtrace.join("\n")}" if msg.kind_of?(Exception)
para s, :margin => 4, :margin_top => 0, :wrap => "char"
end
end
end
i += 1
end
end
@main_slot.start { app.slot.scroll_top = app.slot.scroll_max if @auto_scroll.checked? }
end
end
end