Class: Smagacor::SmagacorUI

Inherits:
Object show all
Defined in:
lib/smagacor/smagacor-ui.rb

Overview

Wraps the creation of the Smagacor Application.

Instance Method Summary collapse

Instance Method Details

#startObject

Builds the application and runs it.



301
302
303
304
305
306
307
# File 'lib/smagacor/smagacor-ui.rb', line 301

def start
  app = Qt::Application.new( ARGV )
  main = SmagacorWindow.new( app )
  app.setMainWidget( main )
  main.show
  app.exec
end