Title: | DECWINDOWS 26-JAN-89 to 29-NOV-90 |
Notice: | See 1639.0 for VMS V5.3 kit; 2043.0 for 5.4 IFT kit |
Moderator: | STAR::VATNE |
Created: | Mon Oct 30 1989 |
Last Modified: | Mon Dec 31 1990 |
Last Successful Update: | Fri Jun 06 1997 |
Number of topics: | 3726 |
Total number of notes: | 19516 |
A customer would like to set a carattestic for all the widget in a tree. Is there a way of doing this automaticaly? . She tried to fetch the widget one at the time, but there was a problem with the pull down entry that didn't seen to see the pull down menu has a dependent widget. I'm sorry for how I explained the problem, I'm not too much in the decw programming. The main problem is if there is a way for modifing automatically a whole tree of widget. Thanks, Gea.
T.R | Title | User | Personal Name | Date | Lines |
---|---|---|---|---|---|
3455.1 | Identifiers (UIL) | R2ME2::OBRYAN | Instant Gratification takes too long | Thu Oct 11 1990 14:07 | 14 |
re:.0 > The main problem is if there is a way for modifing automatically > a whole tree of widget. If you're talking about setting an attribute for a widget tree at creation time (using UIL and DRM(Mrm)), then there is indeed a simple way to do this. For all of the object declarations in that widget hierarchy, specify the value of the desired argument to be an Identifier. In your source code, just before fetching the top-most object from the UID, register the Identifier with DRM(Mrm) with that value which you wish propagated to all the objects you are about to create. Michael | |||||
3455.2 | children and popup children | STKMKT::SWEENEY | Patrick Sweeney in New York | Thu Oct 11 1990 16:08 | 6 |
the right way to do this is at creation time, but if you are doing it at run time, descend the "children" tree and the "popup children" tree. Pulldown menus are considered popup children in this context since they are not true children: their windows are not contained with their parents, the "X parent window" for popups is the root window. |