summaryrefslogtreecommitdiffstats
path: root/knights/knightstextview.h
diff options
context:
space:
mode:
Diffstat (limited to 'knights/knightstextview.h')
-rw-r--r--knights/knightstextview.h19
1 files changed, 10 insertions, 9 deletions
diff --git a/knights/knightstextview.h b/knights/knightstextview.h
index f76db25..4141bbf 100644
--- a/knights/knightstextview.h
+++ b/knights/knightstextview.h
@@ -18,8 +18,8 @@
#ifndef KNIGHTSTEXTVIEW_H
#define KNIGHTSTEXTVIEW_H
-#include <qwidget.h>
-#include <qtextbrowser.h>
+#include <tqwidget.h>
+#include <tqtextbrowser.h>
/**
*@author Troy Corbin Jr./Alexander Wels
@@ -28,25 +28,26 @@
class KPopupMenu;
class resource;
-class KnightsTextView : public QTextBrowser
+class KnightsTextView : public TQTextBrowser
{
Q_OBJECT
+ TQ_OBJECT
public:
- KnightsTextView(QWidget *parent, resource *Rsrc );
+ KnightsTextView(TQWidget *tqparent, resource *Rsrc );
~KnightsTextView();
- void pageMove( Qt::Key key=Key_PageUp );
+ void pageMove( TQt::Key key=Key_PageUp );
public slots:
- void display_menuView( const QPoint& );
+ void display_menuView( const TQPoint& );
void menuFunct( int );
- void displayLink(const QString& urlString);
+ void displayLink(const TQString& urlString);
void print( void );
signals:
- void rightButtonClicked( const QPoint& );
+ void rightButtonClicked( const TQPoint& );
protected:
- void viewportMousePressEvent( QMouseEvent *e );
+ void viewportMousePressEvent( TQMouseEvent *e );
resource *myResource;
KPopupMenu *menuView;
};