comparison src/dispextern.h @ 96664:b306a69b9d7f

applying patch to consolidate non-GUI portion of hourglass implementation as posted at http://thread.gmane.org/gmane.emacs.devel/98341
author Adrian Robert <Adrian.B.Robert@gmail.com>
date Tue, 15 Jul 2008 13:04:01 +0000
parents 2af6e85f13d5
children d45acf0c8d23
comparison
equal deleted inserted replaced
96663:4d8d83c2373a 96664:b306a69b9d7f
2923 EXFUN (Fx_hide_tip, 0); 2923 EXFUN (Fx_hide_tip, 0);
2924 extern void start_hourglass P_ ((void)); 2924 extern void start_hourglass P_ ((void));
2925 extern void cancel_hourglass P_ ((void)); 2925 extern void cancel_hourglass P_ ((void));
2926 extern int hourglass_started P_ ((void)); 2926 extern int hourglass_started P_ ((void));
2927 extern int display_hourglass_p; 2927 extern int display_hourglass_p;
2928 extern int hourglass_shown_p;
2929 struct atimer; /* Defined in atimer.h. */
2930 /* If non-null, an asynchronous timer that, when it expires, displays
2931 an hourglass cursor on all frames. */
2932 extern struct atimer *hourglass_atimer;
2933
2934 /* Each GUI implements these. PENDING: move into RIF. */
2935 extern void show_hourglass P_ ((struct atimer *));
2936 extern void hide_hourglass P_ ((void));
2928 2937
2929 /* Returns the background color of IMG, calculating one heuristically if 2938 /* Returns the background color of IMG, calculating one heuristically if
2930 necessary. If non-zero, XIMG is an existing XImage object to use for 2939 necessary. If non-zero, XIMG is an existing XImage object to use for
2931 the heuristic. */ 2940 the heuristic. */
2932 2941