Path: utzoo!attcan!utgpu!utstat!jarvis.csri.toronto.edu!mailrus!hellgate.utah.edu!helios.ee.lbl.gov!epb2.lbl.gov!envbvs From: envbvs@epb2.lbl.gov (Brian V. Smith) Newsgroups: comp.windows.x Subject: Re: Xt toolkit and dec3100 window manager Message-ID: <4135@helios.ee.lbl.gov> Date: 3 Nov 89 19:25:30 GMT References: <4404@cs.yale.edu> Sender: usenet@helios.ee.lbl.gov Reply-To: envbvs@epb2.lbl.gov (Brian V. Smith) Organization: Lawrence Berkeley Laboratory Lines: 28 In article <4404@cs.yale.edu>, gropp-bill@CS.Yale.EDU (Bill Gropp) writes: < < I have an application written using the Xt toolkit and Athena widgets ( < X11R3). It runs fine on a Sun under uwm or twm, but does not on a < dec3100 under (I believe) dxwm. The application will not accept input < on the 3100 (the executable is built and runs on a Sun 3), specifically < neither in Text nor in Dialog widgets. My guess is that this is a problem < with the input hints that our version of Xt does not handle. Is there an < applicable patch? Some other bug? Thanks. < Bill Gropp Had the same problem with xfig. Yes, you have to set the input hints on the window(s): XWMHints wmhints; /* Set the input field to true to allow keyboard input */ wmhints.flags = InputHint; wmhints.input = True; XSetWMHints(display, XtWindow(widget),wmhints); _____________________________________ Brian V. Smith (bvsmith@lbl.gov) Lawrence Berkeley Laboratory I don't speak for LBL, these non-opinions are all mine. Had the same problem with xfig. Yes, you have to set the input hints on the window(s):