00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #ifndef __KDRAWUTIL_H
00019 #define __KDRAWUTIL_H
00020
00021 #include <tqnamespace.h>
00022 #include <tqpainter.h>
00023 #include <tqbitmap.h>
00024 #include <tqpalette.h>
00025
00026 #include <tdelibs_export.h>
00027
00028
00029
00030
00031
00032
00033
00034
00048 TDEFX_EXPORT void kDrawNextButton(TQPainter *p, const TQRect &r, const TQColorGroup &g,
00049 bool sunken=false, const TQBrush *fill=0);
00050
00055 TDEFX_EXPORT void kDrawNextButton(TQPainter *p, int x, int y, int w, int h,
00056 const TQColorGroup &g, bool sunken=false,
00057 const TQBrush *fill=0);
00058
00072 TDEFX_EXPORT void kDrawBeButton(TQPainter *p, TQRect &r, const TQColorGroup &g,
00073 bool sunken=false, const TQBrush *fill=0);
00074
00080 TDEFX_EXPORT void kDrawBeButton(TQPainter *p, int x, int y, int w, int h,
00081 const TQColorGroup &g, bool sunken=false,
00082 const TQBrush *fill=0);
00083
00096 TDEFX_EXPORT void kDrawRoundButton(TQPainter *p, const TQRect &r, const TQColorGroup &g,
00097 bool sunken=false);
00098
00103 TDEFX_EXPORT void kDrawRoundButton(TQPainter *p, int x, int y, int w, int h,
00104 const TQColorGroup &g, bool sunken=false);
00105
00121 TDEFX_EXPORT void kRoundMaskRegion(TQRegion &r, int x, int y, int w, int h);
00122
00138 TDEFX_EXPORT void kDrawRoundMask(TQPainter *p, int x, int y, int w, int h, bool clear=false);
00139
00164 TDEFX_EXPORT void kColorBitmaps(TQPainter *p, const TQColorGroup &g, int x, int y,
00165 TQBitmap *lightColor=0, TQBitmap *midColor=0,
00166 TQBitmap *midlightColor=0, TQBitmap *darkColor=0,
00167 TQBitmap *blackColor=0, TQBitmap *whiteColor=0);
00168
00174 TDEFX_EXPORT void kColorBitmaps(TQPainter *p, const TQColorGroup &g, int x, int y, int w,
00175 int h, bool isXBitmaps=true, const uchar *lightColor = 0,
00176 const uchar *midColor=0, const uchar *midlightColor=0,
00177 const uchar *darkColor=0, const uchar *blackColor=0,
00178 const uchar *whiteColor=0);
00179
00180 #endif