summaryrefslogtreecommitdiffstats
path: root/src/part/videoWindow.h
diff options
context:
space:
mode:
authorgregory guy <[email protected]>2020-06-13 16:09:24 +0200
committergregory guy <[email protected]>2020-06-13 16:09:24 +0200
commit2c9bc9b806f533df7b8f5349467d0f4be95314a4 (patch)
tree15f82ae94dd430374f3d939958912c4fb2855326 /src/part/videoWindow.h
parent38eaf7209a322a622e1b898eaa5477568ca9c6b6 (diff)
downloadcodeine-2c9bc9b806f533df7b8f5349467d0f4be95314a4.tar.gz
codeine-2c9bc9b806f533df7b8f5349467d0f4be95314a4.zip
Conversion qt3 -> tqt3
Signed-off-by: gregory guy <[email protected]>
Diffstat (limited to 'src/part/videoWindow.h')
-rw-r--r--src/part/videoWindow.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/part/videoWindow.h b/src/part/videoWindow.h
index 7db72ab..0d0e4d5 100644
--- a/src/part/videoWindow.h
+++ b/src/part/videoWindow.h
@@ -5,8 +5,8 @@
#define CODEINE_VIDEO_WINDOW_H
#include "../codeine.h"
-#include <qtimer.h>
-#include <qwidget.h>
+#include <ntqtimer.h>
+#include <ntqwidget.h>
#include <kurl.h>
typedef struct xine_s xine_t;
@@ -20,7 +20,7 @@ typedef struct xine_osd_s xine_osd_t;
namespace Codeine
{
- class VideoWindow : public QWidget
+ class VideoWindow : public TQWidget
{
Q_OBJECT
@@ -30,7 +30,7 @@ namespace Codeine
friend VideoWindow* const videoWindow();
public:
- VideoWindow( QWidget *parent, const char *name );
+ VideoWindow( TQWidget *parent, const char *name );
~VideoWindow();
bool init();
@@ -41,8 +41,8 @@ namespace Codeine
int position();
signals:
- void statusMessage( const QString& );
- void titleChanged( const QString& );
+ void statusMessage( const TQString& );
+ void titleChanged( const TQString& );
private:
/// @see xineEngine.cpp
@@ -52,9 +52,9 @@ namespace Codeine
void showErrorMessage(); //TODO don't use this, just show delayed message
- virtual void customEvent( QCustomEvent* );
+ virtual void customEvent( TQCustomEvent* );
virtual bool x11Event( XEvent* );
- virtual bool event( QEvent* );
+ virtual bool event( TQEvent* );
xine_osd_t *m_osd;
xine_stream_t *m_stream;
@@ -72,7 +72,7 @@ namespace Codeine
static void frameOutputCallBack( void*, int, int, double, int*, int*, int*, int*, double*, int*, int* );
double m_displayRatio;
- QTimer m_timer;
+ TQTimer m_timer;
public slots:
void togglePlay();