91 lines
3.4 KiB
C
91 lines
3.4 KiB
C
/*
|
|
*********************************************************************************************************
|
|
* uC/GUI
|
|
* Universal graphic software for embedded applications
|
|
*
|
|
* (c) Copyright 2002, Micrium Inc., Weston, FL
|
|
* (c) Copyright 2002, SEGGER Microcontroller Systeme GmbH
|
|
*
|
|
* µC/GUI is protected by international copyright laws. Knowledge of the
|
|
* source code may not be used to write a similar product. This file may
|
|
* only be used in accordance with a license and should not be redistributed
|
|
* in any way. We appreciate your understanding and fairness.
|
|
*
|
|
----------------------------------------------------------------------
|
|
File : LCDSIM.h
|
|
Purpose : Declares LCD interface functions
|
|
----------------------------------------------------------------------
|
|
*/
|
|
|
|
#ifndef LCDSIM_H
|
|
#define LCDSIM_H
|
|
|
|
|
|
/************************************************************
|
|
*
|
|
* defines
|
|
*
|
|
*************************************************************
|
|
*/
|
|
#define LCDSIM_MAX_DISPLAYS 5
|
|
|
|
/************************************************************
|
|
*
|
|
* LCDSIM_ General declarations
|
|
*
|
|
*************************************************************
|
|
*/
|
|
|
|
char* LCDSIM_Init(void);
|
|
int LCDSIM_GetMouseState(LCD_tMouseState *pState);
|
|
void LCDSIM_SetMouseState(int x, int y, int KeyStat);
|
|
void LCDSIM_CheckMouseState(void);
|
|
int LCDSIM_SaveBMP (const char * sFileName);
|
|
int LCDSIM_SaveBMPEx (const char * sFileName, int x0, int y0, int xSize, int ySize);
|
|
int LCDSIM_SaveSBMP (const char * sFileName);
|
|
int LCDSIM_SaveSBMPEx(const char * sFileName, int x0, int y0, int xSize, int ySize);
|
|
|
|
/************************************************************
|
|
*
|
|
* LCDSIM_ Functions for each display
|
|
*
|
|
*************************************************************
|
|
*/
|
|
|
|
void LCDSIM_FillRect(int x0, int y0, int x1, int y1, int Index, int LayerIndex);
|
|
int LCDSIM_GetModifyCnt(int LayerIndex);
|
|
int LCDSIM_GetModifyCntInfo(int LayerIndex);
|
|
int LCDSIM_GetPixelColor(int x, int y, int LayerIndex);
|
|
int LCDSIM_GetPixelIndex(int x, int y, int LayerIndex);
|
|
int LCDSIM_Index2Color(int Index, int LayerIndex);
|
|
int LCDSIM_RLUT_GetPixelIndex(int x, int y, int LayerIndex);
|
|
void LCDSIM_RLUT_SetPixelIndex(int x, int y, int Index, int LayerIndex);
|
|
void LCDSIM_SetLUTEntry(U8 Pos, LCD_COLOR color, int LayerIndex);
|
|
void LCDSIM_SetPixelIndex(int x, int y, int Index, int LayerIndex);
|
|
void LCDSIM_SetPixelColor(int x, int y, LCD_COLOR PixelColor, int LayerIndex);
|
|
void LCDSIM_SetSubPixel(int x, int y, U8 Value, int LayerIndex);
|
|
void LCDSIM_SetSubPixelPhys(int xPhys, int yPhys, int Index, int LayerIndex);
|
|
void LCDSIM_SetPixelPhys(int x, int y, int Index, int LayerIndex);
|
|
int LCDSIM_GetPixelPhys(int xPhys, int yPhys, int LayerIndex);
|
|
void LCDSIM_FillRectPhys(int x0Phys, int y0Phys, int x1Phys, int y1Phys, int Index, int LayerIndex);
|
|
|
|
/************************************************************
|
|
*
|
|
* LCDSIM_ Declarations for painting in windows program
|
|
*
|
|
*************************************************************
|
|
*/
|
|
|
|
#if defined(_WINDOWS_) | defined(_WINDOWS_H) /* if windows.h has already been included */
|
|
void LCDSIM_Paint (HWND hWnd);
|
|
void LCDSIM_PaintEx(HWND hWnd, LPRECT pRectDest, LPRECT pRectSrc);
|
|
void LCDSIM_PaintAt(HWND hWnd, int x, int y);
|
|
#endif
|
|
|
|
|
|
#endif /* LCD_H */
|
|
|
|
|
|
|
|
|