?? label.h
字號:
/*
*******************************************************************************
* The real-time kernel "rtCell" *
* Copyright 2005 taowentao, allrights reserved. *
* File : Label.h *
* By : taowentao 2006-09-02, 2007-05-12 *
*******************************************************************************
*/
#if !defined(LABEL_H)
#define LABEL_H
#if !defined(CONTROL_H)
#include "giCell\Wins\include\Control.h"
#endif
/*
*******************************************************************************
* *
*******************************************************************************
*/
#define CTRL_HTML_LABEL (0x0200) /* for lable only */
typedef struct {
VIEW *pView;
COLOR LabelColor;
COLOR CaptionColor;
PCLICK pOnClick;
BYTE* pCaption;
POINT ptCatch;
CWORD Status;
CWORD CaptionAlign;
} LABEL;
/*
*******************************************************************************
* *
*******************************************************************************
*/
LABEL* CreateLabel(int left, int top, int width, int height, VIEW* pParent,
BYTE* pCaption, PCLICK pOnClick, CWORD Align, CWORD Style);
void DeleteLabel(LABEL *pLabel);
void SetLabelText(LABEL *pLbl, BYTE *pStr);
void SetLabelAlign(LABEL *pLbl, CWORD Align);
/*
*******************************************************************************
* *
*******************************************************************************
*/
#endif /* end of Label.h */
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -