分类: 嵌入式
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 图片