Lines Matching refs:map

92 GX_PIXELMAP *map;  in _gx_scrollbar_draw()  local
140 _gx_context_pixelmap_get(scrollbar -> gx_scrollbar_appearance.gx_scroll_up_pixelmap, &map); in _gx_scrollbar_draw()
142 if (map) in _gx_scrollbar_draw()
149 xpos = (GX_VALUE)(xpos + (widget_width - map -> gx_pixelmap_width) / 2); in _gx_scrollbar_draw()
153 … size.gx_rectangle_top = (GX_VALUE)(size.gx_rectangle_top + map -> gx_pixelmap_height); in _gx_scrollbar_draw()
162 ypos = (GX_VALUE)(ypos + (widget_height - map -> gx_pixelmap_height) / 2); in _gx_scrollbar_draw()
164 … size.gx_rectangle_left = (GX_VALUE)(size.gx_rectangle_left + map -> gx_pixelmap_width); in _gx_scrollbar_draw()
167 _gx_canvas_pixelmap_draw(xpos, ypos, map); in _gx_scrollbar_draw()
170 … _gx_context_pixelmap_get(scrollbar -> gx_scrollbar_appearance.gx_scroll_down_pixelmap, &map); in _gx_scrollbar_draw()
172 if (map) in _gx_scrollbar_draw()
177 … size.gx_rectangle_bottom = (GX_VALUE)(size.gx_rectangle_bottom - map -> gx_pixelmap_height); in _gx_scrollbar_draw()
181 xpos = (GX_VALUE)(xpos + (widget_width - map -> gx_pixelmap_width) / 2); in _gx_scrollbar_draw()
188 … size.gx_rectangle_right = (GX_VALUE)(size.gx_rectangle_right - map -> gx_pixelmap_width); in _gx_scrollbar_draw()
194 ypos = (GX_VALUE)(ypos + (widget_height - map -> gx_pixelmap_height) / 2); in _gx_scrollbar_draw()
197 _gx_canvas_pixelmap_draw(xpos, ypos, map); in _gx_scrollbar_draw()
200 … _gx_context_pixelmap_get(scrollbar -> gx_scrollbar_appearance.gx_scroll_fill_pixelmap, &map); in _gx_scrollbar_draw()
202 if (map) in _gx_scrollbar_draw()
207 _gx_canvas_pixelmap_tile(&size, map); in _gx_scrollbar_draw()
213 xpos = (GX_VALUE)(xpos + (widget_width - map -> gx_pixelmap_width) / 2); in _gx_scrollbar_draw()
217 ypos = (GX_VALUE)(ypos + (widget_height - map -> gx_pixelmap_height) / 2); in _gx_scrollbar_draw()
225 _gx_canvas_pixelmap_draw(xpos, ypos, map); in _gx_scrollbar_draw()