From ab676ec9173dcfba96f6ffb2ed39f0f38a2ce3d6 Mon Sep 17 00:00:00 2001 From: Vincent Sanders Date: Tue, 23 May 2017 09:45:24 +0100 Subject: update atari frontend for corewindow API change --- frontends/atari/misc.h | 10 ++++++---- frontends/atari/treeview.c | 44 +++++++++++++++++++++++++++----------------- 2 files changed, 33 insertions(+), 21 deletions(-) diff --git a/frontends/atari/misc.h b/frontends/atari/misc.h index e581c23b2..05fd1aeef 100644 --- a/frontends/atari/misc.h +++ b/frontends/atari/misc.h @@ -31,10 +31,12 @@ lbuf[7] = (long)sbuf[7]; #define RECT_TO_GRECT(r,g) \ - (g)->g_x = (r->x0 < r->x1) ? r->x0 : r->x1 ; \ - (g)->g_y = (r->y0 < r->y1) ? r->y0 : r->y1 ; \ - (g)->g_w = (r->x0 < r->x1) ? r->x1 - r->x0 : r->x0 - r->x1 ; \ - (g)->g_h = (r->y0 < r->y1) ? r->y1 - r->y0 : r->y0 - r->y1 ; + do { \ + (g)->g_x = (r->x0 < r->x1) ? r->x0 : r->x1 ; \ + (g)->g_y = (r->y0 < r->y1) ? r->y0 : r->y1 ; \ + (g)->g_w = (r->x0 < r->x1) ? r->x1 - r->x0 : r->x0 - r->x1 ; \ + (g)->g_h = (r->y0 < r->y1) ? r->y1 - r->y0 : r->y0 - r->y1 ; \ + } while(0) diff --git a/frontends/atari/treeview.c b/frontends/atari/treeview.c index 8e9834ec3..a72d268cf 100644 --- a/frontends/atari/treeview.c +++ b/frontends/atari/treeview.c @@ -44,8 +44,7 @@ * Declare Core Window Callbacks: */ -void atari_treeview_redraw_request(struct core_window *cw, - const struct rect *r); +nserror atari_treeview_invalidate_area(struct core_window *cw, const struct rect *r); void atari_treeview_update_size(struct core_window *cw, int width, int height); void atari_treeview_scroll_visible(struct core_window *cw, const struct rect *r); @@ -56,7 +55,7 @@ void atari_treeview_drag_status(struct core_window *cw, core_window_drag_status ds); static struct core_window_callback_table cw_t = { - .redraw_request = atari_treeview_redraw_request, + .invalidate = atari_treeview_invalidate_area, .update_size = atari_treeview_update_size, .scroll_visible = atari_treeview_scroll_visible, .get_window_dimensions = atari_treeview_get_window_dimensions, @@ -655,32 +654,43 @@ void atari_treeview_close(struct core_window *cw) */ /** - * Request a redraw of the window + * callback from core to request an invalidation of a window area. * - * \param cw the core window object - * \param r rectangle to redraw + * The specified area of the window should now be considered + * out of date. If the area is NULL the entire window must be + * invalidated. + * + * \param[in] cw The core window to invalidate. + * \param[in] r area to redraw or NULL for the entire window area. + * \return NSERROR_OK on success or appropriate error code. */ -void atari_treeview_redraw_request(struct core_window *cw, const struct rect *r) +nserror atari_treeview_invalidate_area(struct core_window *cw, const struct rect *r) { GRECT area; struct gemtk_wm_scroll_info_s * slid; struct atari_treeview_window * tv = (struct atari_treeview_window *)cw; - RECT_TO_GRECT(r, &area) - assert(tv); - slid = gemtk_wm_get_scroll_info(tv->window); + if (r != NULL) { + RECT_TO_GRECT(r, &area); - //dbg_rect("redraw rect request", r); + slid = gemtk_wm_get_scroll_info(tv->window); - // treeview redraw is always full window width: - area.g_x = 0; - area.g_w = 8000; - // but vertical redraw region is clipped: - area.g_y = r->y0 - (slid->y_pos*slid->y_unit_px); - area.g_h = r->y1 - r->y0; + //dbg_rect("redraw rect request", r); + + // treeview redraw is always full window width: + area.g_x = 0; + area.g_w = 8000; + // but vertical redraw region is clipped: + area.g_y = r->y0 - (slid->y_pos*slid->y_unit_px); + area.g_h = r->y1 - r->y0; + } else { + atari_treeview_get_grect(cw, TREEVIEW_AREA_CONTENT, &area); + } atari_treeview_redraw_grect_request(cw, &area); + + return NSERROR_OK; } /** -- cgit v1.2.3