nuttx-apps/graphics/nxwidgets/src/cnxtkwindow.cxx
Alin Jerpelea ad626736fc apps: graphics: nxwidgets: update licenses to Apache
Gregory Nutt is the copyright holder for those files and he has submitted the
SGA as a result we can migrate the licenses to Apache.

Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
2022-03-11 00:14:32 +02:00

492 lines
14 KiB
C++

/****************************************************************************
* apps/graphics/nxwidgets/src/cnxtkwindow.cxx
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership. The
* ASF licenses this file to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance with the
* License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations
* under the License.
*
****************************************************************************/
/****************************************************************************
* Included Files
****************************************************************************/
#include <nuttx/config.h>
#include <stdint.h>
#include <stdbool.h>
#include <sched.h>
#include <cassert>
#include "graphics/nxwidgets/cwidgetcontrol.hxx"
#include "graphics/nxwidgets/cnxtkwindow.hxx"
#include "graphics/nxwidgets/cnxtoolbar.hxx"
#include "graphics/nxwidgets/cbitmap.hxx"
/****************************************************************************
* Method Implementations
****************************************************************************/
using namespace NXWidgets;
/**
* Constructor.
*
* @param hNxServer Handle to the NX server.
* @param widgetControl Controlling widget for this window.
* @param flags Window properties
*/
CNxTkWindow::CNxTkWindow(NXHANDLE hNxServer, CWidgetControl *widgetControl,
uint8_t flags)
: CCallback(widgetControl)
{
// Save construction values
m_hNxServer = hNxServer;
m_widgetControl = widgetControl;
m_flags = flags;
// Nullify uninitilized pointers and values
m_hNxTkWindow = (NXTKWINDOW )0;
m_toolbar = (CNxToolbar *)0;
m_toolbarHeight = 0;
// Create the CGraphicsPort instance for this window
m_widgetControl->createGraphicsPort(static_cast<INxWindow*>(this));
}
/**
* Destructor.
*/
CNxTkWindow::~CNxTkWindow(void)
{
// It would be a disaster if toolbar instance persists beyond
// the window!
DEBUGASSERT(!m_toolbar);
// Release the window. We do not release the widget control
// instance. The lifetime of that instance is owned by he-who-
// constructed-us.
nxtk_closewindow(m_hNxTkWindow);
delete m_widgetControl;
}
/**
* Creates a new framed window. Window creation is separate from
* object instantiation so that failures can be reported.
*
* @return True if the framed window was successfully created.
*/
bool CNxTkWindow::open(void)
{
// Get the C-callable callback vtable
FAR struct nx_callback_s *vtable = getCallbackVTable();
// Create the window
m_hNxTkWindow = nxtk_openwindow(m_hNxServer, m_flags, vtable,
(FAR void *)static_cast<CCallback*>(this));
return m_hNxTkWindow != NULL;
}
/**
* Each implementation of INxWindow must provide a method to recover
* the contained CWidgetControl instance.
*
* @return The contained CWidgetControl instance
*/
CWidgetControl *CNxTkWindow::getWidgetControl(void) const
{
return m_widgetControl;
}
/**
* Open a toolbar on the framed window. This method both instantiates
* the toolbar object AND calls the INxWindow::open() method to
* create the toolbar. The toolbar is ready for use upon return.
*
* @param height. The height in rows of the tool bar
* @param widgetControl. The controlling widget for this window. If
* none is provided, then a new, vanilla CWidgetControl will be created
* for the tool bar.
* @param height Height of the toolbar
*/
CNxToolbar *CNxTkWindow::openToolbar(nxgl_coord_t height,
CWidgetControl *widgetControl)
{
if (m_hNxTkWindow && !m_toolbar)
{
// Create a new widget control if none was provided
CWidgetControl *allocControl = (CWidgetControl *)0;
if (!widgetControl)
{
// NOTE: This constructor would accept the toolbar "style" as a argument.
// However, we will explicitly set the style below to handle the case
// where the user has provided a custom widget control
allocControl = new CWidgetControl();
if (!allocControl)
{
return (CNxToolbar *)0;
}
// Use the allocated widget control
widgetControl = allocControl;
}
// Get current window style from the NXTK window's widget control
CWidgetStyle style;
m_widgetControl->getWidgetStyle(&style);
// Set the background color(s) to the color of the toolbar
style.colors.background = CONFIG_NXTK_BORDERCOLOR1;
style.colors.selectedBackground = CONFIG_NXTK_BORDERCOLOR1;
widgetControl->setWidgetStyle(&style);
// And create the toolbar
m_toolbar = new CNxToolbar(this, m_hNxTkWindow,
widgetControl, height);
if (!m_toolbar)
{
if (allocControl)
{
delete allocControl;
}
return (CNxToolbar *)0;
}
// Create the new toolbar. Toolbar creation is separate from
// object instantiation so that failures can be reported.
if (!m_toolbar->open())
{
// Failed to create the toolbar. Clean-up and return NULL
delete m_toolbar;
if (allocControl)
{
delete allocControl;
}
return (CNxToolbar *)0;
}
// Save the height of the toolbar. We will need this because it will change
// how we report the size of drawable part of the window.
m_toolbarHeight = height;
// Provide parent widget control information to new widget control instance.
// This information is reported by an NX callback for "normal" windows. But
// the toolbar widget control does not get NX callbacks and has to get the
// window size through the setWindowBounds method.
// Disable preemption so that we can be assured that all of the following
// values are synchronized.
sched_lock();
// Get the physical bounding box of the window in display coordinates
struct nxgl_rect_s windowBounds;
m_widgetControl->getWindowBoundingBox(&windowBounds);
// Get the position of the parent window in display coordinates
struct nxgl_point_s windowPos;
m_widgetControl->getWindowPosition(&windowPos);
// Get the bounding box of the toolbar in parent window coordinates
struct nxgl_rect_s toolbarBounds;
nxtk_toolbarbounds(m_hNxTkWindow, &toolbarBounds);
// Get the toolbar size
struct nxgl_size_s toolbarSize;
nxgl_rectsize(&toolbarSize, &toolbarBounds);
// Get the toolbar position in display coordinates by adding the
// window position
struct nxgl_point_s toolbarPos;
nxgl_vectoradd(&toolbarPos, &toolbarBounds.pt1, &windowPos);
// Perform the fake NX callback
widgetControl->geometryEvent(m_hNxTkWindow, &toolbarSize,
&toolbarPos, &windowBounds);
sched_unlock();
}
return m_toolbar;
}
/**
* Request the position and size information of the window. The values
* will be returned asynchronously through the client callback method.
* The GetPosition() method may than be called to obtain the positional
* data as provided by the callback.
*
* @return True on success, false on any failure.
*/
bool CNxTkWindow::requestPosition(void)
{
// Request the window position
return nxtk_getposition(m_hNxTkWindow) == OK;
}
/**
* Get the position of the window in the physical display coordinates
* (as reported by the NX callback).
*
* @return The position.
*/
bool CNxTkWindow::getPosition(FAR struct nxgl_point_s *pos)
{
return m_widgetControl->getWindowPosition(pos);
}
/**
* Get the size of the window drawable region.
*
* @return The size.
*/
bool CNxTkWindow::getSize(FAR struct nxgl_size_s *size)
{
// Get the size of the NXTK window (this will exclude the thickness of
// the frame and the height of the toolbar, if any).
return m_widgetControl->getWindowSize(size);
}
/**
* Set the position and size of the window.
*
* @param pos The new position of the window.
* @return True on success, false on any failure.
*/
bool CNxTkWindow::setPosition(FAR const struct nxgl_point_s *pos)
{
// Set the window size and position
return nxtk_setposition(m_hNxTkWindow, pos) == OK;
}
/**
* Set the size of the selected window.
*
* @param size The new size of the window.
* @return True on success, false on any failure.
*/
bool CNxTkWindow::setSize(FAR const struct nxgl_size_s *size)
{
// Set the window size
return nxtk_setsize(m_hNxTkWindow, size) == OK;
}
/**
* May be used to either (1) raise a window to the top of the display and
* select modal behavior, or (2) disable modal behavior.
*
* @param enable True: enter modal state; False: leave modal state
* @return True on success, false on any failure.
*/
bool CNxTkWindow::modal(bool enable)
{
// Select/de-select window modal state
return nxtk_modal(m_hNxTkWindow, enable) == OK;
}
/**
* Set an individual pixel in the window with the specified color.
*
* @param pos The location of the pixel to be filled.
* @param color The color to use in the fill.
*
* @return True on success; false on failure.
*/
bool CNxTkWindow::setPixel(FAR const struct nxgl_point_s *pos,
nxgl_mxpixel_t color)
{
#if 0
// Set an individual pixel to the specified color
return nxtk_setpixel(m_hNxTkWindow, pos, &color) == OK;
#else
// REVISIT
return false;
#endif
}
/**
* Fill the specified rectangle in the window with the specified color.
*
* @param pRect The location to be filled.
* @param color The color to use in the fill.
*
* @return True on success; false on failure.
*/
bool CNxTkWindow::fill(FAR const struct nxgl_rect_s *pRect,
nxgl_mxpixel_t color)
{
// Fill a rectangular region with a solid color
return nxtk_fillwindow(m_hNxTkWindow, pRect, &color) == OK;
}
/**
* Get the raw contents of graphic memory within a rectangular region. NOTE:
* Since raw graphic memory is returned, the returned memory content may be
* the memory of windows above this one and may not necessarily belong to
* this window unless you assure that this is the top window.
*
* @param rect The location to be copied
* @param dest - The describes the destination bitmap to receive the
* graphics data.
*/
void CNxTkWindow::getRectangle(FAR const struct nxgl_rect_s *rect, struct SBitmap *dest)
{
// Get a rectangule region from the window
nxtk_getwindow(m_hNxTkWindow, rect, 0, (FAR uint8_t*)dest->data, dest->stride);
}
/**
* Fill the specified trapezoidal region in the window with the specified
* color.
*
* @param pClip Clipping rectangle relative to window (may be null).
* @param pTrap The trapezoidal region to be filled.
* @param color The color to use in the fill.
*
* @return True on success; false on failure.
*/
bool CNxTkWindow::fillTrapezoid(FAR const struct nxgl_rect_s *pClip,
FAR const struct nxgl_trapezoid_s *pTrap,
nxgl_mxpixel_t color)
{
// Fill a trapezoidal region with a solid color
return nxtk_filltrapwindow(m_hNxTkWindow, pTrap, &color) == OK;
}
/**
* Fill the specified line in the window with the specified color.
*
* @param vector - Describes the line to be drawn
* @param width - The width of the line
* @param color - The color to use to fill the line
* @param caps - Draw a circular cap on both ends of the line to support
* better line joins
*
* @return True on success; false on failure.
*/
bool CNxTkWindow::drawLine(FAR struct nxgl_vector_s *vector,
nxgl_coord_t width, nxgl_mxpixel_t color,
enum ELineCaps caps)
{
// Draw a line with the specified color
return nxtk_drawlinewindow(m_hNxTkWindow, vector, width, &color, (uint8_t)caps) == OK;
}
/**
* Draw a filled circle at the specified position, size, and color.
*
* @param center The window-relative coordinates of the circle center.
* @param radius The radius of the rectangle in pixels.
* @param color The color of the rectangle.
*/
bool CNxTkWindow::drawFilledCircle(struct nxgl_point_s *center, nxgl_coord_t radius,
nxgl_mxpixel_t color)
{
return nxtk_fillcirclewindow(m_hNxTkWindow, center, radius, &color) == OK;
}
/**
* Move a rectangular region within the window.
*
* @param pRect Describes the rectangular region to move.
* @param pOffset The offset to move the region.
*
* @return True on success; false on failure.
*/
bool CNxTkWindow::move(FAR const struct nxgl_rect_s *pRect,
FAR const struct nxgl_point_s *pOffset)
{
// Move a rectangular region of the display
return nxtk_movewindow(m_hNxTkWindow, pRect, pOffset) == OK;
}
/**
* Copy a rectangular region of a larger image into the rectangle in the
* specified window. The source image is treated as an opaque image.
*
* @param pDest Describes the rectangular on the display that will receive
* the bitmap.
* @param pSrc The start of the source image.
* @param pOrigin the pOrigin of the upper, left-most corner of the full
* bitmap. Both pDest and pOrigin are in window coordinates, however,
* pOrigin may lie outside of the display.
* @param stride The width of the full source image in bytes.
*
* @return True on success; false on failure.
*/
bool CNxTkWindow::bitmap(FAR const struct nxgl_rect_s *pDest,
FAR const void *pSrc,
FAR const struct nxgl_point_s *pOrigin,
unsigned int stride)
{
// Copy a rectangular bitmap image in a region on the display
return nxtk_bitmapwindow(m_hNxTkWindow, pDest, &pSrc, pOrigin, stride) == OK;
}