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

📄 wins.h

📁 rtCell 实时微内核-具有下列功能: 1. 完全抢占的实时微内核结构
💻 H
字号:
/*
 *******************************************************************************
 *                      The real-time kernel "rtCell"                          *
 *              Copyright 2005 taowentao, allrights reserved.                  *
 * File : Wins.h                                                               *
 * By   : taowentao     2006-09-02, 2007-05-12                                 *
 *******************************************************************************
 */

#if !defined(WINS_H)
#define WINS_H

#if !defined(ENGINE_H)
#include "giCell\Engine\Engine.h"
#endif  

#if !defined(CLIPBOARD_H)
#include "giCell\Wins\include\Clipbord.h"
#endif 

/*
 *******************************************************************************
 *                                                                             *
 *******************************************************************************
 */

/* controls status */
#define ON_FOCUSSED     (0x0001)
#define ON_MOUSE_ENTER  (0x0002)
#define ON_MOUSE_CATCH  (0x0004)
#define ON_MOVE         (0x0008)
#define ON_RESIZE       (0x0010)

#define FORM_MIN_XSIZE (126)
#define FORM_MIN_YSIZE (26)
#define CTRL_MIN_XSIZE (1)
#define CTRL_MIN_YSIZE (1)

/*
 *******************************************************************************
 *                                                                             *
 *******************************************************************************
 */
 
void DrawUpRect(const RECT* pRect);
void DrawUpBotton(const RECT* pRect);
void DrawDownRect(const RECT* pRect);
void DrawDownBotton(const RECT* pRect);

/*
 *******************************************************************************
 *                                                                             *
 *******************************************************************************
 */
#endif /* end of Wins.h */

⌨️ 快捷键说明

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