2017-11-17 21:50:10 +01:00
|
|
|
/****************************************************************************
|
|
|
|
* apps/graphics/nuttx/pdcnuttx.h
|
|
|
|
*
|
|
|
|
* Copyright (C) 2017 Gregory Nutt. All rights reserved.
|
|
|
|
* Author: Gregory Nutt <gnutt@nuttx.org>
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef __APPS_GRAPHICS_PDCURS34_NUTTX_PDCNUTTX_H
|
|
|
|
#define __APPS_GRAPHICS_PDCURS34_NUTTX_PDCNUTTX_H 1
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
2017-11-18 19:11:02 +01:00
|
|
|
#include "nuttx/config.h"
|
2017-11-18 22:27:12 +01:00
|
|
|
|
|
|
|
#include "nuttx/nx/nx.h"
|
2017-11-18 19:11:02 +01:00
|
|
|
#include "nuttx/nx/nxfonts.h"
|
2017-11-18 22:27:12 +01:00
|
|
|
|
2017-11-17 21:50:10 +01:00
|
|
|
#include "curspriv.h"
|
|
|
|
|
2017-11-18 19:11:02 +01:00
|
|
|
/****************************************************************************
|
|
|
|
* Pre-processor Definitions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#if defined(CONFIG_PDCURSES_FOUNT_4X6)
|
2017-11-18 22:27:12 +01:00
|
|
|
# define PDCURSES_FONTID FONTID_X11_MISC_FIXED_4X6
|
2017-11-18 19:11:02 +01:00
|
|
|
#elif defined(CONFIG_PDCURSES_FOUNT_5X7)
|
2017-11-18 22:27:12 +01:00
|
|
|
# define PDCURSES_FONTID FONTID_X11_MISC_FIXED_5X7
|
2017-11-18 19:11:02 +01:00
|
|
|
#elif defined(CONFIG_PDCURSES_FOUNT_5X8)
|
2017-11-18 22:27:12 +01:00
|
|
|
# define PDCURSES_FONTID FONTID_X11_MISC_FIXED_5X8
|
2017-11-18 19:11:02 +01:00
|
|
|
#elif defined(CONFIG_PDCURSES_FOUNT_6X9)
|
2017-11-18 22:27:12 +01:00
|
|
|
# define PDCURSES_FONTID FONTID_X11_MISC_FIXED_6X9
|
2017-11-18 19:11:02 +01:00
|
|
|
#elif defined(CONFIG_PDCURSES_FOUNT_6X10)
|
2017-11-18 22:27:12 +01:00
|
|
|
# define PDCURSES_FONTID FONTID_X11_MISC_FIXED_6X10
|
2017-11-18 19:11:02 +01:00
|
|
|
#elif defined(CONFIG_PDCURSES_FOUNT_6X12)
|
2017-11-18 22:27:12 +01:00
|
|
|
# define PDCURSES_FONTID FONTID_X11_MISC_FIXED_6X12
|
2017-11-18 19:11:02 +01:00
|
|
|
#elif defined(CONFIG_PDCURSES_FOUNT_6X13)
|
2017-11-18 22:27:12 +01:00
|
|
|
# define PDCURSES_FONTID FONTID_X11_MISC_FIXED_6X13
|
2017-11-18 19:11:02 +01:00
|
|
|
#elif defined(CONFIG_PDCURSES_FOUNT_6X13B)
|
2017-11-18 22:27:12 +01:00
|
|
|
# define PDCURSES_FONTID FONTID_X11_MISC_FIXED_6X13B
|
2017-11-18 19:11:02 +01:00
|
|
|
#elif defined(CONFIG_PDCURSES_FOUNT_7X13)
|
2017-11-18 22:27:12 +01:00
|
|
|
# define PDCURSES_FONTID FONTID_X11_MISC_FIXED_7X13
|
2017-11-18 19:11:02 +01:00
|
|
|
#elif defined(CONFIG_PDCURSES_FOUNT_7X13B)
|
2017-11-18 22:27:12 +01:00
|
|
|
# define PDCURSES_FONTID FONTID_X11_MISC_FIXED_7X13B
|
2017-11-18 19:11:02 +01:00
|
|
|
#elif defined(CONFIG_PDCURSES_FOUNT_7X14)
|
2017-11-18 22:27:12 +01:00
|
|
|
# define PDCURSES_FONTID FONTID_X11_MISC_FIXED_7X14
|
2017-11-18 19:11:02 +01:00
|
|
|
#elif defined(CONFIG_PDCURSES_FOUNT_7X14B)
|
2017-11-18 22:27:12 +01:00
|
|
|
# define PDCURSES_FONTID FONTID_X11_MISC_FIXED_7X14B
|
2017-11-18 19:11:02 +01:00
|
|
|
#elif defined(CONFIG_PDCURSES_FOUNT_8X13)
|
2017-11-18 22:27:12 +01:00
|
|
|
# define PDCURSES_FONTID FONTID_X11_MISC_FIXED_8X13
|
2017-11-18 19:11:02 +01:00
|
|
|
#elif defined(CONFIG_PDCURSES_FOUNT_8X13B)
|
2017-11-18 22:27:12 +01:00
|
|
|
# define PDCURSES_FONTID FONTID_X11_MISC_FIXED_8X13B
|
2017-11-18 19:11:02 +01:00
|
|
|
#elif defined(CONFIG_PDCURSES_FOUNT_9X15)
|
2017-11-18 22:27:12 +01:00
|
|
|
# define PDCURSES_FONTID FONTID_X11_MISC_FIXED_9X15
|
2017-11-18 19:11:02 +01:00
|
|
|
#elif defined(CONFIG_PDCURSES_FOUNT_9X15B)
|
2017-11-18 22:27:12 +01:00
|
|
|
# define PDCURSES_FONTID FONTID_X11_MISC_FIXED_9X15B
|
2017-11-18 19:11:02 +01:00
|
|
|
#elif defined(CONFIG_PDCURSES_FOUNT_9X18)
|
2017-11-18 22:27:12 +01:00
|
|
|
# define PDCURSES_FONTID FONTID_X11_MISC_FIXED_9X18
|
2017-11-18 19:11:02 +01:00
|
|
|
#elif defined(CONFIG_PDCURSES_FOUNT_9X18B)
|
2017-11-18 22:27:12 +01:00
|
|
|
# define PDCURSES_FONTID FONTID_X11_MISC_FIXED_9X18B
|
2017-11-18 19:11:02 +01:00
|
|
|
#elif defined(CONFIG_PDCURSES_FOUNT_10X20)
|
2017-11-18 22:27:12 +01:00
|
|
|
# define PDCURSES_FONTID FONTID_X11_MISC_FIXED_10X20
|
2017-11-18 19:11:02 +01:00
|
|
|
#else
|
|
|
|
# error No fixed width font selected
|
|
|
|
#endif
|
|
|
|
|
2017-11-18 22:27:12 +01:00
|
|
|
/****************************************************************************
|
|
|
|
* Private Types
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#if defined(__cplusplus)
|
|
|
|
extern "C"
|
|
|
|
{
|
|
|
|
# define EXTERN extern "C"
|
|
|
|
#else
|
|
|
|
# define EXTERN extern
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* This structure provides the overall state of the frambuffer device */
|
|
|
|
|
|
|
|
struct pdc_fbstate_s
|
|
|
|
{
|
|
|
|
/* Framebuffer */
|
|
|
|
|
|
|
|
int fd; /* Open framebuffer driver file descriptor */
|
|
|
|
fb_coord_t xres; /* Horizontal resolution in pixel columns */
|
|
|
|
fb_coord_t yres; /* Vertical resolution in pixel rows */
|
|
|
|
fb_coord_t stride; /* Length of a line in bytes */
|
|
|
|
uint8_t bpp; /* Bits per pixel */
|
|
|
|
FAR void *fbmem; /* Start of framebuffer memory */
|
|
|
|
|
|
|
|
/* Font */
|
|
|
|
|
|
|
|
NXHANDLE hfont; /* Handled uses to access selected font */
|
|
|
|
uint8_t fheight; /* Height of the font in pixels */
|
|
|
|
uint8_t fwidth; /* Width of the font in pixels */
|
|
|
|
|
|
|
|
/* Drawable area (See also SP->lines and SP->cols) */
|
|
|
|
|
|
|
|
uint8_t hoffset; /* Offset from left of display in pixels */
|
|
|
|
uint8_t voffset; /* Offset from top of display in lines */
|
|
|
|
};
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Data
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/* This singleton represents the state of frame buffer device. pdcurses
|
|
|
|
* depends on global variables and, hence, can never support more than a
|
|
|
|
* single framebuffer instance in the same address space.
|
|
|
|
*/
|
|
|
|
|
|
|
|
EXTERN struct pdc_fbstate_s g_pdc_fbstate;
|
|
|
|
|
|
|
|
#undef EXTERN
|
|
|
|
#if defined(__cplusplus)
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2017-11-17 21:50:10 +01:00
|
|
|
#endif /* __APPS_GRAPHICS_PDCURS34_NUTTX_PDCNUTTX_H */
|