bmpbutton.h

来自「基于minigui开发的一套图形控件系统」· C头文件 代码 · 共 37 行

H
37
字号
//

// $Id: bmpbutton.h,v 1.1.1.1 2005/01/18 11:47:58 tangjb Exp $

//

// static.h: the head file of Static Control module.

//

// Copyright (c) 2004, Gao Laihong.

//

// Create date: 2004/01/05

//



#ifndef GUI_BMPBUTTONCTRL_H

#define GUI_BMPBUTTONCTRL_H



#ifdef  __cplusplus

extern  "C" {

#endif



typedef struct tagBMPBUTTONDATA2

{

    DWORD status;           // button flags

    DWORD  textcolor; 

	DWORD  fstextcolor;     //鼠标经过按钮时,按钮上的文字颜色   

	DWORD  pstextcolor;     //鼠标点击按钮时,按钮上的文字颜色

    DWORD data;             // bitmap or icon of butotn.

} BMPBUTTONDATA2;

typedef BMPBUTTONDATA2* PBMPBUTTONDATA2;   



BOOL RegisterBmpButtonControl (void);

void BmpButtonControlCleanup (void);



#ifdef __cplusplus

}

#endif  /* __cplusplus */



#endif  /* GUI_BMPBUTTONCTRL_H */



⌨️ 快捷键说明

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