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
0
votes
1 answer

QtJambi won't construct a QApplication - Scala

I am impatient enough not to like reading books or tutorials on the stuff i want to learn. That said, i almost always will get the toolchains ready and start firing code off with whatever crazy idea gets on my head. Scala piqued my interest today…
Machinarius
  • 3,637
  • 3
  • 30
  • 53
0
votes
1 answer

Qt Jambi and designer: resources

I am struggling figuring out how to add resources/icons properly to the Qt Designer with Jambi. When I simply add an icon and go for "Choose file", my .jui looks…
0
votes
0 answers

Possible Qt Bug. Size of layout does not seem consistent. Would like opinions on it

First of all, I'm developing an application with QtJambi. When I was using QStackedWidget I ran into this problem and could not find a suitable solution. So what I did was try to isolate the problem, which I did in the following code: public class…
0
votes
2 answers

Qt Jambi build failure (VS2010)

I've successfully built Qt 4.8.4 on Windows 7 and now I'm trying to build Qt Jambi against that version. When I run ant in the Qt Jambi source directory to kick off the build I get only part of the way and then I end up with the following cl -c…
schleg
  • 93
  • 2
  • 7
0
votes
1 answer

no any "plugin descriptor" founded in my maven project

I am wanting to create UI with qt-jambi, but i have a problem. i am using maven in eclipse, and create a maven project, and i downloaded and installed 3rd party qt-jambi jar files in my local repository from…
mehdi
  • 686
  • 2
  • 9
  • 21
0
votes
1 answer

running QT Jambi applicantion on Win64

I've been evaluating QT Jambi for an application I'm developing, and on the way I've read that QT Jambi faces some troubles at development time on Win64. However, I won't develop on Win64 so it doesn't matter for now, but what I really need to know…
0
votes
1 answer

Qt jambi 4.7.1 - QGraphicsItem return to its initial position on second drag

I use Qt jambi 4.7.1 for my project. I have made a abstract class named Component who extends QGraphicsRectItem. I've set my Component flags with the purpose to move it into a same QGraphicsScene. public abstract class Component extends…
0
votes
0 answers

QtJambi - Unicode QLineEdit?

Is it possible to set QLineEdits in QtJambi to show unicode text? I need to display unicode subscript characters in a QLineEdit, though just setting the text of the QLineEdit results in aesthetic error ( A strange line character; | ). I've read…
Anti Earth
  • 4,671
  • 13
  • 52
  • 83
0
votes
1 answer

Importing Qt Objects into Java - How?

I wish to use the Qt GUI framework in my java program. I've downloaded and installed the QJambi executable, which has made a lovely directory at C:\qtjambi-4.7.1. I can't for the life of me, figure out how to actually import the Qt API into my java…
Anti Earth
  • 4,671
  • 13
  • 52
  • 83
0
votes
1 answer

QT Jambi - QLCDNumber updated in real-time

In my university, we are working with interfaces, using QT Jambi (Java) with the Eclipse Integration. I would like to improve my design of my Elevator interface. The main problem is that I would like to update the QLCDNumber with the floor in…
Thorba
  • 181
  • 1
  • 11
-1
votes
2 answers

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. It is clear that UI updates can only be done on…
Björn Marschollek
  • 9,899
  • 9
  • 40
  • 66
-1
votes
1 answer

Qt Jambi Application doesn't work after exporting it in Eclipse

I have just started my first Qt Jambi application using Eclipse Klebr and now I want to release my application to runnable jar file. I Export the file like any Java application I want to release it but I get warning message. This operation repacks…
user7179690
  • 1,051
  • 3
  • 17
  • 40
1 2 3 4 5 6
7