|
QtRuby is a binding of the application framework Qt for Ruby. Korundum is an additional set of bindings for KDE which extend QtRuby. QtRuby is cross-platform, as all the underlying technologies are platform agnostic. == QtRuby hello world == require 'Qt4' app = Qt::Application.new(ARGV) hello = Qt::PushButton.new('Hello World!') hello.resize(100, 30) hello.show app.exec The Korundum documentation〔(Development/Languages/Ruby - KDE TechBase )〕 proposes a more "rubyish" version of this program. 抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)』 ■ウィキペディアで「QtRuby」の詳細全文を読む スポンサード リンク
|