summaryrefslogtreecommitdiffstats
path: root/kopete/libkopete/avdevice/qvideostream.h
diff options
context:
space:
mode:
Diffstat (limited to 'kopete/libkopete/avdevice/qvideostream.h')
-rw-r--r--kopete/libkopete/avdevice/qvideostream.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/kopete/libkopete/avdevice/qvideostream.h b/kopete/libkopete/avdevice/qvideostream.h
index f1b0ca24..24b7fb40 100644
--- a/kopete/libkopete/avdevice/qvideostream.h
+++ b/kopete/libkopete/avdevice/qvideostream.h
@@ -29,11 +29,11 @@
#endif
#ifdef HAVE_GL
-#include <qgl.h>
+#include <tqgl.h>
#include <GL/gl.h>
#endif
-#include <qwidget.h>
+#include <tqwidget.h>
#include "qvideo.h"
class QVideoStreamPrivate;
@@ -41,12 +41,12 @@ class QVideoStreamPrivate;
/**
* QT-style video stream driver.
*/
-class QVideoStream : public QObject, public QVideo
+class QVideoStream : public TQObject, public QVideo
{
Q_OBJECT
public:
- QVideoStream(QWidget *widget, const char* name = 0);
+ QVideoStream(TQWidget *widget, const char* name = 0);
~QVideoStream();
/* output method */
@@ -55,25 +55,25 @@ public:
VideoMethod setMethod(VideoMethod method);
/* max output sizes */
- QSize maxSize() const;
+ TQSize maxSize() const;
int maxWidth() const;
int maxHeight() const;
/* output sizes */
- QSize size() const;
+ TQSize size() const;
int width() const;
int height() const;
- QSize setSize(const QSize& sz);
+ TQSize setSize(const TQSize& sz);
int setWidth(int width);
int setHeight(int height);
/* input sizes */
- QSize inputSize() const;
+ TQSize inputSize() const;
int inputWidth() const;
int inputHeight() const;
- QSize setInputSize(const QSize& sz);
+ TQSize setInputSize(const TQSize& sz);
int setInputWidth(int width);
int setInputHeight(int height);
@@ -95,12 +95,12 @@ public slots:
private:
QVideoStreamPrivate* d;
- QWidget* _w;
+ TQWidget* _w;
VideoMethod _methods; // list of methods
VideoMethod _method; // the current method
ImageFormat _format;
- QSize _size;
- QSize _inputSize;
+ TQSize _size;
+ TQSize _inputSize;
bool _init;
ImageFormat _xFormat;