Tagged Questions

8
votes
2answers
911 views

How can I use the Clojure REPL together with Qt Jambi?

I have not found a solution to use the Clojure REPL with Qt on the web. Basically the problem is that the REPL hangs as soon as you call QApplication/exec in order to get the UI to display. You cannot ...
7
votes
3answers
3k views

Should I use Qt Jambi in Java?

Is it a good idea for me to use Qt Jambi in Java as a toolkit? I see that Qt Jambi is hard to learn, and Swing is easier than Qt Jambi, but I think that Qt Jambi is more powerful.
5
votes
8answers
4k views

Do you use Qt and why do you use it? [closed]

Pros. and cons? how long do you use it? What about jambi?
3
votes
1answer
881 views

Is QT Jambi dead?

I know they announced in February that it was going to transition to a community-developed model over the next year... but right now, I can't find it on their website, at all, let alone version 4.5 ...
2
votes
1answer
194 views

Change Horizontal Header Background Color of QCalendarWidget

I am currently using Eclipse 3.5.2 and Qt Jambi 4.7.2 in Ubuntu 11.04 Natty Narwhal I have a class that currently extends QCalendarWidget. I am trying to use style sheets to style my calendar widget. ...
2
votes
1answer
483 views

How to get QIODevice instance for stdin, stdout, stderr text streams in QtJambi?

I would like to get QIODevice that represents standard IO streams (stdin, stdout, stderr) in QtJambi, so that i can get notified whenever a new line can be read or written.
1
vote
1answer
68 views

qt - How do I make a splitter with a set of buttons on it?

Did anyone face a problem of putting buttons (or any other widgets) on the top of a splitter handle? I've tried to get the handle, set its layout and put the controls there, but I got some weird look. ...
1
vote
1answer
52 views

QPixmap hover effect?

I need to add a "hover effect" to some QPixmaps added to a QGraphicsScene. I would like to "highlight" my QPixmap by filling it with a halfway transparent white color when the user hovers over it. If ...
1
vote
1answer
252 views

Qt Jambi version compatibility

I am intending to use Qt Jambi to write Qt GUIs in Java. I have the latest Qt libraries installed on my Linux OS which is currently version 4.7.4. Qt Jambi is, however, only available as version ...
1
vote
1answer
73 views

Qt: how do I highlight duplicated items in QListWidget? (qtjambi)

I need to implement a mechanism of highlighting duplicated values. Values are edited through delegate depending on the value type (string - line edit, long and big decimal - spin boxes). Currently, I ...
1
vote
1answer
216 views

Qt jambi Eclipse integration problem

I've just install the libqtjambi 4.7.2 by PPA in Ubuntu Natty 11.04. When I turned into integration with Eclipse it asked me to give the jambi installation path. But with apt-get I have only ...
1
vote
1answer
145 views

QtWebkit multithreading

I am working on a project to render text as images using QT-Jambi. The webkit renders the HTML and generates the image. While running the code with a single thread there are no issue but when I run ...
1
vote
2answers
332 views

How to convert .ui file to .jui file?

Does anybody know how to convert a .ui file generated by Qt creator into a .jui file? The documentation says use Qt Generator, but I can't find how to download Qt Generator. Any help would be greatly ...
1
vote
2answers
135 views

Is it possible to use Jambi to make fully native feeling GUIs?

Applications made with Qt in C++ look like native apps on Windows, Linux, and Mac OS X. I'm trying to accomplish the same thing with Jambi. Is this possible? I don't think there are too many apps ...
1
vote
1answer
643 views

Qt Jambi: Accessing the content of QNetworkReply

I'm having trouble accessing the content of QNetworkReply objects. Content appears to be empty or zero. According to the docs (translating from c++ to java) I think I've got this set up correctly, but ...
1
vote
1answer
285 views

QT Jambi HTML5 Video

Is it possible to use the HTML5 <video> element within a QT Jambi QWebView? I have set up a basic app, but it doesn't display <video> elements.
1
vote
2answers
847 views

Qt Jambi: QAbstractListModel not displaying in QListView

I've created an implementation of the QAbstractListModel class in Qt Jambi 4.4 and am finding that using the model with a QListView results in nothing being displayed, however using the model with a ...
0
votes
1answer
30 views

QtWebKit - Rendering (gifs) multiple time fails

I tried to implement a small java application to render html using webkit. The app is used to render plain html input but also content addressed via an url. My problem is, that the app runs fine ...
0
votes
1answer
47 views

QGraphicsScene grid view of pixmaps

I would like to implement a "grid view" of pixmaps. This is how I would like the UI to behave: You click a button and it shows a QGraphicsView with a QGraphicsScene (done) and then I would like to ...
0
votes
1answer
99 views

Using Maven with QT Jambi

I'm just getting started with QT Jambi and I have some problems getting the Maven-plugin to work. I get the following error message: [ERROR] Failed to execute goal ...
0
votes
2answers
165 views

QT Jambi: Update UI from other thread

I am currently working on a Java project using Qt Jambi for the UI. I am doing some calculations in a thread different from the UI thread and I would like to update the UI to indicate the progress. ...
0
votes
1answer
81 views

findChild() in qt jambi is not working for me

i'm looking for a code snippet that uses the findChild() function in qt jambi i've looked on google but it seems that qt jambi is not well documented any way here is what i found in the documentation ...
0
votes
1answer
564 views

Qt Jambi application and different operating systems

I'm starting to develop my new study project. Because I want and need to run it on different platforms (Linux and Windows) I decide to use Java. Also, because I want to learn something new - I have ...
0
votes
1answer
126 views

Qt Jambi and threads

I'm trying to create a Qt widget in C++ as a child of a Jambi widget. Passing the parent's native pointer into a JNI method seems to be the straightforward approach, but Qt complains about creating ...
0
votes
1answer
486 views

Problem Deploying QT Jambi with web start on Mac OS X

I have a Java application, built with eclipse, that uses QTJambi. Running the application from the command line works perfectly. java -d32 -XstartOnFirstThread -jar MyApplication.jar someArg ...
0
votes
1answer
469 views

qtjambi - QApplication.initialize outside of main method

I want to use qt jambi to make screenshots. I use the integrated webkit browser and it works like a charm. The problem is: How can I initialize QApplication.initialize(args); outside of the main ...
0
votes
1answer
441 views

QTJambi - QNetworkManager from thread doesn't emit signals

I am new to QT(jambi). I have a very simple QTJambi (4.5.2) app. I am trying to figure out why this will not work (DoResponseReady never called) within a thread. Switch the static variable between ...
0
votes
1answer
640 views

Qt Jambi (Qt4Dotnet): distinguishing signal emitters in a slot

I'm newb to Qt and got stuck in a signal/slot mechanism. I have a toolbar with a number of tool buttons, each associated with some widget. The task is to show appropriate widget when tool button is ...
0
votes
4answers
3k views

How do I make controls autosizing in Qt designer?

I'm using Qt Jambi 4.4 for a project I'm working on (and designing the windows in the Qt Designer eclipse plugin). One of the windows I'd like to use is a preview window which is basically just a ...