Qt4-QtRuby installer for Microsoft Windows
m (→External Links) |
m |
||
(16 intermediate revisions by one user not shown) | |||
Line 1: | Line 1: | ||
− | [[Image:Rbuic.png | + | {|align="right" |
− | + | |- | |
+ | |[[Image:Rbuic.png|320px|thumb|Developing GUI applications with the Ruby programming language]] | ||
+ | |- | ||
+ | |[[Image:Vision_GUI4.png|320px|thumb|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 | This is an '''installer''' for installing '''Qt4-QtRuby''' (including Ruby user interface compiler and resource compiler) under | ||
'''Microsoft Windows'''. [http://rubyforge.org/projects/korundum/ Qt4-QtRuby] (developed by Richard Dale and | '''Microsoft Windows'''. [http://rubyforge.org/projects/korundum/ Qt4-QtRuby] (developed by Richard Dale and | ||
others) is a very useful extension allowing you to use [[Image:Qt4.png|30px]] [http://trolltech.com/products/qt/ Qt4] from within the | others) is a very useful extension allowing you to use [[Image:Qt4.png|30px]] [http://trolltech.com/products/qt/ Qt4] from within the | ||
− | [[Image:Ruby.png|30px]] [http://www.ruby-lang.org/ Ruby] programming language. | + | [[Image:Ruby.png|30px]] [http://www.ruby-lang.org/ Ruby] programming language (under GNU/Linux, Microsoft Windows, and MacOS). |
Note that there is a Microsoft Windows32 Gem for installing Qt4-QtRuby on the [http://rubyforge.org/projects/korundum/ Korundum] | Note that there is a Microsoft Windows32 Gem for installing Qt4-QtRuby on the [http://rubyforge.org/projects/korundum/ Korundum] | ||
project page. You don't need this installer if the Gem works for you. | project page. You don't need this installer if the Gem works for you. | ||
− | The new installer | + | The new installer (as of January 28th 2009) now requires [http://ftp.ntua.gr/pub/X11/Qt/qt/source/qt-win-opensource-4.3.4-mingw.exe Qt-4.3.4 Open Source Edition] |
([http://vision.eng.shu.ac.uk/jan/hornetseye-system/qt-win-opensource-4.3.4-mingw.exe mirror]) and | ([http://vision.eng.shu.ac.uk/jan/hornetseye-system/qt-win-opensource-4.3.4-mingw.exe mirror]) and | ||
[http://rubyforge.org/frs/download.php/18566/ruby186-25.exe Ruby 1.8.6-25] | [http://rubyforge.org/frs/download.php/18566/ruby186-25.exe Ruby 1.8.6-25] | ||
Line 14: | Line 19: | ||
'''Make sure you are using exactly this versions of Ruby and Qt4, because otherwise the Qt4-QtRuby binaries will be incompatible.''' | '''Make sure you are using exactly this versions of Ruby and Qt4, because otherwise the Qt4-QtRuby binaries will be incompatible.''' | ||
− | The source code of the installer is currently included in the [http://rubyforge.org/projects/hornetseye/ HornetsEye] package. The | + | The installer '''does not provide [http://kde.org/ KDE4] bindings''' (korundum4). |
− | installer was developed using [[Image:Nsis.gif|30px]] [http://nsis.sourceforge.net/ NSIS]. | + | |
+ | 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]. The main file is '''qtruby4.nsi'''. | ||
Please [[User:Engjw|contact me]] if you encounter problems using the installer. | Please [[User:Engjw|contact me]] if you encounter problems using the installer. | ||
Line 25: | Line 31: | ||
==Testing== | ==Testing== | ||
− | Launch '''irb''' (interactive ruby bash) on the command line and type in the following commands. 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. | + | 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' | require 'Qt4' | ||
# true | # true | ||
Line 32: | Line 38: | ||
button = Qt::PushButton.new '&Close Me' | button = Qt::PushButton.new '&Close Me' | ||
# #<Qt::PushButton:0xb7acf668 objectName="", x=0, y=0, width=640, height=480> | # #<Qt::PushButton:0xb7acf668 objectName="", x=0, y=0, width=640, height=480> | ||
− | Qt::Object.connect button, SIGNAL('clicked()'), button, SLOT( 'close()' ) | + | Qt::Object.connect button, SIGNAL('clicked()'), button, SLOT('close()') |
# true | # true | ||
button.show | button.show | ||
Line 42: | Line 48: | ||
The installer also installs '''rbuic4''' (Ruby user interface compiler) and '''rbrcc''' (Ruby resource compiler). These two tools | 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 | 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 [http://doc.trolltech.com/4.3/designer-manual.html Qt-designer]. | + | (user interface files) created with [http://doc.trolltech.com/4.3/designer-manual.html 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= | =Newer Versions of Qt4-QtRuby= | ||
− | Qt-4.3 is not the most recent version of Qt4 any more. | + | 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= | =See Also= | ||
Line 64: | Line 67: | ||
* [http://tom.paschenda.org/blog/?p=38 Blog post: Getting Qt and Ruby(=QtRuby) running on Windows XP] | * [http://tom.paschenda.org/blog/?p=38 Blog post: Getting Qt and Ruby(=QtRuby) running on Windows XP] | ||
* [http://blog.paulbetts.org/index.php/2007/07/22/cross-platform-ui-with-qt4-and-ruby-maclinux-howto/ Blog post: Cross-platform UI with Qt4 and Ruby - Mac/Linux HOWTO] | * [http://blog.paulbetts.org/index.php/2007/07/22/cross-platform-ui-with-qt4-and-ruby-maclinux-howto/ Blog post: Cross-platform UI with Qt4 and Ruby - Mac/Linux HOWTO] | ||
+ | |||
+ | {{Addthis}} | ||
[[Category:Projects]] | [[Category:Projects]] | ||
[[Category:Nanorobotics]] | [[Category:Nanorobotics]] |
Latest revision as of 22:00, 8 June 2011
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 from within the 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. The main file is qtruby4.nsi.
Please contact me if you encounter problems using the installer.
Contents |
[edit] Installation
[edit] Download
You can download the Qt4-QtRuby installer for Microsoft Windows here: qtruby4installer.exe
[edit] 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.
[edit] 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.