ebprogressbar.h

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

H
48
字号
// Copyright (C) 2004 TCL Multimedia Electronics Research & Development Center

//

// Current maintainer: Tang jianbin.

/*

**  Alternatively, the contents of this file may be used under the terms 

**  of the Mozilla Public License (the "MPL License") in which case the

**  provisions of the MPL License are applicable instead of those above.

*/

//

// Create date: 2004/1/7

//

// Modify records:

//

//  Who             When        Where       For What                Status

//-----------------------------------------------------------------------------

// 

// 

#ifndef GUI_TCLPROGRESSBAR_H_

#define GUI_TCLPROGRESSBAR_H_



#ifdef  __cplusplus

extern  "C" {

#endif



typedef struct tagPROGRESSDATA

{

    unsigned int nMin;

    unsigned int nMax;

    unsigned int nPos;

    unsigned int nStepInc;

	DWORD	bkColor;		//背景颜色

	DWORD	FillColor;		//填充块颜色

	int 	borderwidth;	//边框的宽度

}PROGRESSDATA;

typedef PROGRESSDATA* PPROGRESSDATA;



#define  WIDTH_PBAR_BORDER  	2



BOOL RegisterEBProgressBarControl(void);

void EBProgressBarControlCleanup (void);



#ifdef __cplusplus

}

#endif



#endif // GUI_TCLCONTROL_H_



⌨️ 快捷键说明

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