如何在非GUI线程操作GUI控件

GUI控件只能在GUI线程进行操作,非GUI线程想操作GUI控件,必须用idle_queue或timer_queue进行串行化。

  • idle_queue向主循环的事件队列提交一个增加idle的请求,GUI线程的主循环在处理事件队列时,会把该idle函数放到idle管理器中,在分发idle时,该idle函数在GUI线程执行。

  • timer_queue向主循环的事件队列提交一个增加timer的请求,GUI线程的主循环在处理事件队列时,会把该timer函数放到timer管理器中,在分发timer时,该timer函数在GUI线程执行。

注意:idle_queue和timer_queue是少数几个可以在非GUI线程安全调用的函数。

示例:

  1. static ret_t on_timer(const timer_info_t* timer) {
  2. return update_progress_bar(WIDGET(timer->ctx));
  3. }
  4. static ret_t on_idle(const idle_info_t* idle) {
  5. return update_progress_bar(WIDGET(idle->ctx));
  6. }
  7. void* thread_entry(void* args) {
  8. int nr = 500;
  9. while(nr-- > 0) {
  10. idle_queue(on_idle, args);
  11. timer_queue(on_timer, args, 30);
  12. sleep_ms(30);
  13. }
  14. return NULL;
  15. }
  16. ret_t application_init() {
  17. thread_t* thread = NULL;
  18. widget_t* progress_bar = NULL;
  19. widget_t* win = window_create(NULL, 0, 0, 0, 0);
  20. widget_t* label = label_create(win, 10, 10, 300, 20);
  21. widget_set_text(label, L"Update progressbar in non GUI thread");
  22. progress_bar = progress_bar_create(win, 10, 80, 300, 20);
  23. thread = thread_create(thread_entry, progress_bar);
  24. thread_start(thread);
  25. return RET_OK;
  26. }

参考

demos/demo_thread_app.c