wins.h

来自「rtCell 实时微内核-具有下列功能: 1. 完全抢占的实时微内核结构」· C头文件 代码 · 共 56 行

H
56
字号
/*
 *******************************************************************************
 *                      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 + =
减小字号Ctrl + -
显示快捷键?