2005-09-25 14:42:24 -04:00
|
|
|
#ifndef __ardour_gtk_gui_thread_h__
|
|
|
|
#define __ardour_gtk_gui_thread_h__
|
|
|
|
|
2006-01-11 19:56:57 -05:00
|
|
|
#include <gtkmm2ext/gtk_ui.h>
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
#define ENSURE_GUI_THREAD(slot) \
|
2005-09-25 16:33:00 -04:00
|
|
|
if (!Gtkmm2ext::UI::instance()->caller_is_gui_thread()) {\
|
|
|
|
Gtkmm2ext::UI::instance()->call_slot ((slot));\
|
2005-09-25 14:42:24 -04:00
|
|
|
return;\
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* __ardour_gtk_gui_thread_h__ */
|