Chinaunix首页 | 论坛 | 博客
  • 博客访问: 472319
  • 博文数量: 88
  • 博客积分: 1677
  • 博客等级: 上尉
  • 技术积分: 667
  • 用 户 组: 普通用户
  • 注册时间: 2011-11-03 22:17
文章分类

全部博文(88)

文章存档

2013年(1)

2012年(18)

2011年(69)

分类: 嵌入式

2011-11-25 17:04:11

1 进度条的使用


===========================================================================================
创建进度条
GtkWidget *progress=gtk_progress_bar_new();

===========================================================================================
进度条无信号,开发人员一般通过在程序中添加一个定时器来使用组合框
timer=g_timeout_add(100,(GSourceFunc)update_progress,progress);

===========================================================================================
定时器定时调用的函数
gboolean update_progress(gpointer progress)
{
if(timeron==0)
return TRUE;
count++;
if(count>100){
gtk_main_quit();
return;
}
设置进度条的进度
gtk_progress_bar_update(GTK_PROGRESS_BAR(progress),(float)count/100);
return TRUE;
}

2 图片


阅读(1281) | 评论(0) | 转发(0) |
0

上一篇:组合框

下一篇:状态栏

给主人留下些什么吧!~~