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 <qnamespace.h>
00022 #include <qpainter.h>
00023 #include <qbitmap.h>
00024 #include <qpalette.h>
00025
00026
00027
00028
00029
00030
00031
00032
00037 void kDrawNextButton(QPainter *p, const QRect &r, const QColorGroup &g,
00038 bool sunken=false, const QBrush *fill=0);
00039
00040 void kDrawNextButton(QPainter *p, int x, int y, int w, int h,
00041 const QColorGroup &g, bool sunken=false,
00042 const QBrush *fill=0);
00043
00047 void kDrawBeButton(QPainter *p, QRect &r, const QColorGroup &g,
00048 bool sunken=false, const QBrush *fill=0);
00049
00050 void kDrawBeButton(QPainter *p, int x, int y, int w, int h,
00051 const QColorGroup &g, bool sunken=false,
00052 const QBrush *fill=0);
00053
00058 void kDrawRoundButton(QPainter *p, const QRect &r, const QColorGroup &g,
00059 bool sunken=false);
00060
00061 void kDrawRoundButton(QPainter *p, int x, int y, int w, int h,
00062 const QColorGroup &g, bool sunken=false);
00063
00068 void kRoundMaskRegion(QRegion &r, int x, int y, int w, int h);
00069
00074 void kDrawRoundMask(QPainter *p, int x, int y, int w, int h, bool clear=false);
00075
00082 void kColorBitmaps(QPainter *p, const QColorGroup &g, int x, int y,
00083 QBitmap *lightColor=0, QBitmap *midColor=0,
00084 QBitmap *midlightColor=0, QBitmap *darkColor=0,
00085 QBitmap *blackColor=0, QBitmap *whiteColor=0);
00086
00087 void kColorBitmaps(QPainter *p, const QColorGroup &g, int x, int y, int w,
00088 int h, bool isXBitmaps=true, const uchar *lightColor = 0,
00089 const uchar *midColor=0, const uchar *midlightColor=0,
00090 const uchar *darkColor=0, const uchar *blackColor=0,
00091 const uchar *whiteColor=0);
00092
00093 #endif