Path: utzoo!attcan!uunet!husc6!cs.utexas.edu!tut.cis.ohio-state.edu!ucsd!usc!bloom-beacon!kent.EDU!doleh From: doleh@kent.EDU Newsgroups: comp.windows.x Subject: Widget with more than one window Message-ID: <8906232004.AA05642@kentmath.kent.edu> Date: 23 Jun 89 20:04:13 GMT Sender: daemon@bloom-beacon.MIT.EDU Organization: The Internet Lines: 15 I am trying to create a widget with more than one window. I create subwindows of the XtWindow(w). Everything was fine except when I used XtDispatch(event), where event->window is one of the subwindows the event is not seen by the widget. After RTFM, and UTSL I found that it is necessary to add the windows I have created to a hashtable. I found an internal routine _XtRegisterWindow which does this for me. I had no choice except using that routine. My questions are: 1 - Will the toolkit have more support for multi window widgets. 2 - Is there another way of handling this ? Thanks for all your help.