/****************************************************************************
** $Id: qbitmap.h,v 2.3.2.2 1998/08/25 09:20:51 hanord Exp $
**
** Definition of QBitmap class
**
** Created : 941020
**
** Copyright (C) 1992-1998 Troll Tech AS. All rights reserved.
**
** This file is part of Troll Tech's internal development tree for Qt.
**
** This header text will be replaced by an appropriate text by the
** mkdist script which generates external distributions.
**
** If you are using the Qt Professional Edition or the Qt Free Edition,
** please notify Troll Tech at <info@troll.no> if you see this text.
**
** To Troll Tech developers: This header was generated by the script
** fixcopyright-int. It has the same number of text lines as the free
** and professional editions to avoid line number inconsistency.
**
*****************************************************************************/
#ifndef QBITMAP_H
#define QBITMAP_H
#ifndef QT_H
#include "qpixmap.h"
#endif // QT_H
class Q_EXPORT QBitmap : public QPixmap
{
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
| Copyright © 1998 Troll Tech | Trademarks | Qt version 1.41
|