home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_01_06 / 1n06024c < prev    next >
Text File  |  1990-09-23  |  563b  |  20 lines

  1.  
  2.      % find the database Id associated with the keyword
  3.     key_search(db, btreeSelector, Keyword, Reference),
  4.  
  5.          % get the object with that database Id 
  6.     ref_term(db, topic_type, Reference, topic(_,Text,Buttons)),
  7.  
  8.          % display text & buttons
  9.     present(Text, Buttons),
  10.  
  11.      % interact with user to traverse the list of buttons
  12.          %   returns ChosenAction with the action 
  13.          %   corresponding to the chosen button
  14.     user_pressed(Buttons, ChosenAction),
  15.     
  16.          % execute the corresponding action     
  17.     do(ChosenAction).
  18.      
  19.  
  20.