2008-12-02 17:39:39 +01:00
|
|
|
/****************************************************************************
|
2018-05-29 21:21:26 +02:00
|
|
|
* libs/libnx/nxtk/nxtk_setsize.c
|
2008-12-02 17:39:39 +01:00
|
|
|
*
|
2021-02-23 19:55:00 +01:00
|
|
|
* 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
|
2008-12-02 17:39:39 +01:00
|
|
|
*
|
2021-02-23 19:55:00 +01:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2008-12-02 17:39:39 +01:00
|
|
|
*
|
2021-02-23 19:55:00 +01:00
|
|
|
* 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.
|
2008-12-02 17:39:39 +01:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <debug.h>
|
|
|
|
|
2011-07-24 22:49:01 +02:00
|
|
|
#include <nuttx/nx/nx.h>
|
|
|
|
#include <nuttx/nx/nxtk.h>
|
2008-12-02 17:39:39 +01:00
|
|
|
|
2015-12-30 00:31:17 +01:00
|
|
|
#include "nxtk.h"
|
2008-12-02 17:39:39 +01:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: nxtk_setsize
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Set the size for the selected client window. This size does not
|
|
|
|
* include the sizes of the borders nor for any toolbar. Those sizes
|
|
|
|
* will be added in to set the full window size.
|
|
|
|
*
|
|
|
|
* Input Parameters:
|
|
|
|
* hfwnd - The window handle returned by nxtk_openwindow
|
|
|
|
* size - The new size of the client sub-window.
|
|
|
|
*
|
2018-02-01 17:00:02 +01:00
|
|
|
* Returned Value:
|
2008-12-02 17:39:39 +01:00
|
|
|
* OK on success; ERROR on failure with errno set appropriately
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2011-10-17 00:22:49 +02:00
|
|
|
int nxtk_setsize(NXTKWINDOW hfwnd, FAR const struct nxgl_size_s *size)
|
2008-12-02 17:39:39 +01:00
|
|
|
{
|
2019-03-17 21:37:57 +01:00
|
|
|
FAR struct nxtk_framedwindow_s *fwnd;
|
2008-12-02 21:02:59 +01:00
|
|
|
struct nxgl_size_s newsize;
|
2019-03-17 21:37:57 +01:00
|
|
|
int ret;
|
2008-12-02 17:39:39 +01:00
|
|
|
|
2016-06-11 22:14:08 +02:00
|
|
|
#ifdef CONFIG_DEBUG_FEATURES
|
2019-05-12 22:42:27 +02:00
|
|
|
if (hfwnd == NULL || size == NULL || size->w < 0 || size->h < 0)
|
2008-12-02 17:39:39 +01:00
|
|
|
{
|
2013-12-28 18:33:21 +01:00
|
|
|
set_errno(EINVAL);
|
2008-12-02 17:39:39 +01:00
|
|
|
return ERROR;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2019-03-17 21:37:57 +01:00
|
|
|
fwnd = (FAR struct nxtk_framedwindow_s *)hfwnd;
|
|
|
|
|
2008-12-02 17:39:39 +01:00
|
|
|
/* Add the sizes need for the toolbar and the borders */
|
|
|
|
|
2008-12-02 21:02:59 +01:00
|
|
|
newsize.w = size->w + 2 * CONFIG_NXTK_BORDERWIDTH;
|
2008-12-03 01:30:09 +01:00
|
|
|
newsize.h = size->h + fwnd->tbheight + 2 * CONFIG_NXTK_BORDERWIDTH;
|
2008-12-02 17:39:39 +01:00
|
|
|
|
|
|
|
/* Then set the window size */
|
|
|
|
|
2019-03-17 21:37:57 +01:00
|
|
|
ret = nx_setsize((NXWINDOW)hfwnd, &newsize);
|
|
|
|
|
|
|
|
#ifdef CONFIG_NX_RAMBACKED
|
|
|
|
/* Windows backed with per-window framebuffers do not get redraw
|
|
|
|
* callbacks. Normally the frame is updated with every redraw callback.
|
|
|
|
* However, as a minimum, the frame only has to but updated after the
|
|
|
|
* window or toolbar sizes change.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (ret >= 0 && NXBE_ISRAMBACKED(&fwnd->wnd))
|
|
|
|
{
|
2019-03-18 20:29:58 +01:00
|
|
|
struct nxgl_rect_s relbounds;
|
|
|
|
|
|
|
|
/* Convert to a window-relative bounding box */
|
|
|
|
|
|
|
|
nxgl_rectoffset(&relbounds, &fwnd->wnd.bounds,
|
|
|
|
-fwnd->wnd.bounds.pt1.x, -fwnd->wnd.bounds.pt1.y);
|
|
|
|
|
|
|
|
/* Then re-draw the frame */
|
|
|
|
|
2020-01-02 17:49:34 +01:00
|
|
|
nxtk_drawframe(fwnd, &relbounds); /* Does not fail */
|
2019-03-17 21:37:57 +01:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return ret;
|
2008-12-02 17:39:39 +01:00
|
|
|
}
|