diff options
Diffstat (limited to 'qtjava/javalib/examples/qfd')
-rw-r--r-- | qtjava/javalib/examples/qfd/FontDisplayer.java | 66 | ||||
-rw-r--r-- | qtjava/javalib/examples/qfd/Main.java | 8 |
2 files changed, 37 insertions, 37 deletions
diff --git a/qtjava/javalib/examples/qfd/FontDisplayer.java b/qtjava/javalib/examples/qfd/FontDisplayer.java index 26f658b1..689dbb44 100644 --- a/qtjava/javalib/examples/qfd/FontDisplayer.java +++ b/qtjava/javalib/examples/qfd/FontDisplayer.java @@ -13,52 +13,52 @@ import java.math.*; -class FontDisplayer extends QMainWindow { +class FontDisplayer extends TQMainWindow { -class FontRowTable extends QFrame { -private QFont tablefont; +class FontRowTable extends TQFrame { +private TQFont tablefont; private int row; -FontRowTable( QWidget parent ) +FontRowTable( TQWidget parent ) { this(parent, null); } -FontRowTable( QWidget parent, String name ) +FontRowTable( TQWidget parent, String name ) { super(parent,name); setBackgroundMode(PaletteBase); setFrameStyle(Panel|Sunken); setMargin(8); setRow(0); - tablefont = QApplication.font(); + tablefont = TQApplication.font(); } -public QSize sizeHint() +public TQSize sizeHint() { - return new QSize( 16*cellSize().width()+2*(margin()+frameWidth()), + return new TQSize( 16*cellSize().width()+2*(margin()+frameWidth()), 16*cellSize().height()+2*(margin()+frameWidth()) ); } -QSize cellSize() +TTQSize cellSize() { - QFontMetrics fm = fontMetrics(); - return new QSize( fm.maxWidth(), fm.lineSpacing()+1 ); + TQFontMetrics fm = fontMetrics(); + return new TQSize( fm.maxWidth(), fm.lineSpacing()+1 ); } -protected void paintEvent( QPaintEvent e ) +protected void paintEvent( TQPaintEvent e ) { super.paintEvent(e); System.out.println("In paintEvent"); - QPainter p = new QPainter(this); + TQPainter p = new TQPainter(this); p.setClipRegion(e.region()); - QRect r = e.rect(); - QFontMetrics fm = fontMetrics(); + TQRect r = e.rect(); + TQFontMetrics fm = fontMetrics(); int ml = frameWidth()+margin() + 1 + (-fm.minLeftBearing() > 0 ? -fm.minLeftBearing() : 0); int mt = frameWidth()+margin(); - QSize cell = new QSize((width()-15-ml)/16,(height()-15-mt)/16); + TQSize cell = new TQSize((width()-15-ml)/16,(height()-15-mt)/16); if ( cell.width() == 0 || cell.height() == 0 ) return; @@ -70,11 +70,11 @@ System.out.println("In paintEvent"); int h = fm.height(); - QColor body = new QColor(255,255,192); - QColor negative = new QColor(255,192,192); - QColor positive = new QColor(192,192,255); - QColor rnegative = new QColor(255,128,128); - QColor rpositive = new QColor(128,128,255); + TQColor body = new TQColor(255,255,192); + TQColor negative = new TQColor(255,192,192); + TQColor positive = new TQColor(192,192,255); + TQColor rnegative = new TQColor(255,128,128); + TQColor rpositive = new TQColor(128,128,255); for (int j = minj; j<=maxj; j++) { for (int i = mini; i<=maxi; i++) { @@ -92,20 +92,20 @@ System.out.println("In paintEvent"); x += ml; y += mt+h; - p.fillRect(x,y,w,-h,new QBrush(body)); + p.fillRect(x,y,w,-h,new TQBrush(body)); if ( w != 0) { if ( lb != 0 ) { p.fillRect(x+(lb>0?0:lb), y-h/2, Math.abs(lb),-h/2, - new QBrush(lb < 0 ? negative : positive)); + new TQBrush(lb < 0 ? negative : positive)); } if ( rb != 0) { p.fillRect(x+w-(rb>0?rb:0),y+2, Math.abs(rb),-h/2, - new QBrush(rb < 0 ? rnegative : rpositive)); + new TQBrush(rb < 0 ? rnegative : rpositive)); } } String s = ""; s += ch; - p.setPen(new QPen(Qt.black())); + p.setPen(new TQPen(Qt.black())); p.drawText(x,y,s); } } @@ -118,7 +118,7 @@ void setRow(int r) { row = r; - QFontMetrics fm = fontMetrics(); + TQFontMetrics fm = fontMetrics(); String str = "mLB=" + fm.minLeftBearing() + " mRB=" + fm.minRightBearing() + " mW=" + fm.maxWidth(); @@ -130,8 +130,8 @@ void setRow(int r) void chooseFont() { boolean[] ok = { true }; - QFont oldfont = tablefont; - tablefont = QFontDialog.getFont(ok, oldfont, this); + TQFont oldfont = tablefont; + tablefont = TQFontDialog.getFont(ok, oldfont, this); if (ok[0]) setFont(tablefont); @@ -147,15 +147,15 @@ FontDisplayer( ) this(null, null); } -FontDisplayer( QWidget parent, String name ) +FontDisplayer( TQWidget parent, String name ) { super(parent,name); FontRowTable table = new FontRowTable(this); - QToolBar controls = new QToolBar(this); - new QLabel(tr("Row:"), controls); - QSpinBox row = new QSpinBox(0,255,1,controls); + TQToolBar controls = new TQToolBar(this); + new TQLabel(tr("Row:"), controls); + TQSpinBox row = new TQSpinBox(0,255,1,controls); controls.addSeparator(); - QPushButton fontbutton = new QPushButton(tr("Font..."), controls); + TQPushButton fontbutton = new TQPushButton(tr("Font..."), controls); connect(row,SIGNAL("valueChanged(int)"),table,SLOT("setRow(int)")); connect(fontbutton, SIGNAL("clicked()"), table, SLOT("chooseFont()")); diff --git a/qtjava/javalib/examples/qfd/Main.java b/qtjava/javalib/examples/qfd/Main.java index d25f2389..301c7068 100644 --- a/qtjava/javalib/examples/qfd/Main.java +++ b/qtjava/javalib/examples/qfd/Main.java @@ -15,16 +15,16 @@ class Main { public static void main(String[] args) { // Use an interesting font - QApplication.setFont(new QFont("unifont",16)); + TQApplication.setFont(new TQFont("unifont",16)); - QApplication app = new QApplication(args); + TQApplication app = new TQApplication(args); FontDisplayer m = new FontDisplayer(); - QSize sh = m.centralWidget().sizeHint(); + TQSize sh = m.centralWidget().sizeHint(); m.resize(sh.width(), sh.height()+3*m.statusBar().height()); app.setMainWidget(m); - m.setCaption("Qt Example - QFD"); + m.setCaption("Qt Example - TQFD"); m.show(); app.exec(); |