summaryrefslogtreecommitdiffstats
path: root/qtjava/javalib/tutorial/t12/Tut12.java
diff options
context:
space:
mode:
Diffstat (limited to 'qtjava/javalib/tutorial/t12/Tut12.java')
-rw-r--r--qtjava/javalib/tutorial/t12/Tut12.java20
1 files changed, 10 insertions, 10 deletions
diff --git a/qtjava/javalib/tutorial/t12/Tut12.java b/qtjava/javalib/tutorial/t12/Tut12.java
index eb0dc917..4bf347fd 100644
--- a/qtjava/javalib/tutorial/t12/Tut12.java
+++ b/qtjava/javalib/tutorial/t12/Tut12.java
@@ -1,9 +1,9 @@
import org.kde.qt.*;
-public class Tut12 extends QWidget {
+public class Tut12 extends TQWidget {
public Tut12() {
- 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 Tut12 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 Tut12 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);
Tut12 w = new Tut12();
w.setGeometry( 100, 100, 500, 355 );