widget_simpleprogbar.c

来自「uc-gui.rar」· C语言 代码 · 共 62 行

C
62
字号
/***********************************************************************************************************                                                uC/GUI*                        Universal graphic software for embedded applications**                       (c) Copyright 2002, Micrium Inc., Weston, FL*                       (c) Copyright 2002, SEGGER Microcontroller Systeme GmbH**              礐/GUI is protected by international copyright laws. Knowledge of the*              source code may not be used to write a similar product. This file may*              only be used in accordance with a license and should not be redistributed*              in any way. We appreciate your understanding and fairness.*----------------------------------------------------------------------File        : WIDGET_SimpleProgbar.cPurpose     : Demonstrates the use of the PROGBAR widget----------------------------------------------------------------------*/#include "gui.h"#include "progbar.h"/*********************************************************************            Shows the use of progress bars**********************************************************************/static void DemoProgBar(void) {  int i;  PROGBAR_Handle ahProgBar;  GUI_Clear();  GUI_SetFont(&GUI_Font8x16);  GUI_DispStringAt("Progress bar", 100,80);  /* Create progress bar */    ahProgBar = PROGBAR_Create(100, 100, 100, 20, WM_CF_SHOW);  GUI_Delay (500);  /* Modify progress bar */  for (i = 0; i <= 100; i++) {    PROGBAR_SetValue(ahProgBar, i);    GUI_Delay(10);  }  GUI_Delay (500);  /* Delete progress bar */    PROGBAR_Delete(ahProgBar);}/*********************************************************************                 main**********************************************************************/void main(void) {  GUI_Init();  while(1) {    DemoProgBar();  }}

⌨️ 快捷键说明

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