qpaintdevice.h
上传用户:detong
上传日期:2022-06-22
资源大小:20675k
文件大小:6k
源码类别:

系统编程

开发平台:

Unix_Linux

  1. /****************************************************************************
  2. **
  3. ** Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies).
  4. ** Contact: Qt Software Information (qt-info@nokia.com)
  5. **
  6. ** This file is part of the QtGui module of the Qt Toolkit.
  7. **
  8. ** Commercial Usage
  9. ** Licensees holding valid Qt Commercial licenses may use this file in
  10. ** accordance with the Qt Commercial License Agreement provided with the
  11. ** Software or, alternatively, in accordance with the terms contained in
  12. ** a written agreement between you and Nokia.
  13. **
  14. **
  15. ** GNU General Public License Usage
  16. ** Alternatively, this file may be used under the terms of the GNU
  17. ** General Public License versions 2.0 or 3.0 as published by the Free
  18. ** Software Foundation and appearing in the file LICENSE.GPL included in
  19. ** the packaging of this file.  Please review the following information
  20. ** to ensure GNU General Public Licensing requirements will be met:
  21. ** http://www.fsf.org/licensing/licenses/info/GPLv2.html and
  22. ** http://www.gnu.org/copyleft/gpl.html.  In addition, as a special
  23. ** exception, Nokia gives you certain additional rights. These rights
  24. ** are described in the Nokia Qt GPL Exception version 1.3, included in
  25. ** the file GPL_EXCEPTION.txt in this package.
  26. **
  27. ** Qt for Windows(R) Licensees
  28. ** As a special exception, Nokia, as the sole copyright holder for Qt
  29. ** Designer, grants users of the Qt/Eclipse Integration plug-in the
  30. ** right for the Qt/Eclipse Integration to link to functionality
  31. ** provided by Qt Designer and its related libraries.
  32. **
  33. ** If you are unsure which license is appropriate for your use, please
  34. ** contact the sales department at qt-sales@nokia.com.
  35. **
  36. ****************************************************************************/
  37. #ifndef QPAINTDEVICE_H
  38. #define QPAINTDEVICE_H
  39. #include <QtGui/qwindowdefs.h>
  40. #include <QtCore/qrect.h>
  41. QT_BEGIN_HEADER
  42. QT_BEGIN_NAMESPACE
  43. QT_MODULE(Gui)
  44. #if defined(Q_WS_QWS)
  45. class QWSDisplay;
  46. #endif
  47. class QPaintEngine;
  48. class Q_GUI_EXPORT QPaintDevice                                // device for QPainter
  49. {
  50. public:
  51.     enum PaintDeviceMetric {
  52.         PdmWidth = 1,
  53.         PdmHeight,
  54.         PdmWidthMM,
  55.         PdmHeightMM,
  56.         PdmNumColors,
  57.         PdmDepth,
  58.         PdmDpiX,
  59.         PdmDpiY,
  60.         PdmPhysicalDpiX,
  61.         PdmPhysicalDpiY
  62.     };
  63.     virtual ~QPaintDevice();
  64.     virtual int devType() const;
  65.     bool paintingActive() const;
  66.     virtual QPaintEngine *paintEngine() const = 0;
  67. #if defined(Q_WS_QWS)
  68.     static QWSDisplay *qwsDisplay();
  69. #endif
  70. #ifdef Q_WS_WIN
  71.     virtual HDC getDC() const;
  72.     virtual void releaseDC(HDC hdc) const;
  73. #endif
  74.     int width() const { return metric(PdmWidth); }
  75.     int height() const { return metric(PdmHeight); }
  76.     int widthMM() const { return metric(PdmWidthMM); }
  77.     int heightMM() const { return metric(PdmHeightMM); }
  78.     int logicalDpiX() const { return metric(PdmDpiX); }
  79.     int logicalDpiY() const { return metric(PdmDpiY); }
  80.     int physicalDpiX() const { return metric(PdmPhysicalDpiX); }
  81.     int physicalDpiY() const { return metric(PdmPhysicalDpiY); }
  82.     int numColors() const { return metric(PdmNumColors); }
  83.     int depth() const { return metric(PdmDepth); }
  84. protected:
  85.     QPaintDevice();
  86.     virtual int metric(PaintDeviceMetric metric) const;
  87.     ushort        painters;                        // refcount
  88. private:
  89.     Q_DISABLE_COPY(QPaintDevice)
  90. #if defined(Q_WS_X11) && defined(QT3_SUPPORT)
  91. public:
  92.     QT3_SUPPORT Display *x11Display() const;
  93.     QT3_SUPPORT int x11Screen() const;
  94.     QT3_SUPPORT int x11Depth() const;
  95.     QT3_SUPPORT int x11Cells() const;
  96.     QT3_SUPPORT Qt::HANDLE x11Colormap() const;
  97.     QT3_SUPPORT bool x11DefaultColormap() const;
  98.     QT3_SUPPORT void *x11Visual() const;
  99.     QT3_SUPPORT bool x11DefaultVisual() const;
  100.     static QT3_SUPPORT Display *x11AppDisplay();
  101.     static QT3_SUPPORT int x11AppScreen();
  102.     static QT3_SUPPORT int x11AppDepth(int screen = -1);
  103.     static QT3_SUPPORT int x11AppCells(int screen = -1);
  104.     static QT3_SUPPORT Qt::HANDLE x11AppRootWindow(int screen = -1);
  105.     static QT3_SUPPORT Qt::HANDLE x11AppColormap(int screen = -1);
  106.     static QT3_SUPPORT void *x11AppVisual(int screen = -1);
  107.     static QT3_SUPPORT bool x11AppDefaultColormap(int screen =-1);
  108.     static QT3_SUPPORT bool x11AppDefaultVisual(int screen =-1);
  109.     static QT3_SUPPORT int x11AppDpiX(int screen = -1);
  110.     static QT3_SUPPORT int x11AppDpiY(int screen = -1);
  111.     static QT3_SUPPORT void x11SetAppDpiX(int, int);
  112.     static QT3_SUPPORT void x11SetAppDpiY(int, int);
  113. #endif
  114.     friend class QPainter;
  115.     friend class QFontEngineMac;
  116.     friend class QX11PaintEngine;
  117. };
  118. #ifdef QT3_SUPPORT
  119. QT3_SUPPORT Q_GUI_EXPORT
  120. void bitBlt(QPaintDevice *dst, int dx, int dy,
  121.              const QPaintDevice *src, int sx=0, int sy=0, int sw=-1, int sh=-1,
  122.              bool ignoreMask=false);
  123. QT3_SUPPORT Q_GUI_EXPORT
  124. void bitBlt(QPaintDevice *dst, int dx, int dy,
  125.              const QImage *src, int sx=0, int sy=0, int sw=-1, int sh=-1,
  126.              int conversion_flags=0);
  127. QT3_SUPPORT Q_GUI_EXPORT
  128. void bitBlt(QPaintDevice *dst, const QPoint &dp,
  129.             const QPaintDevice *src, const QRect &sr=QRect(0,0,-1,-1),
  130.             bool ignoreMask=false);
  131. #endif
  132. /*****************************************************************************
  133.   Inline functions
  134.  *****************************************************************************/
  135. inline int QPaintDevice::devType() const
  136. { return QInternal::UnknownDevice; }
  137. inline bool QPaintDevice::paintingActive() const
  138. { return painters != 0; }
  139. QT_END_NAMESPACE
  140. QT_END_HEADER
  141. #endif // QPAINTDEVICE_H