kdefx
KPixmapSplitter Class Reference
A class to split a pixmap into several items. More...
#include <kpixmapsplitter.h>
Public Member Functions | |
QRect | coordinates (const QChar &ch) |
QRect | coordinates (int pos) |
QSize | itemSize () const |
KPixmapSplitter () | |
const QPixmap & | pixmap () const |
void | setHSpacing (int spacing) |
void | setItemSize (const QSize &size) |
void | setPixmap (const QPixmap &pixmap) |
void | setVSpacing (int spacing) |
~KPixmapSplitter () |
Detailed Description
A class to split a pixmap into several items.If you have a pixmap containing several items (icons), you can use this class to get the coordinates of each item.
For example, if you have a pixmap with 25 items and you want to get the 4th item as a pixmap (every item being 20x10 pixels):
KPixmapSplitter splitter; splitter.setPixmap( somePixmap ); splitter.setItemSize( QSize( 20, 10 )); QPixmap item( 20, 10 ); item.fill( Qt::white ); QRect rect = splitter.coordinates( 4 ); if ( !rect.isEmpty() ) bitBlt( &item, QPoint(0,0), &somePixmap, rect, CopyROP );
Definition at line 53 of file kpixmapsplitter.h.
Constructor & Destructor Documentation
KPixmapSplitter::KPixmapSplitter | ( | ) |
Constructor, does nothing but initialize some default-values.
Definition at line 22 of file kpixmapsplitter.cpp.
KPixmapSplitter::~KPixmapSplitter | ( | ) |
Definition at line 32 of file kpixmapsplitter.cpp.
Member Function Documentation
Overloaded for convenience.
Returns the item at the position of the given character (when using a latin1 font-pixmap)
Definition at line 91 of file kpixmapsplitter.cpp.
QRect KPixmapSplitter::coordinates | ( | int | pos | ) |
- Returns:
- the coordinates of the item at position pos in the given pixmap.
Definition at line 67 of file kpixmapsplitter.cpp.
QSize KPixmapSplitter::itemSize | ( | ) | const [inline] |
- Returns:
- the set size of the items (coordinates) you want to get out of the given pixmap.
Definition at line 83 of file kpixmapsplitter.h.
const QPixmap& KPixmapSplitter::pixmap | ( | ) | const [inline] |
- Returns:
- the pixmap that has been set via setPixmap().
Definition at line 70 of file kpixmapsplitter.h.
void KPixmapSplitter::setHSpacing | ( | int | spacing | ) |
If there is space between columns in the given pixmap, you have to specify how many pixels there are.
Definition at line 58 of file kpixmapsplitter.cpp.
void KPixmapSplitter::setItemSize | ( | const QSize & | size | ) |
Sets the size of the items you want to get out of the given pixmap.
The QRect of coordinates(int) will have the width and height of exactly this size
.
Definition at line 42 of file kpixmapsplitter.cpp.
void KPixmapSplitter::setPixmap | ( | const QPixmap & | pixmap | ) |
void KPixmapSplitter::setVSpacing | ( | int | spacing | ) |
If there is space between rows in the given pixmap, you have to specify how many pixels there are.
Definition at line 50 of file kpixmapsplitter.cpp.
The documentation for this class was generated from the following files: