Main Page | Namespace List | Class Hierarchy | Alphabetical List | Class List | Directories | File List | Namespace Members | Class Members | File Members | Related Pages

hrule.cpp

Go to the documentation of this file.
00001 #include <qimage.h>
00002 
00003 QImage* hRule(int w, int h, unsigned char r, unsigned char g, unsigned char b)
00004 {
00006     QPixmap* qimage = new QPixmap(w, h);
00007     qimage->fill(QColor(r,g,b));
00008     QImage* ret = new QImage(qimage->convertToImage());
00009     delete qimage;
00010     return ret;
00011 }

Generated on Sat Nov 5 16:16:55 2005 for OPIE by  doxygen 1.4.2