summaryrefslogtreecommitdiffstats
path: root/kopete/libkopete/avdevice/kxv.h
diff options
context:
space:
mode:
Diffstat (limited to 'kopete/libkopete/avdevice/kxv.h')
-rw-r--r--kopete/libkopete/avdevice/kxv.h40
1 files changed, 20 insertions, 20 deletions
diff --git a/kopete/libkopete/avdevice/kxv.h b/kopete/libkopete/avdevice/kxv.h
index 6f7602bf..8b3e14dd 100644
--- a/kopete/libkopete/avdevice/kxv.h
+++ b/kopete/libkopete/avdevice/kxv.h
@@ -24,9 +24,9 @@
#include <X11/X.h>
#include <X11/Xlib.h>
-#include <qstring.h>
-#include <qstringlist.h>
-#include <qptrlist.h>
+#include <tqstring.h>
+#include <tqstringlist.h>
+#include <tqptrlist.h>
class QWidget;
class QImage;
@@ -35,7 +35,7 @@ class KXvPrivate;
class KXvDevice;
class KXvDevicePrivate;
-typedef QPtrList<KXvDevice> KXvDeviceList;
+typedef TQPtrList<KXvDevice> KXvDeviceList;
class KXv
@@ -81,7 +81,7 @@ private:
class KXvDeviceAttribute
{
public:
- QString name;
+ TQString name;
int min;
int max;
int flags;
@@ -89,7 +89,7 @@ public:
Atom atom();
};
-typedef QPtrList<KXvDeviceAttribute> KXvDeviceAttributes;
+typedef TQPtrList<KXvDeviceAttribute> KXvDeviceAttributes;
class KXvDevice
@@ -108,41 +108,41 @@ public:
/*
* return the range for a given attribute
*/
- bool getAttributeRange(const QString& attribute, int *min, int *max);
+ bool getAttributeRange(const TQString& attribute, int *min, int *max);
/*
* get the current value of a given attribute
*/
- bool getAttribute(const QString& attribute, int *val);
+ bool getAttribute(const TQString& attribute, int *val);
/*
* set the current value of a given attribute
*/
- bool setAttribute(const QString& attribute, int val);
+ bool setAttribute(const TQString& attribute, int val);
- bool grabStill(QImage *pix, int dw, int dh);
+ bool grabStill(TQImage *pix, int dw, int dh);
/*
* True if this device can operate on the given widget
*/
- bool supportsWidget(QWidget *w);
+ bool supportsWidget(TQWidget *w);
/*
* Display the given image with Xv.
*/
- int displayImage(QWidget *widget, const unsigned char *const data, int w, int h, int dw, int dh);
+ int displayImage(TQWidget *widget, const unsigned char *const data, int w, int h, int dw, int dh);
int displayImage(Window win, const unsigned char *const data, int w, int h, int dw, int dh);
/*
* Display a portion of the given image with Xv.
*/
- int displayImage(QWidget *widget, const unsigned char *const data, int w, int h, int x, int y, int sw, int sh, int dw, int dh);
+ int displayImage(TQWidget *widget, const unsigned char *const data, int w, int h, int x, int y, int sw, int sh, int dw, int dh);
int displayImage(Window win, const unsigned char *const data, int w, int h, int x, int y, int sw, int sh, int dw, int dh);
/*
* Start a video stream in widget w, width dw, height dh
*/
- bool startVideo(QWidget *w, int dw, int dh);
+ bool startVideo(TQWidget *w, int dw, int dh);
bool startVideo(Window w, int dw, int dh);
/*
@@ -168,7 +168,7 @@ public:
/*
* Name of the device
*/
- const QString& name() const;
+ const TQString& name() const;
/*
* The Xv port for this device
@@ -178,17 +178,17 @@ public:
/*
* The list of encodings/norms available
*/
- const QStringList& encodings() const;
+ const TQStringList& encodings() const;
/*
* get encoding
*/
- bool encoding(QString& encoding);
+ bool encoding(TQString& encoding);
/*
* Set the encoding to the given one. This should be taken from the list.
*/
- bool setEncoding(const QString& e);
+ bool setEncoding(const TQString& e);
/*
* Set the image format. (ex YUV)
@@ -218,7 +218,7 @@ protected:
KXvDeviceAttributes _attrs;
int xv_type, xv_adaptor;
- QString xv_name;
+ TQString xv_name;
int xv_port;
unsigned int xv_encodings;
int xv_encoding;
@@ -228,7 +228,7 @@ protected:
GC xv_gc;
Window xv_last_win;
- QStringList _encodingList;
+ TQStringList _encodingList;
int xv_formats;
void *xv_formatvalues;