2008-11-29 22:59:02 +08:00
|
|
|
/****************************************************************************
|
2008-12-02 06:13:03 +08:00
|
|
|
* graphics/nxmu/nxmu_releasebkgd.c
|
2008-11-29 22:59:02 +08:00
|
|
|
*
|
2021-02-05 18:12:53 +08: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-11-29 22:59:02 +08:00
|
|
|
*
|
2021-02-05 18:12:53 +08:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2008-11-29 22:59:02 +08:00
|
|
|
*
|
2021-02-05 18:12:53 +08: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-11-29 22:59:02 +08:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
2019-03-18 01:34:45 +08:00
|
|
|
#include <assert.h>
|
2008-11-29 22:59:02 +08:00
|
|
|
#include <errno.h>
|
|
|
|
#include <debug.h>
|
|
|
|
|
2011-07-25 04:49:01 +08:00
|
|
|
#include <nuttx/nx/nx.h>
|
2019-03-13 23:16:30 +08:00
|
|
|
#include "nxmu.h"
|
2008-11-29 22:59:02 +08:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: nxmu_releasebkgd
|
|
|
|
*
|
|
|
|
* Description:
|
2021-02-05 16:05:48 +08:00
|
|
|
* Release the background window previously acquired using
|
|
|
|
* nxmu_openbgwindow and return control of the background to NX.
|
2008-11-29 22:59:02 +08:00
|
|
|
*
|
|
|
|
* Input Parameters:
|
2019-04-05 22:24:46 +08:00
|
|
|
* nxmu - The NXMU state structure
|
2008-11-29 22:59:02 +08:00
|
|
|
*
|
2018-02-02 00:00:02 +08:00
|
|
|
* Returned Value:
|
2008-11-29 22:59:02 +08:00
|
|
|
* None
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2019-04-05 22:24:46 +08:00
|
|
|
void nxmu_releasebkgd(FAR struct nxmu_state_s *nxmu)
|
2008-11-29 22:59:02 +08:00
|
|
|
{
|
2019-03-18 01:34:45 +08:00
|
|
|
FAR struct nxbe_state_s *be;
|
2008-11-29 22:59:02 +08:00
|
|
|
|
2019-04-05 22:24:46 +08:00
|
|
|
DEBUGASSERT(nxmu != NULL);
|
2008-11-29 22:59:02 +08:00
|
|
|
|
2019-03-18 01:34:45 +08:00
|
|
|
/* Destroy the client window callbacks and restore the server connection. */
|
2008-11-29 22:59:02 +08:00
|
|
|
|
2019-04-05 22:24:46 +08:00
|
|
|
be = &nxmu->be;
|
2008-11-29 22:59:02 +08:00
|
|
|
be->bkgd.cb = NULL;
|
2008-12-02 06:13:03 +08:00
|
|
|
be->bkgd.arg = NULL;
|
2019-04-05 22:24:46 +08:00
|
|
|
be->bkgd.conn = &nxmu->conn;
|
2008-11-29 22:59:02 +08:00
|
|
|
|
|
|
|
/* Redraw the background window */
|
|
|
|
|
2019-05-16 23:18:33 +08:00
|
|
|
nxmu_redraw(&be->bkgd, &be->bkgd.bounds);
|
2008-11-29 22:59:02 +08:00
|
|
|
}
|