diff options
Diffstat (limited to 'src/yuv_draw.h')
-rw-r--r-- | src/yuv_draw.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/yuv_draw.h b/src/yuv_draw.h index 651eb8e..62f7d02 100644 --- a/src/yuv_draw.h +++ b/src/yuv_draw.h @@ -35,6 +35,9 @@ #include <qimage.h> #include <qpainter.h> +#define ICON_HEIGHT 48 +#define ICON_WIDTH 48 + class YUVDraw { public: YUVDraw(); @@ -58,6 +61,9 @@ private: QPixmap *bottom_pixmap; unsigned char bottom_grey[720][20]; + + QImage *img_muted; + QImage *img_unmuted; }; #endif/*__MIAV_YUV_DRAW_H__*/ |