tags:

views:

149

answers:

1

How to create a Qt GUI applications with the ability to access it from the ruby script.

Example:

require 'myQt'
myapp=myQt.new
myapp.startQtGuiApp
myapp.setValue('TextField1',45)
value=myapp.getValue('TextField2')
A: 

I assume you're looking for ruby-qt bindings? There are a few links to tutorials there, as well.

Teoulas