aboutsummaryrefslogtreecommitdiffstats
path: root/src/macterm.h
diff options
context:
space:
mode:
authorYAMAMOTO Mitsuharu <[email protected]>2005-03-16 03:29:57 +0000
committerYAMAMOTO Mitsuharu <[email protected]>2005-03-16 03:29:57 +0000
commitee292cd47f72cdc797dcc5730fe970fdad2bb309 (patch)
treecec9f5402eb7cb00f5d69c85748f2c64830d84e6 /src/macterm.h
parentb69efa2333a8096506c84add62caf1d2084a20a5 (diff)
(struct mac_output) [TARGET_API_MAC_CARBON]: New member
hourglass_control. (HOURGLASS_WIDTH, HOURGLASS_HEIGHT): New defines. (activate_scroll_bars, deactivate_scroll_bars): Remove declarations.
Diffstat (limited to 'src/macterm.h')
-rw-r--r--src/macterm.h13
1 files changed, 10 insertions, 3 deletions
diff --git a/src/macterm.h b/src/macterm.h
index 27cd1f4964..dd2e2652c9 100644
--- a/src/macterm.h
+++ b/src/macterm.h
@@ -355,6 +355,12 @@ struct mac_output {
#endif
+#if TARGET_API_MAC_CARBON
+ /* The Mac control reference for the hourglass (progress indicator)
+ shown at the upper-right corner of the window. */
+ ControlRef hourglass_control;
+#endif
+
#if 0
DWORD dwStyle;
#endif
@@ -573,6 +579,10 @@ struct scroll_bar {
text from glomming up against the scroll bar */
#define VERTICAL_SCROLL_BAR_WIDTH_TRIM (0)
+/* Size of hourglass controls */
+#define HOURGLASS_WIDTH 16
+#define HOURGLASS_HEIGHT 16
+
struct frame;
struct face;
struct image;
@@ -586,9 +596,6 @@ EXFUN (Fx_display_grayscale_p, 1);
EXFUN (Fx_display_planes, 1);
extern void x_free_gcs P_ ((struct frame *));
-void activate_scroll_bars (FRAME_PTR);
-void deactivate_scroll_bars (FRAME_PTR);
-
/* Defined in macterm.c. */
extern void x_set_window_size P_ ((struct frame *, int, int, int));