summaryrefslogtreecommitdiffstats
path: root/sip/qt/qpixmap.sip
diff options
context:
space:
mode:
Diffstat (limited to 'sip/qt/qpixmap.sip')
-rw-r--r--sip/qt/qpixmap.sip176
1 files changed, 88 insertions, 88 deletions
diff --git a/sip/qt/qpixmap.sip b/sip/qt/qpixmap.sip
index d00cd78..0ef4284 100644
--- a/sip/qt/qpixmap.sip
+++ b/sip/qt/qpixmap.sip
@@ -1,29 +1,29 @@
-// This is the SIP interface definition for QPixmap.
+// This is the SIP interface definition for TQPixmap.
//
// Copyright (c) 2007
// Riverbank Computing Limited <info@riverbankcomputing.co.uk>
//
-// This file is part of PyQt.
+// This file is part of PyTQt.
//
-// This copy of PyQt is free software; you can redistribute it and/or modify it
+// This copy of PyTQt is free software; you can redistribute it and/or modify it
// under the terms of the GNU General Public License as published by the Free
// Software Foundation; either version 2, or (at your option) any later
// version.
//
-// PyQt is supplied in the hope that it will be useful, but WITHOUT ANY
+// PyTQt is supplied in the hope that it will be useful, but WITHOUT ANY
// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
// details.
//
// You should have received a copy of the GNU General Public License along with
-// PyQt; see the file LICENSE. If not, write to the Free Software Foundation,
+// PyTQt; see the file LICENSE. If not, write to the Free Software Foundation,
// Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
%ExportedDoc
-<Sect2><Title>QPixmap</Title>
+<Sect2><Title>TQPixmap</Title>
<FuncSynopsis>
- <FuncDef><Function>QPixmap</Function></FuncDef>
+ <FuncDef><Function>TQPixmap</Function></FuncDef>
<ParamDef>const char *<Parameter>xpm</Parameter>[]</ParamDef>
</FuncSynopsis>
<Para>
@@ -56,9 +56,9 @@ Not implemented.
%End
-%If (- Qt_2_00)
+%If (- TQt_2_00)
-class QPixmap : QPaintDevice
+class TQPixmap : TQPaintDevice
{
%TypeHeaderCode
#include <qpixmap.h>
@@ -72,62 +72,62 @@ public:
Mono
};
- QPixmap();
- QPixmap(int,int,int = -1);
- QPixmap(const QSize &,int = -1);
- QPixmap(const char *,const char * = 0,ColorMode = Auto);
- QPixmap(const char *,const char *,int);
+ TQPixmap();
+ TQPixmap(int,int,int = -1);
+ TQPixmap(const TQSize &,int = -1);
+ TQPixmap(const char *,const char * = 0,ColorMode = Auto);
+ TQPixmap(const char *,const char *,int);
- QPixmap(SIP_PYLIST) [(const char **)];
+ TQPixmap(SIP_PYLIST) [(const char **)];
%MethodCode
// The Python interface is a list of strings that make up the
// image.
const char **str;
- if ((str = PyQt_qt_ListToArray(a0)) == NULL)
+ if ((str = PyTQt_qt_ListToArray(a0)) == NULL)
sipIsErr = 1;
else
{
Py_BEGIN_ALLOW_THREADS
- sipCpp = new sipQPixmap(str);
+ sipCpp = new sipTQPixmap(str);
Py_END_ALLOW_THREADS
sipFree((ANY *)str);
}
%End
- QPixmap(const QPixmap &);
+ TQPixmap(const TQPixmap &);
bool isNull() const;
int width() const;
int height() const;
- QSize size() const;
- QRect rect() const;
+ TQSize size() const;
+ TQRect rect() const;
int depth() const;
static int defaultDepth();
- void fill(const QColor & = white);
- void fill(const QWidget *,int,int);
- void fill(const QWidget *,const QPoint &);
+ void fill(const TQColor & = white);
+ void fill(const TQWidget *,int,int);
+ void fill(const TQWidget *,const TQPoint &);
void resize(int,int);
- void resize(const QSize &);
- const QBitmap *mask() const;
- void setMask(const QBitmap &);
+ void resize(const TQSize &);
+ const TQBitmap *mask() const;
+ void setMask(const TQBitmap &);
bool selfMask() const;
- QBitmap createHeuristicMask(bool = 1) const;
- static QPixmap grabWindow(WId,int = 0,int = 0,int = -1,int = -1);
- QPixmap xForm(const QWMatrix &) const;
- static QWMatrix trueMatrix(const QWMatrix &,int,int);
- QImage convertToImage() const;
- bool convertFromImage(const QImage &,ColorMode = Auto);
- bool convertFromImage(const QImage &,int);
+ TQBitmap createHeuristicMask(bool = 1) const;
+ static TQPixmap grabWindow(WId,int = 0,int = 0,int = -1,int = -1);
+ TQPixmap xForm(const TQWMatrix &) const;
+ static TQWMatrix trueMatrix(const TQWMatrix &,int,int);
+ TQImage convertToImage() const;
+ bool convertFromImage(const TQImage &,ColorMode = Auto);
+ bool convertFromImage(const TQImage &,int);
static const char *imageFormat(const char *);
bool load(const char *,const char * = 0,ColorMode = Auto);
bool load(const char *,const char *,int);
bool loadFromData(const uchar * /Array/,uint /ArraySize/,
const char * = 0,ColorMode = Auto);
// bool loadFromData(const uchar *,uint,const char *,int);
- bool loadFromData(QByteArray,const char * = 0,int = 0);
+ bool loadFromData(TQByteArray,const char * = 0,int = 0);
bool save(const char *,const char *) const;
int serialNumber() const;
@@ -143,17 +143,17 @@ public:
static Optimization defaultOptimization();
static void setDefaultOptimization(Optimization);
virtual void detach();
- bool isQBitmap() const;
+ bool isTQBitmap() const;
protected:
- QPixmap(int,int,const uchar *,bool);
+ TQPixmap(int,int,const uchar *,bool);
};
%End
-%If (Qt_2_00 -)
+%If (TQt_2_00 -)
-class QPixmap : QPaintDevice, Qt
+class TQPixmap : TQPaintDevice, TQt
{
%TypeHeaderCode
#include <qpixmap.h>
@@ -176,90 +176,90 @@ public:
BestOptim
};
- QPixmap();
-%If (Qt_3_0_0 -)
- QPixmap(const QImage &);
+ TQPixmap();
+%If (TQt_3_0_0 -)
+ TQPixmap(const TQImage &);
%End
- QPixmap(int,int,int = -1,Optimization = DefaultOptim);
- QPixmap(const QSize &,int = -1,Optimization = DefaultOptim);
- QPixmap(const QString &,const char * = 0,ColorMode = Auto);
- QPixmap(const QString &,const char *,int);
+ TQPixmap(int,int,int = -1,Optimization = DefaultOptim);
+ TQPixmap(const TQSize &,int = -1,Optimization = DefaultOptim);
+ TQPixmap(const TQString &,const char * = 0,ColorMode = Auto);
+ TQPixmap(const TQString &,const char *,int);
- QPixmap(SIP_PYLIST) [(const char **)];
+ TQPixmap(SIP_PYLIST) [(const char **)];
%MethodCode
// The Python interface is a list of strings that make up the
// image.
const char **str;
- if ((str = PyQt_qt_ListToArray(a0)) == NULL)
+ if ((str = PyTQt_qt_ListToArray(a0)) == NULL)
sipIsErr = 1;
else
{
Py_BEGIN_ALLOW_THREADS
- sipCpp = new sipQPixmap(str);
+ sipCpp = new sipTQPixmap(str);
Py_END_ALLOW_THREADS
sipFree((ANY *)str);
}
%End
- QPixmap(const QByteArray &);
- QPixmap(const QPixmap &);
+ TQPixmap(const TQByteArray &);
+ TQPixmap(const TQPixmap &);
bool isNull() const;
int width() const;
int height() const;
- QSize size() const;
- QRect rect() const;
+ TQSize size() const;
+ TQRect rect() const;
int depth() const;
static int defaultDepth();
- void fill(const QColor & = Qt::white);
- void fill(const QWidget *,int,int);
- void fill(const QWidget *,const QPoint &);
+ void fill(const TQColor & = TQt::white);
+ void fill(const TQWidget *,int,int);
+ void fill(const TQWidget *,const TQPoint &);
void resize(int,int);
- void resize(const QSize &);
- const QBitmap *mask() const;
- void setMask(const QBitmap &);
+ void resize(const TQSize &);
+ const TQBitmap *mask() const;
+ void setMask(const TQBitmap &);
bool selfMask() const;
-%If (Qt_3_1_0 -)
+%If (TQt_3_1_0 -)
bool hasAlpha() const;
%End
-%If (Qt_3_2_0 -)
+%If (TQt_3_2_0 -)
bool hasAlphaChannel() const;
%End
- QBitmap createHeuristicMask(bool = 1) const;
-%If (Qt_3_1_0 -)
- static QPixmap fromMimeSource(const QString &);
+ TQBitmap createHeuristicMask(bool = 1) const;
+%If (TQt_3_1_0 -)
+ static TQPixmap fromMimeSource(const TQString &);
%End
- static QPixmap grabWindow(WId,int = 0,int = 0,int = -1,int = -1);
-%If (Qt_2_1_0 -)
- static QPixmap grabWidget(QWidget *,int = 0,int = 0,int = -1,int = -1);
+ static TQPixmap grabWindow(WId,int = 0,int = 0,int = -1,int = -1);
+%If (TQt_2_1_0 -)
+ static TQPixmap grabWidget(TQWidget *,int = 0,int = 0,int = -1,int = -1);
%End
- QPixmap xForm(const QWMatrix &) const;
- static QWMatrix trueMatrix(const QWMatrix &,int,int);
- QImage convertToImage() const;
- bool convertFromImage(const QImage &,ColorMode = Auto);
- bool convertFromImage(const QImage &,int);
- static const char *imageFormat(const QString &);
- bool load(const QString &,const char * = 0,ColorMode = Auto);
- bool load(const QString &,const char *,int);
+ TQPixmap xForm(const TQWMatrix &) const;
+ static TQWMatrix trueMatrix(const TQWMatrix &,int,int);
+ TQImage convertToImage() const;
+ bool convertFromImage(const TQImage &,ColorMode = Auto);
+ bool convertFromImage(const TQImage &,int);
+ static const char *imageFormat(const TQString &);
+ bool load(const TQString &,const char * = 0,ColorMode = Auto);
+ bool load(const TQString &,const char *,int);
bool loadFromData(const uchar * /Array/,uint /ArraySize/,
const char * = 0,ColorMode = Auto);
// bool loadFromData(const uchar *,uint,const char *,int);
- bool loadFromData(QByteArray,const char * = 0,int = 0);
-%If (- Qt_3_0_0)
- bool save(const QString &,const char *) const;
+ bool loadFromData(TQByteArray,const char * = 0,int = 0);
+%If (- TQt_3_0_0)
+ bool save(const TQString &,const char *) const;
%End
-%If (Qt_2_2_0 - Qt_3_0_0)
- bool save(const QString &,const char *,int) const;
+%If (TQt_2_2_0 - TQt_3_0_0)
+ bool save(const TQString &,const char *,int) const;
%End
-%If (Qt_3_0_0 -)
- bool save(const QString &,const char *,int = -1) const;
+%If (TQt_3_0_0 -)
+ bool save(const TQString &,const char *,int = -1) const;
%End
-%If (Qt_3_2_0 -)
- bool save(QIODevice *,const char *,int = -1) const;
+%If (TQt_3_2_0 -)
+ bool save(TQIODevice *,const char *,int = -1) const;
%End
int serialNumber() const;
Optimization optimization() const;
@@ -267,9 +267,9 @@ public:
static Optimization defaultOptimization();
static void setDefaultOptimization(Optimization);
virtual void detach();
- bool isQBitmap() const;
+ bool isTQBitmap() const;
-%If (Qt_3_0_0 -)
+%If (TQt_3_0_0 -)
%If (WS_X11)
static int x11SetDefaultScreen(int);
void x11SetScreen(int);
@@ -277,12 +277,12 @@ public:
%End
protected:
- QPixmap(int,int,const uchar *,bool);
+ TQPixmap(int,int,const uchar *,bool);
};
%End
-%If (Qt_3_2_0 -)
-void copyBlt(QPixmap *,int,int,const QPixmap *,int = 0,int = 0,int = -1,
+%If (TQt_3_2_0 -)
+void copyBlt(TQPixmap *,int,int,const TQPixmap *,int = 0,int = 0,int = -1,
int = -1);
%End