int nxtk_filltrapwindow(NXTKWINDOW hfwnd,
                        FAR const struct nxgl_trapezoid_s *trap,
                        nxgl_mxpixel_t color[CONFIG_NX_NPLANES])
{
  FAR struct nxtk_framedwindow_s *fwnd = (FAR struct nxtk_framedwindow_s *)hfwnd;
  struct nxgl_rect_s relclip;
  struct nxgl_trapezoid_s reltrap;

#ifdef CONFIG_DEBUG
  if (!hfwnd || !trap || !color)
    {
      set_errno(EINVAL);
      return ERROR;
    }
#endif

  /* Move the trapezoid from window contents area to window area */

  nxgl_trapoffset(&reltrap, trap,
                  fwnd->fwrect.pt1.x - fwnd->wnd.bounds.pt1.x,
                  fwnd->fwrect.pt1.y - fwnd->wnd.bounds.pt1.y);
  
  /* Perform the fill, clipping to the client window */

  nxgl_rectoffset(&relclip, &fwnd->fwrect, -fwnd->wnd.bounds.pt1.x,
                  -fwnd->wnd.bounds.pt1.y);
  
  return nx_filltrapezoid((NXWINDOW)hfwnd, &relclip, &reltrap, color);
}
Exemple #2
0
int nx_drawline(NXWINDOW hwnd, FAR struct nxgl_vector_s *vector,
                nxgl_coord_t width, nxgl_mxpixel_t color[CONFIG_NX_NPLANES])
{
  struct nxgl_trapezoid_s trap[3];
  struct nxgl_rect_s rect;
  int ret;

#ifdef CONFIG_DEBUG
  if (!hwnd || !vector || width < 1 || !color)
    {
      set_errno(EINVAL);
      return ERROR;
    }
#endif

  ret = nxgl_splitline(vector, trap, &rect, width);
  switch (ret)
    {
      case 0:
        ret = nx_filltrapezoid(hwnd, NULL, &trap[0], color);
        if (ret == OK)
          {
            ret = nx_filltrapezoid(hwnd, NULL, &trap[1], color);
            if (ret == OK)
              {
                ret = nx_filltrapezoid(hwnd, NULL, &trap[2], color);
              }
          }
        break;

      case 1:
        ret = nx_filltrapezoid(hwnd, NULL, &trap[1], color);
        break;

      case 2:
        ret = nx_fill(hwnd, &rect, color);
        break;

      default:
        set_errno(-ret);
        return ERROR;
    }

  return ret;
}
int nxtk_filltraptoolbar(NXTKWINDOW hfwnd, FAR const struct nxgl_trapezoid_s *trap,
                        nxgl_mxpixel_t color[CONFIG_NX_NPLANES])
{
  FAR struct nxtk_framedwindow_s *fwnd = (FAR struct nxtk_framedwindow_s *)hfwnd;
  struct nxgl_rect_s relclip;

#ifdef CONFIG_DEBUG
  if (!hfwnd || !trap || !color)
    {
      errno = EINVAL;
      return ERROR;
    }
#endif

  /* Perform the fill, clipping to the client window */

  nxgl_rectoffset(&relclip, &fwnd->tbrect, -fwnd->wnd.bounds.pt1.x, -fwnd->wnd.bounds.pt1.y);
  return nx_filltrapezoid((NXWINDOW)hfwnd, &relclip, trap, color);
}
Exemple #4
0
int nx_drawline(NXWINDOW hwnd, FAR struct nxgl_vector_s *vector,
                nxgl_coord_t width, nxgl_mxpixel_t color[CONFIG_NX_NPLANES],
                uint8_t caps)
{
  struct nxgl_trapezoid_s trap[3];
  struct nxgl_rect_s rect;
  int ret;

#ifdef CONFIG_DEBUG_FEATURES
  if (!hwnd || !vector || width < 1 || !color)
    {
      set_errno(EINVAL);
      return ERROR;
    }
#endif

  /* Split the line into trapezoids */

  ret = nxgl_splitline(vector, trap, &rect, width);
  switch (ret)
    {
      /* 0: Line successfully broken up into three trapezoids.  Values in
       *    traps[0], traps[1], and traps[2] are valid.
       */

      case 0:
        ret = nx_filltrapezoid(hwnd, NULL, &trap[0], color);
        if (ret == OK)
          {
            ret = nx_filltrapezoid(hwnd, NULL, &trap[1], color);
            if (ret == OK)
              {
                ret = nx_filltrapezoid(hwnd, NULL, &trap[2], color);
              }
          }
        break;

      /* 1: Line successfully represented by one trapezoid. Value in traps[1]
       *    is valid.
       */

      case 1:
        ret = nx_filltrapezoid(hwnd, NULL, &trap[1], color);
        break;

      /* 2: Line successfully represented by one rectangle. Value in rect is
       *    valid
       */

      case 2:
        ret = nx_fill(hwnd, &rect, color);
        break;

      /* <0: On errors, a negated errno value is returned. */

      default:
        set_errno(-ret);
        return ERROR;
    }

  /* Draw circular caps at each end of the line to support better line joins */

  if (caps != NX_LINECAP_NONE && width >= 3)
    {
      nxgl_coord_t radius = width >> 1;

      /* Draw a circle at pt1 */

      ret = OK;
      if ((caps & NX_LINECAP_PT1) != 0)
        {
          ret = nx_fillcircle(hwnd, &vector->pt1, radius, color);
        }

      /* Draw a circle at pt2 */

      if (ret == OK && (caps & NX_LINECAP_PT2) != 0)
        {
          ret = nx_fillcircle(hwnd, &vector->pt2, radius, color);
        }
    }