kdefx Library API Documentation

kpixmap.h

00001 /*
00002  *  This file is part of the KDE libraries
00003  *  Copyright (C) 1998  Mark Donohoe <donohoe@kde.org>
00004  *          Stephan Kulow <coolo@kde.org>
00005  *
00006  *  $Id: kpixmap.h,v 1.31 2003/10/06 09:07:10 bhards Exp $
00007  *
00008  *  This library is free software; you can redistribute it and/or
00009  *  modify it under the terms of the GNU Library General Public
00010  *  License as published by the Free Software Foundation; either
00011  *  version 2 of the License, or (at your option) any later version.
00012  *
00013  *  This library is distributed in the hope that it will be useful,
00014  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
00015  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00016  *  Library General Public License for more details.
00017  *
00018  *  You should have received a copy of the GNU Library General Public License
00019  *  along with this library; see the file COPYING.LIB.  If not, write to
00020  *  the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
00021  *  Boston, MA 02111-1307, USA.
00022  */
00023 
00024 #ifndef __KPIXMAP_H__
00025 #define __KPIXMAP_H__
00026 
00027 #include <qpixmap.h>
00028 
00029 const int KColorMode_Mask   = 0x00000300;
00030 const int WebOnly   = 0x00000200;
00031 const int LowOnly   = 0x00000300;
00032 
00033 class KPixmapPrivate;
00034 
00055 class KPixmap : public QPixmap
00056 {
00057 public:
00062         enum ColorMode { Auto,   
00063              Color,  
00064              Mono,   
00065              LowColor, 
00066              WebColor 
00067     };
00071         enum GradientMode { Horizontal,
00072                 Vertical,
00073                 Diagonal,
00074                 CrossDiagonal
00075     };
00076 
00080          KPixmap() : QPixmap() {};
00081 
00086     ~KPixmap();
00087 
00091     KPixmap(const QPixmap& pix);
00092 
00149     bool convertFromImage( const QImage &img, int conversion_flags );
00150 
00159     bool convertFromImage( const QImage &img, ColorMode mode = WebColor );
00160 
00179     bool load( const QString& fileName, const char *format,
00180         int conversion_flags );
00181 
00192     bool load( const QString& fileName,
00193         const char *format = 0,
00194         ColorMode mode = WebColor );
00195 
00205     bool checkColorTable(const QImage &image);
00206 
00207 private:
00208     KPixmapPrivate *d;
00209 };
00210 
00211 #endif
KDE Logo
This file is part of the documentation for kdefx Library Version 3.2.2.
Documentation copyright © 1996-2004 the KDE developers.
Generated on Wed Apr 21 18:42:44 2004 by doxygen 1.3.6-20040222 written by Dimitri van Heesch, © 1997-2003