class Shirka::Qt::App

Public Instance Methods

icon=(path) click to toggle source
# File lib/shirka/qt/app.rb, line 15
def icon=(path)
  @qt_app.setWindowIcon ::Qt::Icon.new(path)
end
setup() click to toggle source
# File lib/shirka/qt/app.rb, line 5
def setup
  @qt_app = ::Qt::Application.new []
end
started() click to toggle source
# File lib/shirka/qt/app.rb, line 9
def started
  fire :starting
  fire :started
  @qt_app.exec
end