2008-11-28 15:42:52 +01:00
|
|
|
/****************************************************************************
|
|
|
|
* graphics/nxmu/nxmu_openwindow.c
|
|
|
|
*
|
2019-03-13 19:34:13 +01:00
|
|
|
* Copyright (C) 2008-2011, 2019 Gregory Nutt. All rights reserved.
|
2012-09-13 20:32:24 +02:00
|
|
|
* Author: Gregory Nutt <gnutt@nuttx.org>
|
2008-11-28 15:42:52 +01:00
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in
|
|
|
|
* the documentation and/or other materials provided with the
|
|
|
|
* distribution.
|
|
|
|
* 3. Neither the name NuttX nor the names of its contributors may be
|
|
|
|
* used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
|
|
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
|
|
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
|
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
|
|
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
|
|
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
|
|
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
2019-03-14 18:20:14 +01:00
|
|
|
#include <errno.h>
|
|
|
|
|
|
|
|
#ifdef CONFIG_NX_RAMBACKED
|
|
|
|
#ifdef CONFIG_BUILD_KERNEL
|
|
|
|
# include "nuttx/pgalloc.h"
|
|
|
|
#else
|
|
|
|
# include "nuttx/kmalloc.h"
|
|
|
|
#endif
|
|
|
|
# include <nuttx/nx/nxbe.h>
|
|
|
|
#endif
|
2008-11-28 15:42:52 +01:00
|
|
|
|
2011-07-24 22:49:01 +02:00
|
|
|
#include <nuttx/nx/nx.h>
|
2019-03-13 16:16:30 +01:00
|
|
|
#include "nxmu.h"
|
2008-11-28 15:42:52 +01:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: nxmu_openwindow
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Create a new window.
|
|
|
|
*
|
|
|
|
* Input Parameters:
|
2008-11-29 21:26:18 +01:00
|
|
|
* be - The back-end status structure
|
2010-04-17 18:00:58 +02:00
|
|
|
* wnd - The pre-allocated window structure to be initialized [IN/OUT]
|
2008-11-28 15:42:52 +01:00
|
|
|
*
|
2018-02-01 17:00:02 +01:00
|
|
|
* Returned Value:
|
2008-11-28 15:42:52 +01:00
|
|
|
* None
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2008-11-29 21:26:18 +01:00
|
|
|
void nxmu_openwindow(FAR struct nxbe_state_s *be, FAR struct nxbe_window_s *wnd)
|
2008-11-28 15:42:52 +01:00
|
|
|
{
|
2019-03-14 18:20:14 +01:00
|
|
|
#ifdef CONFIG_NX_RAMBACKED
|
|
|
|
nxgl_coord_t width;
|
|
|
|
nxgl_coord_t height;
|
|
|
|
size_t fbsize;
|
|
|
|
unsigned int bpp;
|
|
|
|
#endif
|
|
|
|
|
2008-11-28 15:42:52 +01:00
|
|
|
/* The window structure was allocated in nx_openwindow and all fields have
|
2019-03-13 19:34:13 +01:00
|
|
|
* been set to zero; conn, flags, cb, and arg which were initialized on
|
|
|
|
* the client side. On the server side, we need only initialize a few
|
|
|
|
* more the non zero fields and insert the new window at the top of the
|
|
|
|
* display.
|
2008-11-28 15:42:52 +01:00
|
|
|
*/
|
|
|
|
|
2019-03-13 19:34:13 +01:00
|
|
|
wnd->be = be;
|
2008-11-28 15:42:52 +01:00
|
|
|
|
2019-03-14 18:20:14 +01:00
|
|
|
#ifdef CONFIG_NX_RAMBACKED
|
|
|
|
/* Allocate framebuffer memory if the per-window framebuffer feature has
|
|
|
|
* been selected.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (NXBE_ISRAMBACKED(wnd))
|
|
|
|
{
|
|
|
|
width = wnd->bounds.pt2.x - wnd->bounds.pt1.x + 1;
|
|
|
|
height = wnd->bounds.pt2.y - wnd->bounds.pt1.y + 1;
|
|
|
|
bpp = wnd->be->plane[0].pinfo.bpp;
|
|
|
|
wnd->stride = (bpp * width + 7) >> 8;
|
|
|
|
fbsize = wnd->stride * height;
|
|
|
|
|
|
|
|
#ifdef CONFIG_BUILD_KERNEL
|
|
|
|
/* Allocate memory from the page pool because:
|
|
|
|
*
|
|
|
|
* 1) The page pool is the largest memory pool and best for
|
|
|
|
* framebuffers.
|
|
|
|
* 2) The allocation will be contiguous and much easier to
|
|
|
|
* map into a user address later.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Determine the number of pages to be allocated */
|
|
|
|
|
|
|
|
wnd->npages = (uint16_t)MM_NPAGES(fbsize);
|
|
|
|
|
|
|
|
/* Allocate the pages */
|
|
|
|
|
2019-03-14 19:19:01 +01:00
|
|
|
wnd->fbmem = (FAR nxgl_mxpixel_t *)mm_pgalloc(wnd->npages);
|
|
|
|
if (wnd->fbmem == NULL)
|
2019-03-14 18:20:14 +01:00
|
|
|
{
|
|
|
|
/* Fall back to no RAM back up */
|
|
|
|
|
|
|
|
gerr("ERROR: mm_pgalloc() failed\n");
|
|
|
|
wnd->stride = 0;
|
|
|
|
wnd->npages = 0;
|
|
|
|
NXBE_CLRRAMBACKED(wnd);
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
/* Allocate memory from the user space heap because:
|
|
|
|
*
|
|
|
|
* 1) The user space heap is the larger memory pool and best for
|
|
|
|
* framebuffers (protected mode).
|
|
|
|
* 2) The user space heap is openly accessible at all privilege
|
|
|
|
* levels.
|
|
|
|
*/
|
|
|
|
|
2019-03-14 19:19:01 +01:00
|
|
|
wnd->fbmem = (FAR nxgl_mxpixel_t *)kumm_malloc(fbsize);
|
|
|
|
if (wnd->fbmem == NULL)
|
2019-03-14 18:20:14 +01:00
|
|
|
{
|
|
|
|
/* Fall back to no RAM back up */
|
|
|
|
|
|
|
|
gerr("ERROR: mm_pgalloc() failed\n");
|
|
|
|
wnd->stride = 0;
|
|
|
|
NXBE_CLRRAMBACKED(wnd);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2008-11-28 15:42:52 +01:00
|
|
|
/* Now, insert the new window at the top on the display. topwind is
|
|
|
|
* never NULL (it may point only at the background window, however)
|
|
|
|
*/
|
|
|
|
|
|
|
|
wnd->above = NULL;
|
|
|
|
wnd->below = be->topwnd;
|
|
|
|
|
|
|
|
be->topwnd->above = wnd;
|
|
|
|
be->topwnd = wnd;
|
|
|
|
|
2008-11-29 15:59:02 +01:00
|
|
|
/* Report the initial size/position of the window to the client */
|
|
|
|
|
2019-03-13 16:16:30 +01:00
|
|
|
nxmu_reportposition(wnd);
|
2008-11-29 15:59:02 +01:00
|
|
|
|
2019-03-13 19:34:13 +01:00
|
|
|
#ifdef CONFIG_NX_XYINPUT
|
2008-11-29 15:59:02 +01:00
|
|
|
/* Provide the initial mouse settings to the client */
|
2008-11-28 15:42:52 +01:00
|
|
|
|
|
|
|
nxmu_mousereport(wnd);
|
|
|
|
#endif
|
|
|
|
}
|