Created
December 16, 2012 02:52
-
-
Save hanynowsky/4302692 to your computer and use it in GitHub Desktop.
Jambi-Sample
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package jambi; | |
import com.trolltech.qt.gui.*; | |
public class HellowWorld { | |
public static void main(String args[]) { | |
QApplication.initialize(args); | |
QPushButton hello = new QPushButton("Hello World!"); | |
hello.resize(120, 40); | |
hello.setWindowTitle("Hello World"); | |
hello.show(); | |
QApplication.execStatic(); | |
QApplication.shutdown(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment