This is the verbatim text of the qbitmap.h include file. It is is provided only for illustration; the copyright remains with Troll Tech
/**************************************************************************** ** $Id: qbitmap.h,v 2.1 1997/08/06 15:05:33 hanord Exp $ ** ** Definition of QBitmap class ** ** Created : 941020 ** ** Copyright (C) 1994-1997 by Troll Tech AS. All rights reserved. ** *****************************************************************************/ #ifndef QBITMAP_H #define QBITMAP_H #include "qpixmap.h" class QBitmap : public QPixmap // bitmap class { public: QBitmap(); QBitmap( int w, int h, bool clear = FALSE ); QBitmap( const QSize &, bool clear = FALSE ); QBitmap( int w, int h, const uchar *bits, bool isXbitmap=FALSE ); QBitmap( const QSize &, const uchar *bits, bool isXbitmap=FALSE ); QBitmap( const QBitmap & ); QBitmap( const char *fileName, const char *format=0 ); QBitmap &operator=( const QBitmap & ); QBitmap &operator=( const QPixmap & ); QBitmap &operator=( const QImage & ); QBitmap xForm( const QWMatrix & ) const; }; #endif // QBITMAP_H