Tagged Questions

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.
3
votes
2answers
166 views

Java: can't understand error when executing .jar

I've been writing a small project in Eclipse which runs perfectly within the IDE. Then I've build a runnable .jar file through Eclipse (which should include every dependency library inside the jar ...
3
votes
2answers
488 views

How to mix C++ Qt objects and Qt Jambi objects

I'm trying to combine some existing Qt code written in C++ with some code written in Java using Qt Jambi, but I'm not quite sure how to do it. I'm basically trying to acieve two things: Pass a ...
3
votes
1answer
903 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
279 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 ...
2
votes
1answer
543 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.
2
votes
2answers
540 views

Qt Jambi vs JOGL for java OpenGL development?

I'm planning on writing a simple application in Java which has a basic UI with a section of OpenGL graphics. In addition to this some kind of network access is required. Which one of these libraries ...
1
vote
0answers
43 views

Stuck at converting/implementing Qt (.ui) files to Qtjambi(.jui) files

Edit 01.02.2012: FWIW: 4.7.0 linux packages are broken AFAIK, they can be fixed or 4.6 packages used instead... No need to use custom Qt for Jambi – Smar 2 days ago Thanks ...
1
vote
1answer
61 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
90 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
231 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
170 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
139 views

Change QCheckBox Style in Qt Jambi

I am currently using Eclipse 3.5.2 and Qt Jambi 4.7.2 in Ubuntu 11.04 Natty Narwhal I am trying to use stylesheets to customize my QCheckBox. I have found examples for C++ but I cannot find ...
1
vote
2answers
356 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
136 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
272 views

How to export my QtJambi project to .JAR file within Eclipse?

i am using Eclipse and i have a QtJambi project which i would like to export in a .JAR file. I have tryed several times it never worked. It worked for me on a Swing project, but with a QtJambi ...
1
vote
2answers
857 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
100 views

NullPointerException from java.lang.J9VMInternals

I'm trying to run a slightly modified version of this Qt Jambi Hello World example but I encounter a NullPointerException tracable to my very first line of code. The only way this would be possible ...
0
votes
1answer
59 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
2answers
151 views

Multiple runtime exceptions in first QT Jambi application?

Hmmmm..... this is my first QT Jambi application and pretty much just an attempt to bring up a window. This is the terminal command I've used: java -XstartOnFirstThread -cp ...
0
votes
2answers
191 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
85 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
583 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
136 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
526 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
2answers
284 views

Is there a free Qt Jambi GUI Designer out there?

I am using Eclipse.
0
votes
1answer
478 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
257 views

Using QT Jambi to make screenshots

I am using QT Jambi (java) to make screenshots of a browser window. My main method starts the framework like this: QApplication.initialize(new String[1]); ScreenshotMain widget = new ...
0
votes
2answers
293 views

Is there a Qt Jambi fork?

In March or April 2009 Qt Jambi was made open source and then the commercial project was kicked. I'd really like to use Qt Jambi but can't do that if the code isn't maintained any longer. Is there a ...
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 ...