我有一個自我矩形編碼(不使用QRect
教育目的),它看起來像這樣:我應該使用哪個Qt類來表示矩形上的圖像?
class Block {
private: // also has getters and setters for this stuff
int m_x;
int m_y;
uint m_width;
uint m_height;
QColor m_color;
public:
Block(int x = 0, int y = 0, uint w = 64, uint h = 64);
Block(const QColor &color, int x = 0, int y = 0, uint w = 64, uint h = 64);
void paint(QPainter &painter) const
{
painter.fillRect(m_x, m_y, m_width, m_height, m_color);
}
};
現在,我想增加對圖像的支持,所以該塊可以有顏色或圖像(如果同時提供,圖像將被使用)。 問題是,有太多的類來表示圖像(QPixmap
,QImage
, QIcon
),我不知道應該使用哪一個。 有什麼區別,哪一個最適合簡單地將資源圖像繪製成矩形?