Tagged Questions
QtRuby is a cross-platform application framework Qt binding for Ruby.
5
votes
1answer
596 views
How can I get Qt4 running with ruby 1.9.2 on Windows 7?
Summary
I'm writing a Ruby 1.9.2 app using Qt4 for its GUI which I want to distribute on Linux, OS X and Windows. I have the app running fine on everything except my Windows 7 64-bit box.
There ...
4
votes
2answers
1k views
3
votes
1answer
378 views
Ruby, Qt and third party widgets
I'm learning Ruby and, for this, I'm writing an application in it. My background is in C++/Qt. So I've started writing a Ruby/Qt app.
But there's a few previously written widgets (C++) I would like ...
3
votes
3answers
2k views
Worker threads in Ruby
I am writing a simple memory game using ruby + qt (trying to get away from c++ for while...)
In order to allow a X second timeout to view two open pieces, I need either timers or do the work in a ...
2
votes
1answer
374 views
Packaging and distributing a QtRuby app as a gem? Or how?
I have finished developing a GUI desktop Ruby application that uses Qt through the qtbindings gem, and I need to release it with a few requirements:
The user doesn't have to build or compile ...
2
votes
2answers
1k views
Ruby: creating a simple application in Qt
I'm trying to create a simple application, written in Ruby via Qt. I designed a form (MainForm) in a Qt Designer and translated it via rbuic4 to the Ruby code representation. The pure untouched result ...
2
votes
2answers
1k views
Ruby's subclassing and Qt's signals/slots don't work together as expected
When trying to work with Qt's signal/slot mechanisms over more than one level of inheritance, I ran into a problem: When my class does not directly inherit from QObject, signals and slots don't seem ...
1
vote
1answer
346 views
QFileSystemModel — Detecting empty folder (with 'AllDirs' filter)?
I'm using Qt 4.6 within Ruby (via QtRuby) and am trying to make a generic Directory Selection Dialog which displays a small "loading" glyph whilst the file system is being queried and the Directory ...
1
vote
1answer
380 views
updating a QGraphicsTextItem on text change
I’ve been working with QGraphicsTextItems. I currently have the laid out in a scene, each depicting a physical page of text. Right now I’m overriding the keyReleaseEvent function to redistribute the ...
1
vote
3answers
221 views
How to paginate a QPlainTextEdit?
I've been using QPlainTextEdit for editing text in our application. Recently it was decided that we need to display the text in a paginated format instead of a consistent block of text. After lots of ...
1
vote
1answer
234 views
RubyQt Crashing on QTableWidget
I'm getting some weirdness with QtRuby when using a TableWidget. The table widget loads, but when you click on the elements in the row, the app segfaults and crashes.
require 'Qt4'
class ...
1
vote
4answers
466 views
is it good programming practice to put code statements in braces?
I have never seen this being done anywhere in all the source code i've read in my life. If it is considered bad programming practice, there has to be a reason for it which i fail to understand. Also, ...
0
votes
1answer
48 views
Qt4 QtRuby installer
I'm following this tutorial for QtRuby
--@ http://tom.paschenda.org/blog/?p=38
At one point I have to go on this site :
--@ ...
0
votes
0answers
100 views
Problem installing Qt Ruby
I am trying to install Qt Ruby, but am having problems building the
source code. I am running Ruby 1.9.2 on Linux Mint 11 and used these
steps to get it running:
...
0
votes
1answer
63 views
QtRuby with DRb or EventMachine
I would like to write an application in Ruby using Qt which will communicate over the network with other instances.
How can I integrate Qt's event loop with DRb or EventMachine?
EDIT:
I found the ...
0
votes
1answer
159 views
Problem when requiring 'Qt4' in Ruby 1.8.7
I have successfully installed:
Ruby 1.8.7-p334
Rubygems 1.7.2
rake 0.9.0
qtruby4 2.1.0 mswin32
Now the following block of code
require 'rubygems'
require 'Qt4'
gives me an error:
...
0
votes
1answer
87 views
Strange treeview behaviour: strikeout text only if bold
I need to show some treeview item text striked out text into a QT treeview from Ruby.
After some reading on QT documentation and much coding, I found that only when rendering font in bold, also the ...
0
votes
1answer
128 views
my own c++ qt library to be used in qtruby, qtpython etc
I'm starting an institute project. I'll try to create a "web-typograph", a tool that's to be used to correct texts (according to typographic rules of a language) before they're sent to the site. My ...
0
votes
3answers
5k views
How to access Postgresql using QT in Windows
I am developing an application using QtRuby and postgresql. I sucessfully developed and running sucessfully in Linux. Now i want to run the same application in windows. But i am failing to connect to ...
0
votes
3answers
348 views
QTextEditor returns quotes as question marks in QT Ruby
When I copy and paste from a Word document into a QT TextEditor, It seems to look fine. But when I try to access the text using toPlainText or toHTML, it returns the text with all of the quotes ...