Questions tagged [qt-jambi]

Qt Jambi is a Java binding of the cross-platform application framework Qt. Qt Jambi is the Qt library made available to Java.

Background

Qt Jambi was first introduced on March, 2006. Since then it was maintained by Nokia. Official support for Qt Jambi by Nokia ended in March 2010, and the project is now maintained by an open source community.

More Information

Core Features

  1. Layout management
  2. Drag and drop
  3. Paint system
  4. Threading in Qt Jambi
  5. Qt Jambi supports Linux and other flavours of Unix, as well as Mac OS X and Microsoft Windows.

Qt Jambi hello world

package org.wikipedia.qt;

import com.trolltech.qt.gui.*;

public class HelloWorld {
    public static void main(String args[]) {
        QApplication.initialize(args);

        QPushButton hello = new QPushButton("Hello World!");
        hello.show();

        QApplication.exec();
    }
}

Qt Jambi Examples

Qt Jambi Examples from trolltech

Qt Jambi Documantation

See documantation by trolltech here

102 questions
31
votes
8 answers

Do you use Qt and why do you use it?

Pros. and cons? how long do you use it? What about jambi?
Serik
13
votes
3 answers

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.
Waseem
  • 11,741
  • 15
  • 41
  • 45
11
votes
2 answers

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 C-c C-c back into the REPL, and closing the…
MHOOO
  • 131
  • 5
8
votes
1 answer

What are the advantages of QAbstractItemModel over QStandardItemModel?

I want to store custom data using a model. For that , am a bit confused as which item model to choose for subclassing. I need some clarification as, which is the best model to subclassing ? And also i need the advantages of QAbstractItemModel over…
Dev
  • 127
  • 2
  • 8
7
votes
1 answer

Who developes language bindings for Qt?

Here you can see a list of third party language bindings for Qt like PySide, PyQt, QtJambi, QtRuby and PerlQt. I wanted to know who has developed these bindings? Are they all developed with different open source communities voluntarily? Are these…
Nejat
  • 31,784
  • 12
  • 106
  • 138
6
votes
1 answer

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.
tzador
  • 2,535
  • 4
  • 31
  • 37
5
votes
2 answers

Trouble installing QT Jambi on a Windows 64 bit system

I've been trying to use QT Jambi, but I couldn't manage to install it yet. First of all, this is my system: Windows 7 Home Premium 64 Bit Java 6 32 bit (I often use JDownloader which is not compatible with the 64 bit version of Java) MinGW C++…
Alex
  • 301
  • 5
  • 13
5
votes
2 answers

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 that was supposed to be released this month. I am…
levand
  • 8,440
  • 3
  • 41
  • 54
4
votes
1 answer

How to install Qt-Jambi in Eclipse in windows 7?

I am new in programming and I want to install Qt-Jambi in Eclipse in windows 7. Can you explain it to me with a step-be-step procedure? I have searched but I didn't find a easy explaining procedure or tutorial. Thanks in advance
pink
  • 41
  • 1
  • 3
4
votes
2 answers

Is Qt Jambi development still possible?

I've mostly had GUI development experienced with Qt and C++. Now I'm planning to do some GUI development in Java and had my eyes on Qt Jambi. However, I can't figure out how to get started. There is relatively new binaries…
Adelost
  • 2,343
  • 2
  • 23
  • 28
3
votes
1 answer

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. My main goal is to create a selector dialog as…
Andrey Atapin
  • 7,745
  • 3
  • 28
  • 34
3
votes
1 answer

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 4.7.0 on the download page. Now when I run my Qt…
foowtf
  • 399
  • 1
  • 9
3
votes
2 answers

When executing JAR, get ExceptionInInitializerError: version.properties not found

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 itself). I use 3 library in my project: derby.jar…
Alex
  • 301
  • 5
  • 13
3
votes
2 answers

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. Right now, I am using QAbstractItemView to color…
Tiffany
  • 45
  • 1
  • 6
3
votes
1 answer

Connect QPushButton Jambi

I'm pretty new to Java programming. I wrote the application listed below, but I can't connect the button to my function. Any idea what I'm doing wrong? package com.teat; import com.trolltech.qt.gui.*; public class Application { public static…
Bear
  • 550
  • 9
  • 25
1
2 3 4 5 6 7