⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 sysgui.h

📁 The combined demo is dedicated for S1C33L05, so DMT33L05 should be used to load and run the demo. F
💻 H
字号:
/* $id:sysGUI.h  V1.0 2001/10/10 */

/******************************************************************************
 *  This source code has been made available to you by SEIKO EPSON  on
 *  AS-IS.Anyone receiving this source is licensed under
 *  SEIKO EPSON copyrights to use it in any way he or she deems fit,including
 *  copying it,modifying it,compiling it,and redistributing it either with
 *  or without modifictions.
 *
 *
 *  Any person who transfers this source code or any derivative work must
 *  include the SEIKO EPSON copyright notice, this paragraph,and the preceding
 *  two paragraphs in the transferred software.
 *
 *
 *       COPYRIGHT SEIKO EPSON CORPORATION 2001
 *     LICENSED MATERIAL - PROGRAM PROPERTY OF EPSON
 *****************************************************************************/

/******************************************************************************
 *
 *  FILE: sysGUI.h
 *
 *  MODULE: System predefined data types
 *
 *  PURPOSE: Define some system level data types and some key macros
 *
 *  AUTHOR(S):Chen Hong
 *
 *  GROUP:GUI_GROUP
 *
 *  DATE CREATED:2001/010/015
 *
 *  REFERENCE DOCUMENT ID:
 *
 *  MODIFICATIONS:
 *  Date          user Name       Description
 *  2001/10/15    Chen Hong       Create this file
 *********************************************************************************/

#ifndef _SYSGUI_H
#define _SYSGUI_H

#include "sysCOMM.h"

#ifdef __cplusplus
extern "C" {
#endif  /* __cplusplus */
/*button support*/
#define _CTRL_BUTTON

/*SLEdit support*/
#define _CTRL_EDIT

/*MLEdit support*/
#define _CTRL_MEDIT

/*listbox support*/
#define _CTRL_LISTBOX

/*static support*/
#define _CTRL_STATIC

/*progressbar support*/
#define _CTRL_PROGRESSBAR

/*toolbar support*/
#define _CTRL_TOOLBAR

/*treeview support*/
#define _CTRL_TREEVIEW

/*combobox support*/
#define _CTRL_COMBOBOX

/*gifctrl support*/
#define _CTRL_GIFCTRL	/* added by qq for gif display 2002.10.11 */

//#define GUI_4440PALETTE

/*file support*/
//#define GUI_FILESUPPORT  //if you have a file system support you can get rid of the comment

#define GUI_MEMORYSUPPORT

/*cursor support*/
//#define GUI_CURSORSUPPORT

/*if you want to GUI support GB and BIG5 code*/
#define _GB_SUPPORT
//#define _BIG5_SUPPORT
//#define _SJIS_SUPPORT

#ifdef _GB_SUPPORT
	#define _gb12x12
//	#define _gb16x16
#endif

#ifdef _BIG5_SUPPORT
	#define _big12x12
	#define _big16x16
#endif

#ifdef _SJIS_SUPPORT
	#define _SJIS12x12
//	#define _gb16x16
#endif

#define _ToUnic_SUPPORT


#define _MOVE_WINDOW_BY_MOUSE

#define GUI_EVENTID 1

#ifdef __cplusplus
}
#endif  /* __cplusplus */


#include "gui\guiCommon.h"
#include "gui\gui.h"
#include "gui\guiGdi.h"
#include "gui\guiWindow.h"
#include "gui\guiControl.h"
#include "gui\guiMsg.h"
#include "gui\guiGal.h"
#include "gui\guiGhl.h"
#include "gui\guiIal.h"


#endif //_SYSGUI_H

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -