home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #20 / NN_1992_20.iso / spool / comp / windows / openloo / 3796 < prev    next >
Encoding:
Internet Message Format  |  1992-09-10  |  1.6 KB

  1. Xref: sparky comp.windows.open-look:3796 alt.toolkits.xview:857
  2. Path: sparky!uunet!spool.mu.edu!sdd.hp.com!zaphod.mps.ohio-state.edu!pacific.mps.ohio-state.edu!linac!att!ucbvax!ucdavis!sakura!freund
  3. From: freund@sakura.cs.ucdavis.edu (Jason Freund)
  4. Newsgroups: comp.windows.open-look,alt.toolkits.xview
  5. Subject: Text pane with TTY and TEXTSW ??
  6. Message-ID: <16941@ucdavis.ucdavis.edu>
  7. Date: 11 Sep 92 00:28:06 GMT
  8. Sender: usenet@ucdavis.ucdavis.edu
  9. Followup-To: comp.windows.open-look
  10. Organization: Department of Computer Science, University of California, Davis
  11. Lines: 29
  12.  
  13. I'm writing a new tiptool program that will let you run "tip" from a
  14. window.  I built it with devguide 3 and "gxv" and modified the
  15. "tip_stubs.c" file to make all the buttons work.
  16.  
  17. Everything works fine except that I want my TTY frame to have a
  18. scrollbar like the one that was originally there when I built the
  19. interface in devguide (by dragging a "text pane" into my window).
  20. Unfortunately, when I changed the xv_create for the frame from TEXTSW to
  21. TTY, it did let me run the tty in the text pane like I wanted, but it
  22. took away my scrollbar.
  23.  
  24. My xv_create now looks like this:
  25.  
  26. tty = temp = obj = xv_create(owner, TTY,  /* _was_ TEXTSW instead of TTY */
  27.     XV_KEY_DATA, INSTANCE, ip,
  28.     XV_X, 0,
  29.     XV_Y, (int)xv_get(ip->controls1, XV_Y) +
  30.           (int)xv_get(ip->controls1, XV_HEIGHT),
  31.     XV_WIDTH, WIN_EXTEND_TO_EDGE,
  32.     XV_HEIGHT, WIN_EXTEND_TO_EDGE,
  33.     OPENWIN_SHOW_BORDERS, TRUE,
  34.     NULL);
  35.  
  36. I can't put both "TTY, TEXTSW" in there.  And "TTY|TEXTSW" won't work.
  37. How can I get the scrollbar back?
  38.  
  39. Thanks.
  40. Jason Freund
  41. summer address: jasonf@wayfarer.EBay.Sun.COM
  42.