aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYAMAMOTO Mitsuharu2005-05-06 08:03:47 +0000
committerYAMAMOTO Mitsuharu2005-05-06 08:03:47 +0000
commit469094b14248da8e3ec9eafcd842f570bb3cbde9 (patch)
tree1bae20b79c7d03e27ae41c35a0d178227f1ee0cb
parent5b8b73ff90054ffa201f7620741bf913401dfca6 (diff)
downloademacs-469094b14248da8e3ec9eafcd842f570bb3cbde9.tar.gz
emacs-469094b14248da8e3ec9eafcd842f570bb3cbde9.zip
(struct scroll_bar) [USE_TOOLKIT_SCROLL_BARS]: New
members track_top and track_height.
-rw-r--r--src/macterm.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/macterm.h b/src/macterm.h
index 127c00b077b..55a5593077c 100644
--- a/src/macterm.h
+++ b/src/macterm.h
@@ -495,6 +495,12 @@ struct scroll_bar {
495 place where the user grabbed it. If the handle isn't currently 495 place where the user grabbed it. If the handle isn't currently
496 being dragged, this is Qnil. */ 496 being dragged, this is Qnil. */
497 Lisp_Object dragging; 497 Lisp_Object dragging;
498
499#ifdef USE_TOOLKIT_SCROLL_BARS
500 /* The position and size of the scroll bar handle track area in
501 pixels, relative to the frame. */
502 Lisp_Object track_top, track_height;
503#endif
498}; 504};
499 505
500/* The number of elements a vector holding a struct scroll_bar needs. */ 506/* The number of elements a vector holding a struct scroll_bar needs. */