KImageEffect is fully implemented except as noted:
blend (x, y, upper, lower, output)
TAKES x (int), y (int), upper (QImage), lower (QImage), output (QImage) and RETURNS a tuple - ( result (int), x (int), y (int)). blend is a static member function.
C++: static bool blend (int& x, int& y, const QImage& upper, const QImage& lower, QImage& output) |
static QImage& dither (QImage& img, const QColor* palette, int size) |
NOT implemented
kDrawNextButton (p, r, g, sunken, fill)
C++: void kDrawNextButton (QPainter* p, const QRect& r, const QColorGroup& g, bool sunken = 0, const QBrush* fill = 0) |
TAKES p (QPainter), r (QRect), g (QColorGroup), sunken (bool - default = 0), fill (QBrush - default = 0) and RETURNS nothing .
kDrawNextButton (p, x, y, w, h, g, sunken, fill)
C++: void kDrawNextButton (QPainter* p, int x, int y, int w, int h, const QColorGroup& g, bool sunken = 0, const QBrush* fill = 0) |
TAKES p (QPainter), x (int), y (int), w (int), h (int), g (QColorGroup), sunken (bool - default = 0), fill (QBrush - default = 0) and RETURNS nothing .
kDrawBeButton (p, r, g, sunken, fill)
C++: void kDrawBeButton (QPainter* p, QRect& r, const QColorGroup& g, bool sunken = 0, const QBrush* fill = 0) |
TAKES p (QPainter), r (QRect), g (QColorGroup), sunken (bool - default = 0), fill (QBrush - default = 0) and RETURNS nothing .
kDrawBeButton (p, x, y, w, h, g, sunken, fill)
C++: void kDrawBeButton (QPainter* p, int x, int y, int w, int h, const QColorGroup& g, bool sunken = 0, const QBrush* fill = 0) |
TAKES p (QPainter), x (int), y (int), w (int), h (int), g (QColorGroup), sunken (bool - default = 0), fill (QBrush - default = 0) and RETURNS nothing .
kDrawRoundButton (p, r, g, sunken)
C++: void kDrawRoundButton (QPainter* p, const QRect& r, const QColorGroup& g, bool sunken = 0) |
TAKES p (QPainter), r (QRect), g (QColorGroup), sunken (bool - default = 0) and RETURNS nothing .
kDrawRoundButton (p, x, y, w, h, g, sunken)
C++: void kDrawRoundButton (QPainter* p, int x, int y, int w, int h, const QColorGroup& g, bool sunken = 0) |
TAKES p (QPainter), x (int), y (int), w (int), h (int), g (QColorGroup), sunken (bool - default = 0) and RETURNS nothing .
kRoundMaskRegion (r, x, y, w, h)
C++: void kRoundMaskRegion (QRegion& r, int x, int y, int w, int h) |
TAKES r (QRegion), x (int), y (int), w (int), h (int) and RETURNS nothing .
kDrawRoundMask (p, x, y, w, h, clear)
C++: void kDrawRoundMask (QPainter* p, int x, int y, int w, int h, bool clear = 0) |
TAKES p (QPainter), x (int), y (int), w (int), h (int), clear (bool - default = 0) and RETURNS nothing .
kColorBitmaps (p, g, x, y, lightColor, midColor, midlightColor, darkColor, blackColor, whiteColor)
C++: void kColorBitmaps (QPainter* p, const QColorGroup& g, int x, int y, QBitmap* lightColor = 0, QBitmap* midColor = 0, QBitmap* midlightColor = 0, QBitmap* darkColor = 0, QBitmap* blackColor = 0, QBitmap* whiteColor = 0) |
TAKES p (QPainter), g (QColorGroup), x (int), y (int), lightColor (QBitmap - default = 0), midColor (QBitmap - default = 0), midlightColor (QBitmap - default = 0), darkColor (QBitmap - default = 0), blackColor (QBitmap - default = 0), whiteColor (QBitmap - default = 0) and RETURNS nothing .
kColorBitmaps (p, g, x, y, w, h, isXBitmaps, lightColor, midColor, midlightColor, darkColor, blackColor, whiteColor)
C++: void kColorBitmaps (QPainter* p, const QColorGroup& g, int x, int y, int w, int h, bool isXBitmaps = 1, const uchar* lightColor = 0, const uchar* midColor = 0, const uchar* midlightColor = 0, const uchar* darkColor = 0, const uchar* blackColor = 0, const uchar* whiteColor = 0) |
TAKES p (QPainter), g (QColorGroup), x (int), y (int), w (int), h (int), isXBitmaps (bool - default = 1), lightColor (uchar - default = 0), midColor (uchar - default = 0), midlightColor (uchar - default = 0), darkColor (uchar - default = 0), blackColor (uchar - default = 0), whiteColor (uchar - default = 0) and RETURNS nothing .