# File ../lib/roller/CWRP.rb, line 345
  def init_gui
    app = FXApp.new
    @window = MainWindow.new(app)
    app.create

    thread = Thread.new do
      app.run
    end
  end