summaryrefslogtreecommitdiffstats
path: root/knights/tabpage.h
diff options
context:
space:
mode:
Diffstat (limited to 'knights/tabpage.h')
-rw-r--r--knights/tabpage.h33
1 files changed, 17 insertions, 16 deletions
diff --git a/knights/tabpage.h b/knights/tabpage.h
index d5aeb28..ba1388c 100644
--- a/knights/tabpage.h
+++ b/knights/tabpage.h
@@ -18,46 +18,47 @@
#ifndef TABPAGE_H
#define TABPAGE_H
-#include <qframe.h>
-#include <qwidget.h>
-#include <qvbox.h>
-#include <qhbox.h>
-#include <qstring.h>
+#include <tqframe.h>
+#include <tqwidget.h>
+#include <tqvbox.h>
+#include <tqhbox.h>
+#include <tqstring.h>
#include "tabbox.h"
/**
*@author Troy Corbin Jr.
*/
class resource;
-class QToolButton;
+class TQToolButton;
class TabGrip;
-class TabPage : public QVBox
+class TabPage : public TQVBox
{
Q_OBJECT
+ TQ_OBJECT
public:
- TabPage( QWidget *parent, QWidget *child, resource *rsrc );
+ TabPage( TQWidget *tqparent, TQWidget *child, resource *rsrc );
~TabPage();
- void setCaption( const QString& );
- QWidget* getChild( void );
+ void setCaption( const TQString& );
+ TQWidget* getChild( void );
protected slots:
- void tabDragged( const QPoint&, const QPoint& );
+ void tabDragged( const TQPoint&, const TQPoint& );
signals:
void newParent( TabBox* );
void requestDestruction( void );
protected:
- TabBox* parentTabBox( void );
+ TabBox* tqparentTabBox( void );
private:
- QString myCaption;
- QHBox *actionBar;
+ TQString myCaption;
+ TQHBox *actionBar;
TabGrip *grip;
- QToolButton *closeButton;
+ TQToolButton *closeButton;
- QWidget *myChild;
+ TQWidget *myChild;
resource *myResource;
};