📄 edit.h
字号:
/*
*******************************************************************************
* The real-time kernel "rtCell" *
* Copyright 2005 taowentao, allrights reserved. *
* File : Edit.h *
* By : taowentao 2006-09-02, 2007-05-12 *
*******************************************************************************
*/
#if !defined(EDIT_H)
#define EDIT_H
#if !defined(CONTROL_H)
#include "giCell\Wins\include\Control.h"
#endif
#if !defined(PUREEDIT_H)
#include "giCell\Wins\include\PureEdit.h"
#endif
/*
*******************************************************************************
* *
*******************************************************************************
*/
typedef struct {
VIEW *pView;
PEDIT *pPEdit;
} EDIT;
/*
*******************************************************************************
* *
*******************************************************************************
*/
EDIT* CreateEdit(int left, int top, int width, int height, VIEW* pParent,
BYTE *pText, PKEYDOWN pKeyDown, CWORD Align, CWORD textLen);
void DeleteEdit(EDIT *pEdit);
const BYTE * GetEditText(EDIT *pEdit);
/*
*******************************************************************************
* *
*******************************************************************************
*/
#endif /* end of Edit.h */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -