b7a2e519273f1294af261d60cc055af7c4692e5d
[bertos.git] / bertos / drv / lcd_gfx_qt.cpp
1 /**
2  * \file
3  * <!--
4  * This file is part of BeRTOS.
5  *
6  * Bertos is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19  *
20  * As a special exception, you may use this file as part of a free software
21  * library without restriction.  Specifically, if other files instantiate
22  * templates or use macros or inline functions from this file, or you compile
23  * this file and link it with other files to produce an executable, this
24  * file does not by itself cause the resulting executable to be covered by
25  * the GNU General Public License.  This exception does not however
26  * invalidate any other reasons why the executable file might be covered by
27  * the GNU General Public License.
28  *
29  * Copyright 2006, 2008 Develer S.r.l. (http://www.develer.com/)
30  *
31  * -->
32  *
33  * \version $Id$
34  * \author Bernie Innocenti <bernie@codewiz.org>
35  *
36  * \brief Custom control for graphics LCD emulation (implementation)
37  */
38
39 #include "lcd_gfx_qt.h"
40 #include <emul/emul.h>
41 #include <cfg/debug.h>
42 #include <gfx/gfx.h> // CONFIG_BITMAP_FMT
43
44 #include <QtGui/QPainter>
45 #include <QtGui/QImage>
46 #include <QtGui/QSizePolicy>
47 #include <QtCore/QSize>
48
49 // Display colors
50 #define LCD_FG_COLOR 0x0, 0x0, 0x0
51 #define LCD_BG_COLOR 0xBB, 0xCC, 0xBB
52
53
54 EmulLCD::EmulLCD(QWidget *parent) :
55         QFrame(parent),
56         fg_color(LCD_FG_COLOR),
57         bg_brush(QColor(LCD_BG_COLOR))
58 {
59         // Optimized rendering: we repaint everything anyway
60         setAttribute(Qt::WA_NoSystemBackground);
61
62         // initialize bitmap
63         memset(raster, 0xAA, sizeof(raster));
64
65         // set widget frame
66         setFrameStyle(QFrame::Panel | QFrame::Sunken);
67         frame_width = frameWidth();
68
69         setMinimumSize(WIDTH + frame_width * 2, HEIGHT + frame_width * 2);
70
71         #if CONFIG_EMULLCD_SCALE
72                 QSizePolicy pol = QSizePolicy(QSizePolicy::Expanding, QSizePolicy::Preferred, QSizePolicy::Frame);
73                 pol.setHeightForWidth(true);
74         #else
75                 QSizePolicy pol = QSizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed, QSizePolicy::Frame);
76         #endif
77         setSizePolicy(pol);
78 }
79
80
81 EmulLCD::~EmulLCD()
82 {
83         // nop
84 }
85
86 #if CONFIG_EMULLCD_SCALE
87 int EmulLCD::heightForWidth(int w) const
88 {
89                 int h;
90
91                 w -= frame_width * 2;
92                 h = (w * HEIGHT + WIDTH/2) / WIDTH;
93                 h += frame_width * 2;
94
95                 return h;
96 }
97 #endif // CONFIG_EMULLCD_SCALE
98
99 void EmulLCD::paintEvent(QPaintEvent * /*event*/)
100 {
101         QPainter p(this);
102         QImage img(raster, WIDTH, HEIGHT, QImage::Format_Mono);
103
104         #if CONFIG_EMULLCD_SCALE
105                 int w = width() - frame_width * 2;
106                 int h = height() - frame_width * 2;
107                 if ((w != WIDTH) || (h != HEIGHT))
108                 {
109                         p.scale((qreal)w / WIDTH, (qreal)h / HEIGHT);
110                         //p.setRenderHint(QPainter::SmoothPixmapTransform);
111                 }
112         #endif // CONFIG_EMULLCD_SCALE
113
114         p.setBackgroundMode(Qt::OpaqueMode);
115         p.setBackground(bg_brush);
116         p.setPen(fg_color);
117
118         p.drawImage(QPoint(frame_width, frame_width), img);
119 }
120
121 void EmulLCD::writeRaster(uint8_t *new_raster)
122 {
123 #if CONFIG_BITMAP_FMT == BITMAP_FMT_PLANAR_H_MSB
124
125         // Straight copy
126         //memcpy(raster, new_raster, sizeof(raster));
127
128         // Inverting copy
129         for (int i = 0; i < (int)sizeof(raster); ++i)
130                 raster[i] = ~new_raster[i];
131
132 #elif CONFIG_BITMAP_FMT == BITMAP_FMT_PLANAR_V_LSB
133
134         // Rotation + inversion
135         for (int y = 0; y < HEIGHT; ++y)
136         {
137                 for (int xbyte = 0; xbyte < WIDTH/8; ++xbyte)
138                 {
139                         uint8_t v = 0;
140                         for (int xbit = 0; xbit < 8; ++xbit)
141                                 v |= (new_raster[(xbyte * 8 + xbit) + (y / 8) * WIDTH] & (1 << (y%8)) )
142                                         ? (1 << (7 - xbit)) : 0;
143
144                         raster[y * ((WIDTH + 7) / 8) + xbyte] = v;
145                 }
146         }
147 #else
148         #error Unsupported bitmap format
149 #endif
150
151         repaint();
152 }
153
154
155
156 #include <gfx/gfx.h>
157 #include <cfg/debug.h>
158
159 DECLARE_WALL(wall_before_raster, WALL_SIZE)
160 /**
161  * Raster buffer to draw into.
162  *
163  * Bits in the bitmap bytes have vertical orientation,
164  * as required by the LCD driver.
165  */
166 static uint8_t lcd_raster[RAST_SIZE(EmulLCD::WIDTH, EmulLCD::HEIGHT)];
167 DECLARE_WALL(wall_after_raster, WALL_SIZE)
168
169 /** Default LCD bitmap */
170 struct Bitmap lcd_bitmap;
171
172 /*extern "C"*/ void lcd_init(void)
173 {
174         //FIXME INIT_WALL(wall_before_raster);
175         //FIXME INIT_WALL(wall_after_raster);
176         gfx_bitmapInit(&lcd_bitmap, lcd_raster, EmulLCD::WIDTH, EmulLCD::HEIGHT);
177         gfx_bitmapClear(&lcd_bitmap);
178 }
179
180 /*extern "C"*/ void lcd_blitBitmap(Bitmap *bm)
181 {
182         //FIXME CHECK_WALL(wall_before_raster);
183         //FIXME CHECK_WALL(wall_after_raster);
184         emul->emulLCD->writeRaster(bm->raster);
185 }
186
187 #include "lcd_gfx_qt_moc.cpp"
188