![]() |
VR-Forces 4.0.4 Class Documentation
|
00001 /********************************************************************* 00002 ** Copyright (c) 2001 MAK Technologies, Inc. 00003 ** All rights reserved. 00004 *********************************************************************/ 00005 /********************************************************************* 00006 ** $RCSfile: dispUtil.h,v $ $Revision: 1.5 $ $State: Exp $ 00007 *********************************************************************/ 00008 00011 00012 #ifndef DtDispUtil_H 00013 #define DtDispUtil_H 00014 00015 class DtDisplayPoint; 00016 00017 class QPaintDevice; 00018 class QPixmap; 00019 class QPainter; 00020 class QImage; 00021 00022 #include "symbolDrawer/symbolDrawerDefines.h" 00023 00024 DT_DLL_symbolDrawer void paintPix(QPainter * dst, 00025 const DtDisplayPoint & center, 00026 const QPixmap * src, 00027 double scaleBy); 00028 00029 DT_DLL_symbolDrawer void paintPix(QPaintDevice * dst, 00030 const DtDisplayPoint & center, 00031 const QPixmap * src); 00032 00033 DT_DLL_symbolDrawer void paintPix(QPainter * dst, 00034 const DtDisplayPoint & center, 00035 const QImage * src, 00036 double scaleBy); 00037 00038 DT_DLL_symbolDrawer void paintPix(QPainter * dst, 00039 const DtDisplayPoint & topLeft, 00040 const QImage * src); 00041 00042 #endif //! DtDispUtil_H 00043