| Class | Ui::Qt4::DradisGui |
| In: |
ui/qt/gui.rb
|
| Parent: | Qt::Application |
Main Qt Application, handles the creation of main window, window title, etc.
Internal setup of the interface elements. Main application calls this method to instantiate the command parser, window title, etc.
# File ui/qt/gui.rb, line 55
55: def setup(new_controller)
56: @w = Ui::Qt4::DradisWindow.new
57: @w.windowTitle = 'dradis'
58: @w.controller = new_controller
59: @w.show
60: end