summaryrefslogtreecommitdiff
path: root/src/xterm.c
diff options
context:
space:
mode:
authorFred Pierresteguy <F.Pierresteguy@frcl.bull.fr>1994-04-01 13:53:31 +0000
committerFred Pierresteguy <F.Pierresteguy@frcl.bull.fr>1994-04-01 13:53:31 +0000
commite249df2056b27fdad315c6caa4dcdc1966057cf3 (patch)
treecc6e0bc0dcb6bd2f3ff1fd5f2069fe4e7879b342 /src/xterm.c
parente341397d281658f99f2eab47655ba81a494eba43 (diff)
downloademacs-e249df2056b27fdad315c6caa4dcdc1966057cf3.tar.gz
(x_wm_set_size_hint): Add USE_X_TOOLKIT conditional and call
XtGetValues to get the width and the height of the Emacs frame.
Diffstat (limited to 'src/xterm.c')
-rw-r--r--src/xterm.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/xterm.c b/src/xterm.c
index 738a508fea3..009f01565d1 100644
--- a/src/xterm.c
+++ b/src/xterm.c
@@ -5441,6 +5441,9 @@ x_wm_set_size_hint (f, prompting, change_gravity, spec_x, spec_y)
XSizeHints size_hints;
#ifdef USE_X_TOOLKIT
+ Arg al[2];
+ int ac = 0;
+ Dimension widget_width, widget_height;
Window window = XtWindow (f->display.x->widget);
#else /* not USE_X_TOOLKIT */
Window window = FRAME_X_WINDOW (f);
@@ -5452,8 +5455,16 @@ x_wm_set_size_hint (f, prompting, change_gravity, spec_x, spec_y)
size_hints.x = f->display.x->left_pos;
size_hints.y = f->display.x->top_pos;
+#ifdef USE_X_TOOLKIT
+ XtSetArg (al[ac], XtNwidth, &widget_width); ac++;
+ XtSetArg (al[ac], XtNheight, &widget_height); ac++;
+ XtGetValues (f->display.x->column_widget, al, ac);
+ size_hints.height = widget_height;
+ size_hints.width = widget_width;
+#else /* not USE_X_TOOLKIT */
size_hints.height = PIXEL_HEIGHT (f);
size_hints.width = PIXEL_WIDTH (f);
+#endif /* not USE_X_TOOLKIT */
size_hints.width_inc = FONT_WIDTH (f->display.x->font);
size_hints.height_inc = FONT_HEIGHT (f->display.x->font);
#if 0