⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ebprogressbar.h

📁 基于minigui开发的一套图形控件系统
💻 H
字号:
// 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -