Qt4-QtRuby installer for Microsoft Windows

(Difference between revisions)
Jump to: navigation, search
m (Testing)
m
Line 21: Line 21:
 
The installer '''does not provide [http://kde.org/ KDE4] bindings''' (korundum4).
 
The installer '''does not provide [http://kde.org/ KDE4] bindings''' (korundum4).
  
The source code of the installer is currently included in the [http://rubyforge.org/projects/hornetseye/ HornetsEye] package. The
+
The source code of the installer is currently included in the [http://rubyforge.org/projects/hornetseye/ HornetsEye] package (see [http://bazaar.launchpad.net/~wedesoft/hornetseye/trunk/files/head:/nsis/ Bazaar repository on Launchpad]). The installer was developed using [[Image:Nsis.gif|30px]] [http://nsis.sourceforge.net/ NSIS].
installer was developed using [[Image:Nsis.gif|30px]] [http://nsis.sourceforge.net/ NSIS].
+
  
 
Please [[User:Engjw|contact me]] if you encounter problems using the installer.
 
Please [[User:Engjw|contact me]] if you encounter problems using the installer.

Revision as of 22:59, 8 June 2011

Developing GUI applications with the Ruby programming language
Example of an application developed using Ruby and Qt4-QtRuby (shown running under GNU/Linux)

This is an installer for installing Qt4-QtRuby (including Ruby user interface compiler and resource compiler) under Microsoft Windows. Qt4-QtRuby (developed by Richard Dale and others) is a very useful extension allowing you to use Qt4.png Qt4 from within the Ruby.png Ruby programming language (under GNU/Linux, Microsoft Windows, and MacOS). Note that there is a Microsoft Windows32 Gem for installing Qt4-QtRuby on the Korundum project page. You don't need this installer if the Gem works for you.

The new installer (as of January 28th 2009) now requires Qt-4.3.4 Open Source Edition (mirror) and Ruby 1.8.6-25 (mirror) for Microsoft Windows to be installed first. Make sure you are using exactly this versions of Ruby and Qt4, because otherwise the Qt4-QtRuby binaries will be incompatible.

The installer does not provide KDE4 bindings (korundum4).

The source code of the installer is currently included in the HornetsEye package (see Bazaar repository on Launchpad). The installer was developed using Nsis.gif NSIS.

Please contact me if you encounter problems using the installer.

Contents

Installation

Download

You can download the Qt4-QtRuby installer for Microsoft Windows here: qtruby4installer.exe

Testing

Launch irb (interactive ruby bash) on the command line and type in the following commands (no need to type in the lines preceeded with #). By the time you have entered app.exec you should see a small window with a button opening. Clicking the button should close the window.

require 'Qt4'
# true
app = Qt::Application.new ARGV
# #<Qt::Application:0xb7ad3394 objectName="irb">
button = Qt::PushButton.new '&Close Me'
# #<Qt::PushButton:0xb7acf668 objectName="", x=0, y=0, width=640, height=480>
Qt::Object.connect button, SIGNAL('clicked()'), button, SLOT('close()')
# true
button.show
# nil
app.exec
# true
quit

The installer also installs rbuic4 (Ruby user interface compiler) and rbrcc (Ruby resource compiler). These two tools are the Ruby equivalents of uic4 and rcc. I.e. rbuic4 and rbrcc are used to generate Ruby code from *.ui files (user interface files) created with Qt-designer. Note that you need to recompile all your user-interface- and resource-files whenever you upgrade to a new version of Qt.

Newer Versions of Qt4-QtRuby

I am aware of the fact that Qt-4.3 is not the most recent version of Qt4 any more. I also know that the most recent version of Ruby is 1.9. Unfortunately I currently don't have time to build an up-to-date installer.

See Also

External Links

Bookmark and Share

Personal tools
Namespaces
Variants
Actions
Navigation
Toolbox