Completely port to Qt4 with no Q3Support
[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
70
71 EmulLCD::~EmulLCD()
72 {
73         // nop
74 }
75
76
77 QSizePolicy EmulLCD::sizePolicy() const
78 {
79         return QSizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed, QSizePolicy::Frame);
80 }
81
82
83 QSize EmulLCD::sizeHint() const
84 {
85         return QSize(
86                 WIDTH + frame_width * 2,
87                 HEIGHT + frame_width * 2);
88 }
89
90 QSize EmulLCD::minimumSizeHint() const
91 {
92         return sizeHint();
93 }
94
95 void EmulLCD::paintEvent(QPaintEvent * /*event*/)
96 {
97         QPainter p(this);
98         QImage img(raster, WIDTH, HEIGHT, QImage::Format_Mono);
99
100         p.setBackgroundMode(Qt::OpaqueMode);
101         p.setBackground(bg_brush);
102         p.setPen(fg_color);
103         p.drawImage(QPoint(frame_width, frame_width), img);
104 }
105
106 void EmulLCD::writeRaster(uint8_t *new_raster)
107 {
108 #if CONFIG_BITMAP_FMT == BITMAP_FMT_PLANAR_H_MSB
109
110         /* Straight copy */
111         memcpy(raster, new_raster, sizeof(raster));
112
113 #elif CONFIG_BITMAP_FMT == BITMAP_FMT_PLANAR_V_LSB
114
115         /* Rotation */
116         for (int y = 0; y < HEIGHT; ++y)
117         {
118                 for (int xbyte = 0; xbyte < WIDTH/8; ++xbyte)
119                 {
120                         uint8_t v = 0;
121                         for (int xbit = 0; xbit < 8; ++xbit)
122                                 v |= (new_raster[(xbyte * 8 + xbit) + (y / 8) * WIDTH] & (1 << (y%8)) )
123                                         ? 0 : (1 << (7 - xbit));
124
125                         raster[y * ((WIDTH + 7) / 8) + xbyte] = v;
126                 }
127         }
128
129 #else
130         #error Unsupported bitmap format
131 #endif
132
133         repaint();
134 }
135
136
137
138 #include <gfx/gfx.h>
139 #include <cfg/debug.h>
140
141 DECLARE_WALL(wall_before_raster, WALL_SIZE)
142 /**
143  * Raster buffer to draw into.
144  *
145  * Bits in the bitmap bytes have vertical orientation,
146  * as required by the LCD driver.
147  */
148 static uint8_t lcd_raster[RAST_SIZE(EmulLCD::WIDTH, EmulLCD::HEIGHT)];
149 DECLARE_WALL(wall_after_raster, WALL_SIZE)
150
151 /** Default LCD bitmap */
152 struct Bitmap lcd_bitmap;
153
154 /*extern "C"*/ void lcd_init(void)
155 {
156         //FIXME INIT_WALL(wall_before_raster);
157         //FIXME INIT_WALL(wall_after_raster);
158         gfx_bitmapInit(&lcd_bitmap, lcd_raster, EmulLCD::WIDTH, EmulLCD::HEIGHT);
159         gfx_bitmapClear(&lcd_bitmap);
160 }
161
162 /*extern "C"*/ void lcd_blitBitmap(Bitmap *bm)
163 {
164         //FIXME CHECK_WALL(wall_before_raster);
165         //FIXME CHECK_WALL(wall_after_raster);
166         emul->emulLCD->writeRaster(bm->raster);
167 }
168
169 #include "lcd_gfx_qt_moc.cpp"
170