2016-02-08 09:59:48 +08:00
|
|
|
/*
|
|
|
|
* File : dc_client.c
|
2017-10-10 00:17:58 +08:00
|
|
|
* This file is part of RT-Thread GUI Engine
|
|
|
|
* COPYRIGHT (C) 2006 - 2017, RT-Thread Development Team
|
2016-02-08 09:59:48 +08:00
|
|
|
*
|
2017-10-10 00:17:58 +08:00
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2016-02-08 09:59:48 +08:00
|
|
|
*
|
|
|
|
* Change Logs:
|
|
|
|
* Date Author Notes
|
|
|
|
* 2009-10-16 Bernard first version
|
|
|
|
* 2010-08-09 Bernard rename hardware dc to client dc
|
|
|
|
* 2010-09-13 Bernard fix rtgui_dc_client_blit_line issue, which found
|
|
|
|
* by appele
|
|
|
|
* 2010-09-14 Bernard fix vline and hline coordinate issue
|
|
|
|
*/
|
|
|
|
#include <rtgui/dc.h>
|
|
|
|
|
|
|
|
#include <rtgui/driver.h>
|
|
|
|
#include <rtgui/rtgui_system.h>
|
|
|
|
#include <rtgui/rtgui_app.h>
|
|
|
|
#include <rtgui/rtgui_server.h>
|
|
|
|
#include <rtgui/widgets/container.h>
|
|
|
|
#include <rtgui/widgets/window.h>
|
|
|
|
|
|
|
|
static void rtgui_dc_client_draw_point(struct rtgui_dc *dc, int x, int y);
|
|
|
|
static void rtgui_dc_client_draw_color_point(struct rtgui_dc *dc, int x, int y, rtgui_color_t color);
|
|
|
|
static void rtgui_dc_client_draw_hline(struct rtgui_dc *dc, int x1, int x2, int y);
|
|
|
|
static void rtgui_dc_client_draw_vline(struct rtgui_dc *dc, int x, int y1, int y2);
|
|
|
|
static void rtgui_dc_client_fill_rect(struct rtgui_dc *dc, rtgui_rect_t *rect);
|
|
|
|
static void rtgui_dc_client_blit_line(struct rtgui_dc *self, int x1, int x2, int y, rt_uint8_t *line_data);
|
|
|
|
static void rtgui_dc_client_blit(struct rtgui_dc *dc, struct rtgui_point *dc_point, struct rtgui_dc *dest, rtgui_rect_t *rect);
|
|
|
|
static rt_bool_t rtgui_dc_client_fini(struct rtgui_dc *dc);
|
|
|
|
|
|
|
|
#define hw_driver (rtgui_graphic_driver_get_default())
|
|
|
|
#define dc_set_foreground(c) dc->gc.foreground = c
|
|
|
|
#define dc_set_background(c) dc->gc.background = c
|
|
|
|
#define _int_swap(x, y) do {x ^= y; y ^= x; x ^= y;} while (0)
|
|
|
|
|
|
|
|
const struct rtgui_dc_engine dc_client_engine =
|
|
|
|
{
|
|
|
|
rtgui_dc_client_draw_point,
|
|
|
|
rtgui_dc_client_draw_color_point,
|
|
|
|
rtgui_dc_client_draw_vline,
|
|
|
|
rtgui_dc_client_draw_hline,
|
|
|
|
rtgui_dc_client_fill_rect,
|
|
|
|
rtgui_dc_client_blit_line,
|
|
|
|
rtgui_dc_client_blit,
|
|
|
|
|
|
|
|
rtgui_dc_client_fini,
|
|
|
|
};
|
|
|
|
|
|
|
|
void rtgui_dc_client_init(rtgui_widget_t *owner)
|
|
|
|
{
|
|
|
|
struct rtgui_dc *dc;
|
|
|
|
|
|
|
|
RT_ASSERT(owner != RT_NULL);
|
|
|
|
|
|
|
|
dc = RTGUI_WIDGET_DC(owner);
|
|
|
|
dc->type = RTGUI_DC_CLIENT;
|
|
|
|
dc->engine = &dc_client_engine;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct rtgui_dc *rtgui_dc_client_create(rtgui_widget_t *owner)
|
|
|
|
{
|
|
|
|
/* adjudge owner */
|
|
|
|
if (owner == RT_NULL || owner->toplevel == RT_NULL) return RT_NULL;
|
|
|
|
|
|
|
|
return RTGUI_WIDGET_DC(owner);
|
|
|
|
}
|
|
|
|
|
|
|
|
static rt_bool_t rtgui_dc_client_fini(struct rtgui_dc *dc)
|
|
|
|
{
|
|
|
|
if (dc == RT_NULL || dc->type != RTGUI_DC_CLIENT) return RT_FALSE;
|
|
|
|
|
|
|
|
return RT_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* draw a logic point on device
|
|
|
|
*/
|
|
|
|
static void rtgui_dc_client_draw_point(struct rtgui_dc *self, int x, int y)
|
|
|
|
{
|
|
|
|
rtgui_rect_t rect;
|
|
|
|
rtgui_widget_t *owner;
|
|
|
|
|
|
|
|
if (self == RT_NULL) return;
|
2017-10-10 00:17:58 +08:00
|
|
|
if (!rtgui_dc_get_visible(self)) return;
|
2016-02-08 09:59:48 +08:00
|
|
|
|
|
|
|
/* get owner */
|
|
|
|
owner = RTGUI_CONTAINER_OF(self, struct rtgui_widget, dc_type);
|
|
|
|
|
|
|
|
x = x + owner->extent.x1;
|
|
|
|
y = y + owner->extent.y1;
|
|
|
|
|
|
|
|
if (rtgui_region_contains_point(&(owner->clip), x, y, &rect) == RT_EOK)
|
|
|
|
{
|
|
|
|
/* draw this point */
|
|
|
|
hw_driver->ops->set_pixel(&(owner->gc.foreground), x, y);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void rtgui_dc_client_draw_color_point(struct rtgui_dc *self, int x, int y, rtgui_color_t color)
|
|
|
|
{
|
|
|
|
rtgui_rect_t rect;
|
|
|
|
rtgui_widget_t *owner;
|
|
|
|
|
|
|
|
if (self == RT_NULL) return;
|
2017-10-10 00:17:58 +08:00
|
|
|
if (!rtgui_dc_get_visible(self)) return;
|
2016-02-08 09:59:48 +08:00
|
|
|
|
|
|
|
/* get owner */
|
|
|
|
owner = RTGUI_CONTAINER_OF(self, struct rtgui_widget, dc_type);
|
|
|
|
|
|
|
|
x = x + owner->extent.x1;
|
|
|
|
y = y + owner->extent.y1;
|
|
|
|
|
|
|
|
if (rtgui_region_contains_point(&(owner->clip), x, y, &rect) == RT_EOK)
|
|
|
|
{
|
|
|
|
/* draw this point */
|
|
|
|
hw_driver->ops->set_pixel(&color, x, y);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* draw a logic vertical line on device
|
|
|
|
*/
|
|
|
|
static void rtgui_dc_client_draw_vline(struct rtgui_dc *self, int x, int y1, int y2)
|
|
|
|
{
|
|
|
|
register rt_base_t index;
|
|
|
|
rtgui_widget_t *owner;
|
|
|
|
|
|
|
|
if (self == RT_NULL) return;
|
2017-10-10 00:17:58 +08:00
|
|
|
if (!rtgui_dc_get_visible(self)) return;
|
2016-02-08 09:59:48 +08:00
|
|
|
|
|
|
|
/* get owner */
|
|
|
|
owner = RTGUI_CONTAINER_OF(self, struct rtgui_widget, dc_type);
|
|
|
|
|
|
|
|
x = x + owner->extent.x1;
|
|
|
|
y1 = y1 + owner->extent.y1;
|
|
|
|
y2 = y2 + owner->extent.y1;
|
|
|
|
if (y1 > y2) _int_swap(y1, y2);
|
|
|
|
|
|
|
|
if (owner->clip.data == RT_NULL)
|
|
|
|
{
|
|
|
|
rtgui_rect_t *prect;
|
|
|
|
|
|
|
|
prect = &(owner->clip.extents);
|
|
|
|
|
|
|
|
/* calculate vline intersect */
|
|
|
|
if (prect->x1 > x || prect->x2 <= x) return;
|
|
|
|
if (prect->y2 <= y1 || prect->y1 > y2) return;
|
|
|
|
|
|
|
|
if (prect->y1 > y1) y1 = prect->y1;
|
|
|
|
if (prect->y2 < y2) y2 = prect->y2;
|
|
|
|
|
|
|
|
/* draw vline */
|
|
|
|
hw_driver->ops->draw_vline(&(owner->gc.foreground), x, y1, y2);
|
|
|
|
}
|
|
|
|
else
|
2017-10-10 00:17:58 +08:00
|
|
|
{
|
|
|
|
for (index = 0; index < rtgui_region_num_rects(&(owner->clip)); index ++)
|
|
|
|
{
|
|
|
|
rtgui_rect_t *prect;
|
|
|
|
register rt_base_t draw_y1, draw_y2;
|
|
|
|
|
|
|
|
prect = ((rtgui_rect_t *)(owner->clip.data + index + 1));
|
|
|
|
draw_y1 = y1;
|
|
|
|
draw_y2 = y2;
|
|
|
|
|
|
|
|
/* calculate vline clip */
|
|
|
|
if (prect->x1 > x || prect->x2 <= x) continue;
|
|
|
|
if (prect->y2 <= y1 || prect->y1 > y2) continue;
|
|
|
|
|
|
|
|
if (prect->y1 > y1) draw_y1 = prect->y1;
|
|
|
|
if (prect->y2 < y2) draw_y2 = prect->y2;
|
|
|
|
|
|
|
|
/* draw vline */
|
|
|
|
hw_driver->ops->draw_vline(&(owner->gc.foreground), x, draw_y1, draw_y2);
|
|
|
|
}
|
2016-02-08 09:59:48 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* draw a logic horizontal line on device
|
|
|
|
*/
|
|
|
|
static void rtgui_dc_client_draw_hline(struct rtgui_dc *self, int x1, int x2, int y)
|
|
|
|
{
|
|
|
|
register rt_base_t index;
|
|
|
|
rtgui_widget_t *owner;
|
|
|
|
|
|
|
|
if (self == RT_NULL) return;
|
2017-10-10 00:17:58 +08:00
|
|
|
if (!rtgui_dc_get_visible(self)) return;
|
2016-02-08 09:59:48 +08:00
|
|
|
|
|
|
|
/* get owner */
|
|
|
|
owner = RTGUI_CONTAINER_OF(self, struct rtgui_widget, dc_type);
|
|
|
|
|
|
|
|
/* convert logic to device */
|
|
|
|
x1 = x1 + owner->extent.x1;
|
|
|
|
x2 = x2 + owner->extent.x1;
|
|
|
|
if (x1 > x2) _int_swap(x1, x2);
|
|
|
|
y = y + owner->extent.y1;
|
|
|
|
|
|
|
|
if (owner->clip.data == RT_NULL)
|
|
|
|
{
|
|
|
|
rtgui_rect_t *prect;
|
|
|
|
|
|
|
|
prect = &(owner->clip.extents);
|
|
|
|
|
|
|
|
/* calculate vline intersect */
|
|
|
|
if (prect->y1 > y || prect->y2 <= y) return;
|
|
|
|
if (prect->x2 <= x1 || prect->x1 > x2) return;
|
|
|
|
|
|
|
|
if (prect->x1 > x1) x1 = prect->x1;
|
|
|
|
if (prect->x2 < x2) x2 = prect->x2;
|
|
|
|
|
|
|
|
/* draw hline */
|
|
|
|
hw_driver->ops->draw_hline(&(owner->gc.foreground), x1, x2, y);
|
|
|
|
}
|
|
|
|
else
|
2017-10-10 00:17:58 +08:00
|
|
|
{
|
|
|
|
for (index = 0; index < rtgui_region_num_rects(&(owner->clip)); index ++)
|
2016-02-08 09:59:48 +08:00
|
|
|
{
|
|
|
|
rtgui_rect_t *prect;
|
|
|
|
register rt_base_t draw_x1, draw_x2;
|
|
|
|
|
|
|
|
prect = ((rtgui_rect_t *)(owner->clip.data + index + 1));
|
|
|
|
draw_x1 = x1;
|
|
|
|
draw_x2 = x2;
|
|
|
|
|
|
|
|
/* calculate hline clip */
|
|
|
|
if (prect->y1 > y || prect->y2 <= y) continue;
|
|
|
|
if (prect->x2 <= x1 || prect->x1 > x2) continue;
|
|
|
|
|
|
|
|
if (prect->x1 > x1) draw_x1 = prect->x1;
|
|
|
|
if (prect->x2 < x2) draw_x2 = prect->x2;
|
|
|
|
|
|
|
|
/* draw hline */
|
|
|
|
hw_driver->ops->draw_hline(&(owner->gc.foreground), draw_x1, draw_x2, y);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void rtgui_dc_client_fill_rect(struct rtgui_dc *self, struct rtgui_rect *rect)
|
|
|
|
{
|
|
|
|
rtgui_color_t foreground;
|
|
|
|
register rt_base_t index;
|
|
|
|
rtgui_widget_t *owner;
|
|
|
|
|
|
|
|
RT_ASSERT(self);
|
|
|
|
RT_ASSERT(rect);
|
|
|
|
|
2017-10-10 00:17:58 +08:00
|
|
|
if (!rtgui_dc_get_visible(self)) return;
|
2016-02-08 09:59:48 +08:00
|
|
|
|
|
|
|
/* get owner */
|
|
|
|
owner = RTGUI_CONTAINER_OF(self, struct rtgui_widget, dc_type);
|
|
|
|
|
|
|
|
/* save foreground color */
|
|
|
|
foreground = owner->gc.foreground;
|
|
|
|
|
|
|
|
/* set background color as foreground color */
|
|
|
|
owner->gc.foreground = owner->gc.background;
|
|
|
|
|
|
|
|
/* fill rect */
|
|
|
|
for (index = rect->y1; index < rect->y2; index ++)
|
|
|
|
{
|
|
|
|
rtgui_dc_client_draw_hline(self, rect->x1, rect->x2, index);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* restore foreground color */
|
|
|
|
owner->gc.foreground = foreground;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void rtgui_dc_client_blit_line(struct rtgui_dc *self, int x1, int x2, int y, rt_uint8_t *line_data)
|
|
|
|
{
|
|
|
|
register rt_base_t index;
|
|
|
|
rtgui_widget_t *owner;
|
|
|
|
|
|
|
|
if (self == RT_NULL) return;
|
2017-10-10 00:17:58 +08:00
|
|
|
if (!rtgui_dc_get_visible(self)) return;
|
2016-02-08 09:59:48 +08:00
|
|
|
|
|
|
|
/* get owner */
|
|
|
|
owner = RTGUI_CONTAINER_OF(self, struct rtgui_widget, dc_type);
|
|
|
|
|
|
|
|
/* convert logic to device */
|
|
|
|
x1 = x1 + owner->extent.x1;
|
|
|
|
x2 = x2 + owner->extent.x1;
|
|
|
|
if (x1 > x2) _int_swap(x1, x2);
|
|
|
|
y = y + owner->extent.y1;
|
|
|
|
|
|
|
|
if (rtgui_region_is_flat(&(owner->clip)) == RT_EOK)
|
|
|
|
{
|
|
|
|
rtgui_rect_t *prect;
|
|
|
|
int offset = 0;
|
|
|
|
prect = &(owner->clip.extents);
|
|
|
|
|
|
|
|
/* calculate vline intersect */
|
|
|
|
if (prect->y1 > y || prect->y2 <= y) return;
|
|
|
|
if (prect->x2 <= x1 || prect->x1 > x2) return;
|
|
|
|
|
|
|
|
if (prect->x1 > x1) x1 = prect->x1;
|
|
|
|
if (prect->x2 < x2) x2 = prect->x2;
|
|
|
|
|
|
|
|
/* patch note:
|
|
|
|
* We need to adjust the offset when update widget clip!
|
|
|
|
* Of course at ordinary times for 0. General */
|
|
|
|
offset = owner->clip.extents.x1 - owner->extent.x1;
|
|
|
|
offset = offset * _UI_BITBYTES(hw_driver->bits_per_pixel);
|
|
|
|
/* draw hline */
|
|
|
|
hw_driver->ops->draw_raw_hline(line_data + offset, x1, x2, y);
|
|
|
|
}
|
|
|
|
else
|
2017-10-10 00:17:58 +08:00
|
|
|
{
|
|
|
|
for (index = 0; index < rtgui_region_num_rects(&(owner->clip)); index ++)
|
2016-02-08 09:59:48 +08:00
|
|
|
{
|
|
|
|
rtgui_rect_t *prect;
|
|
|
|
register rt_base_t draw_x1, draw_x2;
|
|
|
|
|
|
|
|
prect = ((rtgui_rect_t *)(owner->clip.data + index + 1));
|
|
|
|
draw_x1 = x1;
|
|
|
|
draw_x2 = x2;
|
|
|
|
|
|
|
|
/* calculate hline clip */
|
|
|
|
if (prect->y1 > y || prect->y2 <= y) continue;
|
|
|
|
if (prect->x2 <= x1 || prect->x1 > x2) continue;
|
|
|
|
|
|
|
|
if (prect->x1 > x1) draw_x1 = prect->x1;
|
|
|
|
if (prect->x2 < x2) draw_x2 = prect->x2;
|
|
|
|
|
|
|
|
/* draw hline */
|
|
|
|
hw_driver->ops->draw_raw_hline(line_data + (draw_x1 - x1) * _UI_BITBYTES(hw_driver->bits_per_pixel), draw_x1, draw_x2, y);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void rtgui_dc_client_blit(struct rtgui_dc *dc, struct rtgui_point *dc_point, struct rtgui_dc *dest, rtgui_rect_t *rect)
|
|
|
|
{
|
|
|
|
/* not blit in hardware dc */
|
|
|
|
return ;
|
|
|
|
}
|
|
|
|
|