diff options
author | Timothy Pearson <[email protected]> | 2011-12-05 15:55:57 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-12-05 15:55:57 -0600 |
commit | 9ba04742771370f59740e32e11c5f3a1e6a1b70a (patch) | |
tree | c81c34dae2b3b1ea73801bf18a960265dc4207f7 /qtjava/javalib/tutorial/t11/Tut11.java | |
parent | 1a96c45b22d01378202d9dc7ed9c47acd30f966e (diff) | |
download | tdebindings-9ba04742771370f59740e32e11c5f3a1e6a1b70a.tar.gz tdebindings-9ba04742771370f59740e32e11c5f3a1e6a1b70a.zip |
Initial TQt conversion
Diffstat (limited to 'qtjava/javalib/tutorial/t11/Tut11.java')
-rw-r--r-- | qtjava/javalib/tutorial/t11/Tut11.java | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/qtjava/javalib/tutorial/t11/Tut11.java b/qtjava/javalib/tutorial/t11/Tut11.java index b64fcdbe..854a5b0f 100644 --- a/qtjava/javalib/tutorial/t11/Tut11.java +++ b/qtjava/javalib/tutorial/t11/Tut11.java @@ -1,9 +1,9 @@ import org.kde.qt.*; -public class Tut11 extends QWidget { +public class Tut11 extends TQWidget { public Tut11() { - QPushButton quit = new QPushButton("&Quit", this, "quit"); - quit.setFont(new QFont("Times", 18, QFont.Bold, false)); + TQPushButton quit = new TQPushButton("&Quit", this, "quit"); + quit.setFont(new TQFont("Times", 18, TQFont.Bold, false)); connect(quit, SIGNAL("clicked()"), qApp(), SLOT("quit()")); @@ -26,22 +26,22 @@ public class Tut11 extends QWidget { force, SLOT("setValue(int)")); - QPushButton shoot = new QPushButton("&Shoot", this, "shoot"); - shoot.setFont(new QFont("Times", 18, QFont.Bold, false)); + TQPushButton shoot = new TQPushButton("&Shoot", this, "shoot"); + shoot.setFont(new TQFont("Times", 18, TQFont.Bold, false)); connect(shoot, SIGNAL("clicked()"), cannonField, SLOT("shoot()")); - QGridLayout grid = new QGridLayout(this, 2, 2, 10, -1, null); + TQGridLayout grid = new TQGridLayout(this, 2, 2, 10, -1, null); grid.addWidget(quit, 0, 0); grid.addWidget(cannonField, 1, 1); grid.setColStretch(1, 10); - QVBoxLayout leftBox = new QVBoxLayout(); + TQVBoxLayout leftBox = new TQVBoxLayout(); grid.addLayout(leftBox, 1, 0); leftBox.addWidget(angle); leftBox.addWidget(force); - QHBoxLayout topBox = new QHBoxLayout(); + TQHBoxLayout topBox = new TQHBoxLayout(); grid.addLayout(topBox, 0, 1); topBox.addWidget(shoot); topBox.addStretch(1); @@ -52,8 +52,8 @@ public class Tut11 extends QWidget { } public static void main(String[] args) { - QApplication.setColorSpec(QApplication.CustomColor); - QApplication a = new QApplication(args); + TQApplication.setColorSpec(TQApplication.CustomColor); + TQApplication a = new TQApplication(args); Tut11 w = new Tut11(); w.setGeometry( 100, 100, 500, 355 ); |