home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / qt3_emx.zip / include / qpicture.h < prev    next >
C/C++ Source or Header  |  2001-10-11  |  4KB  |  124 lines

  1. /****************************************************************************
  2. ** $Id:  qt/qpicture.h   3.0.0   edited Oct 1 16:29 $
  3. **
  4. ** Definition of QPicture class
  5. **
  6. ** Created : 940729
  7. **
  8. ** Copyright (C) 1992-2000 Trolltech AS.  All rights reserved.
  9. **
  10. ** This file is part of the kernel module of the Qt GUI Toolkit.
  11. **
  12. ** This file may be distributed under the terms of the Q Public License
  13. ** as defined by Trolltech AS of Norway and appearing in the file
  14. ** LICENSE.QPL included in the packaging of this file.
  15. **
  16. ** This file may be distributed and/or modified under the terms of the
  17. ** GNU General Public License version 2 as published by the Free Software
  18. ** Foundation and appearing in the file LICENSE.GPL included in the
  19. ** packaging of this file.
  20. **
  21. ** Licensees holding valid Qt Enterprise Edition or Qt Professional Edition
  22. ** licenses may use this file in accordance with the Qt Commercial License
  23. ** Agreement provided with the Software.
  24. **
  25. ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
  26. ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  27. **
  28. ** See http://www.trolltech.com/pricing.html or email sales@trolltech.com for
  29. **   information about Qt Commercial License Agreements.
  30. ** See http://www.trolltech.com/qpl/ for QPL licensing information.
  31. ** See http://www.trolltech.com/gpl/ for GPL licensing information.
  32. **
  33. ** Contact info@trolltech.com if any conditions of this licensing are
  34. ** not clear to you.
  35. **
  36. **********************************************************************/
  37.  
  38. #ifndef QPICTURE_H
  39. #define QPICTURE_H
  40.  
  41. #ifndef QT_H
  42. #include "qpaintdevice.h"
  43. #include "qbuffer.h"
  44. #endif // QT_H
  45.  
  46. #ifndef QT_NO_PICTURE
  47.  
  48. class Q_EXPORT QPicture : public QPaintDevice        // picture class
  49. {
  50. public:
  51.     QPicture( int formatVersion = -1 );
  52.     QPicture( const QPicture & );
  53.    ~QPicture();
  54.  
  55.     bool    isNull() const;
  56.  
  57.     uint    size() const;
  58.     const char* data() const;
  59.     virtual void setData( const char* data, uint size );
  60.  
  61.     bool    play( QPainter * );
  62.  
  63.     bool    load( QIODevice *dev, const char *format = 0 );
  64.     bool    load( const QString &fileName, const char *format = 0 );
  65.     bool    save( QIODevice *dev, const char *format = 0 );
  66.     bool    save( const QString &fileName, const char *format = 0 );
  67.  
  68.     QRect boundingRect() const;
  69.  
  70.     QPicture& operator= (const QPicture&);
  71.  
  72.     friend Q_EXPORT QDataStream &operator<<( QDataStream &, const QPicture & );
  73.     friend Q_EXPORT QDataStream &operator>>( QDataStream &, QPicture & );
  74.  
  75. protected:
  76.     bool    cmd( int, QPainter *, QPDevCmdParam * );
  77.     int        metric( int ) const;
  78.     void    detach();
  79.     QPicture    copy() const;
  80.  
  81. private:
  82.     bool    exec( QPainter *, QDataStream &, int );
  83.  
  84.     struct QPicturePrivate : public QShared {
  85.     bool    cmd( int, QPainter *, QPDevCmdParam * );
  86.     bool    checkFormat();
  87.     void    resetFormat();
  88.  
  89.     QBuffer    pictb;
  90.     int    trecs;
  91.     bool    formatOk;
  92.     int    formatMajor;
  93.     int    formatMinor;
  94.     QRect    brect;
  95.     } *d;
  96. };
  97.  
  98.  
  99. inline bool QPicture::isNull() const
  100. {
  101.     return d->pictb.buffer().isNull();
  102. }
  103.  
  104. inline uint QPicture::size() const
  105. {
  106.     return d->pictb.buffer().size();
  107. }
  108.  
  109. inline const char* QPicture::data() const
  110. {
  111.     return d->pictb.buffer().data();
  112. }
  113.  
  114. /*****************************************************************************
  115.   QPicture stream functions
  116.  *****************************************************************************/
  117.  
  118. Q_EXPORT QDataStream &operator<<( QDataStream &, const QPicture & );
  119. Q_EXPORT QDataStream &operator>>( QDataStream &, QPicture & );
  120.  
  121. #endif // QT_NO_PICTURE
  122.  
  123. #endif // QPICTURE_H
  124.