class Metasm::Gui::DbgWindow
Attributes
dbg_widget[RW]
Public Instance Methods
display(dbg)
click to toggle source
show a new DbgWidget
# File metasm/gui/debug.rb, line 1249 def display(dbg) @dbg_widget = DbgWidget.new(dbg) @dbg_widget.win = self self.widget = @dbg_widget @dbg_widget end
initialize_window(dbg = nil, title='metasm debugger')
click to toggle source
# File metasm/gui/debug.rb, line 1242 def initialize_window(dbg = nil, title='metasm debugger') dbg, title = title, dbg if dbg.kind_of?(::String) or title.kind_of?(Debugger) self.title = title display(dbg) if dbg end