Class: Qt::CoreApplication

Inherits:
Base show all
Defined in:
lib/Qt/qtruby4.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Base

#%, #&, #*, #**, #+, #-, #-@, #/, #<, #<<, #<=, #==, #>, #>=, #>>, #QCOMPARE, #QEXPECT_FAIL, #QFAIL, #QSKIP, #QTEST, #QVERIFY, #QVERIFY2, #QWARN, #^, ancestors, #is_a?, #methods, private_slots, #protected_methods, #public_methods, q_classinfo, q_signal, q_slot, signals, #singleton_methods, slots, #|, #~

Constructor Details

#initialize(*args) ⇒ CoreApplication

Returns a new instance of CoreApplication.



606
607
608
609
610
611
612
613
614
# File 'lib/Qt/qtruby4.rb', line 606

def initialize(*args)
  if args.length == 1 && args[0].kind_of?(Array)
    super(args.length + 1, [$0] + args[0])
  else
    super(*args)
  end
  $qApp = self
  @thread_fix = RubyThreadFix.new
end

Instance Attribute Details

#thread_fixObject (readonly)

Returns the value of attribute thread_fix.



604
605
606
# File 'lib/Qt/qtruby4.rb', line 604

def thread_fix
  @thread_fix
end

Class Method Details

.translate(*args) ⇒ Object



639
640
641
642
643
644
645
# File 'lib/Qt/qtruby4.rb', line 639

def self.translate(*args)
  if args[3] and args[3].value == Qt::Application::UnicodeUTF8.value
    return method_missing(:translate,*args).force_encoding('utf-8')
  else
    return method_missing(:translate,*args)
  end
end

Instance Method Details

#disable_threadingObject



616
617
618
619
# File 'lib/Qt/qtruby4.rb', line 616

def disable_threading
  @thread_fix.stop if @thread_fix
  @thread_fix = nil
end

#execObject

Delete the underlying C++ instance after exec returns Otherwise, rb_gc_call_finalizer_at_exit() can delete stuff that Qt::Application still needs for its cleanup.



624
625
626
627
628
629
# File 'lib/Qt/qtruby4.rb', line 624

def exec
  method_missing(:exec)
  disable_threading()
  self.dispose
  Qt::Internal.application_terminated = true
end

#exit(*args) ⇒ Object



635
636
637
# File 'lib/Qt/qtruby4.rb', line 635

def exit(*args)
  method_missing(:exit, *args)
end

#type(*args) ⇒ Object



631
632
633
# File 'lib/Qt/qtruby4.rb', line 631

def type(*args)
  method_missing(:type, *args)
end