| Class | Ui::WxWidgets::DradisGui |
| In: |
ui/wx.rb
|
| Parent: | Wx::App |
Main Wx Application, handles the creation of main window, window title, etc.
# File ui/wx.rb, line 54
54: def on_init
55: @frame = Ui::WxWidgets::DradisWindow.new( nil,
56: Wx::ID_ANY,
57: "dradis",
58: Wx::DEFAULT_POSITION,
59: Wx::Size.new(800, 600)
60: )
61: set_top_window(@frame)
62: @frame.controller = @controller
63: @frame.show
64: return true
65: end