(FILECREATED " 8-Jun-87 12:05:11" {QV}<NOTECARDS>1.3K>NEXT>RGPATCH046.;2 34957  

      changes to:  (FNS NC.SelectNoteCards NC.SelectNoteCardsCopyInsertFn NC.SessionCheckOpInProgress 
			NC.NoteFileCheckOpInProgress NC.CopyCards NC.CopyStructure)
		   (VARS RGPATCH046COMS)

      previous date: " 5-Jun-87 18:35:16" {QV}<NOTECARDS>1.3K>NEXT>RGPATCH046.;1)


(* Copyright (c) 1987 by Xerox Corporation. All rights reserved.)

(PRETTYCOMPRINT RGPATCH046COMS)

(RPAQQ RGPATCH046COMS ((* * RG 6/5/87 CopyCards now deletes cards that had been created if 
			    operation is aborted later (by ExpandIndex)
			    %. Also fixes some concurrency bugs, and a race condition in 
			    NC.SelectNoteCards)
			 (* * changes to NCDATABASE)
			 (FNS NC.CopyCards NC.NoteFileCheckOpInProgress NC.SessionCheckOpInProgress)
			 (* * changes to NCINTERFACE)
			 (FNS NC.SelectNoteCards NC.SelectNoteCardsCopyInsertFn)))
(* * RG 6/5/87 CopyCards now deletes cards that had been created if operation is aborted later
 (by ExpandIndex) %. Also fixes some concurrency bugs, and a race condition in 
NC.SelectNoteCards)

(* * changes to NCDATABASE)

(DEFINEQ

(NC.CopyCards
  [LAMBDA (Cards DestNoteFileOrFileBox RootCards QuietFlg InterestedWindow)
                                                             (* Randy.Gobbel " 5-Jun-87 16:01")

          (* * Create copies of cards in Cards. If DestNoteFileOrFileBox is a notefile, then destination will be the contents
	  box in that notefile, else the FileBox's notefile. RootCards should be NIL or a subset of Cards.
	  If NIL, then file all Cards in the dest filebox. Otherwise, just file RootCards in that filebox and assume others 
	  are linked somehow to the RootCards. Links between cards in Cards are copied, but links from or to outside cards 
	  aren't.)



          (* * Currently all Cards must be in same notefile, but this perhaps could be relaxed if could prevent possibility 
	  of two cards in different notefiles having the same UID.)



          (* * kirk 24Apr86 Added calls to select cards if none provided)



          (* * rht 9/2/86: Added InterestedWindow arg.)



          (* * pmi 12/12/86: Removed obsolete ReturnLinksFlg argument in call to NC.SelectNoteCards.)



          (* * rg 3/18/87 added NC.CardSelectionOperation wrapper)



          (* * rg 4/2/87 changed NC.CardSelectionOperation to NCP.WithLockedCards ; added NC.IfAllCardsFree wrapper)



          (* * rht&rg&pmi 4/22/87: No longer calls ERROR!)



          (* * rg 6/2/87 was checking for CANCELLED instead of DON'T)



          (* * rg 6/5/87 deletes new cards if we cancel out halfway through)


    (NCP.WithLockedCards (NC.IfAllCardsFree
			   (NC.LockListOfCards Cards "Copy Cards")
			   (PROG (NumCards SourceNoteFile DestNoteFile BoxToFileIn TempStream 
					     CardHashArray LinksHashArray CurrentLinkLabels 
					     NewLinkLabels NewCardsAndLocsOnStream)

          (* * Make sure the arguments are valid.)


			           (if (NULL Cards)
				       then (if (NULL (SETQ Cards
							      (NC.SelectNoteCards NIL NIL 
									    NC.SelectingCardsMenu NIL 
					     "Shift-select from the same NoteFile cards to copy:"
										    NIL)))
						  then (RETURN NIL)))
			           (SETQ Cards (MKLIST Cards))
			           (SETQ NumCards (LENGTH Cards))
                                                             (* All Cards to copy must live in same notefile.)
			           (SETQ SourceNoteFile (fetch (Card NoteFile)
							     of (CAR Cards)))
			           (if [NOT (AND (type? NoteFile SourceNoteFile)
						       (OPENP (fetch (NoteFile Stream)
								   of SourceNoteFile]
				       then (NC.ReportError "NC.CopyCards"
								(CONCAT (fetch (NoteFile 
										     FullFileName)
									     of SourceNoteFile)
									  " not an open notefile.")))
			           (if (NOT (for Card in Cards
						   always (NC.SameNoteFileP (fetch
										  (Card NoteFile)
										   of Card)
										SourceNoteFile)))
				       then (NC.ReportError "NC.CopyCards" 
					"All cards in Cards arg don't live in the same notefile."))
                                                             (* Compute dest notefile and dest filebox.)
			           (if (NOT DestNoteFileOrFileBox)
				       then (if (EQ (QUOTE DON'T)
							  (SETQ DestNoteFileOrFileBox
							    (NC.SelectNoteCards T NIL 
									     NC.SelectingCardMenu NIL 
					       "Shift-select the FileBox to contain these cards."
										  T)))
						  then (RETURN NIL)))
			           (if (type? NoteFile DestNoteFileOrFileBox)
				       then (SETQ DestNoteFile DestNoteFileOrFileBox)
					      (SETQ BoxToFileIn (fetch (NoteFile 
									      TableOfContentsCard)
								     of DestNoteFile))
				     elseif (NCP.FileBoxP DestNoteFileOrFileBox)
				       then (SETQ BoxToFileIn DestNoteFileOrFileBox)
					      (SETQ DestNoteFile (fetch (Card NoteFile)
								      of BoxToFileIn))
				     else (NC.ReportError "NC.CopyCards" (CONCAT 
								  "Arg not notefile or filebox: "
										       
									    DestNoteFileOrFileBox)))
			           (if [NOT (AND (type? NoteFile DestNoteFile)
						       (OPENP (fetch (NoteFile Stream)
								   of DestNoteFile]
				       then (NC.ReportError "NC.CopyCards"
								(CONCAT (fetch (NoteFile 
										     FullFileName)
									     of DestNoteFile)
									  " not an open notefile.")))
			           (if (LDIFFERENCE (SETQ RootCards (MKLIST RootCards))
							Cards)
				       then (NC.ReportError "NC.CopyCards" 
					       "RootCards argument not subset of Cards argument."))
			           (if (NULL RootCards)
				       then (SETQ RootCards Cards))

          (* * Now get to work.)


			           (SETQ TempStream (OPENSTREAM (QUOTE {NODIRCORE})
								    (QUOTE BOTH)))
			           (SETQ CurrentLinkLabels (NC.RetrieveLinkLabels DestNoteFile))
			           (SETQ NewLinkLabels (TCONC NIL))
			           (SETQ LinksHashArray (HASHARRAY NC.CopyCardsLinksHashArraySize 
								       NIL (FUNCTION NC.MakeHashKey)
								       (FUNCTION NC.SameUIDP)))
			           (SETQ CardHashArray (HASHARRAY NumCards NIL
								      (FUNCTION 
									NC.MakeHashKeyFromCard)
								      (FUNCTION NC.SameCardP)))

          (* * Create new cards in DestNoteFile for each card. Make these cards by copying original cards to a temp stream.
	  Keep track of UID mappings between original cards and card copies using CardHashArray.)


			           (OR QuietFlg (NC.PrintMsg InterestedWindow T 
							  "Copying cards: creating empty copies."
								 (CHARACTER 13)
								 "Processing item " 1 " out of " 
								 NumCards "..." (CHARACTER 13)))
			           (SETQ NewCardsAndLocsOnStream NIL)
			           [RESETLST
				     [RESETSAVE NIL
						  (QUOTE (PROGN
							     (if RESETSTATE
								 then (for CardAndLoc
									   in 
									  NewCardsAndLocsOnStream
									   do (
									NC.DeleteNoteCardInternal
										  (CAR CardAndLoc)
										  T InterestedWindow))
									(NC.ClearMsg 
										 InterestedWindow T]
				     (for Card in Cards as i from 1
					bind NewCard WasActiveFlg HadStatusNILFlg IndexLocs
					eachtime (BLOCK)
					do [OR QuietFlg (if (ZEROP (REMAINDER i 100))
								then (NC.PrintMsg 
										 InterestedWindow T 
							  "Copying cards: creating empty copies."
										      (CHARACTER
											13)
										      
									       "Processing item "
										      i " out of " 
										      NumCards "..."
										      (CHARACTER
											13]
					     (if (NOT (SETQ WasActiveFlg (NC.ActiveCardP
							      Card)))
						 then (NC.GetNoteCard Card))
					     (if (SETQ HadStatusNILFlg
						     (NULL (fetch (Card Status) of Card)))
						 then      (* Have to have Status slot ACTIVE in order that Put 
							     to stream won't break.)
							(replace (Card Status) of Card
							   with (QUOTE ACTIVE)))
					     (SETQ IndexLocs (NC.PutNoteCardToStream Card NIL T 
										       TempStream))
					     (if HadStatusNILFlg
						 then (replace (Card Status) of Card
							   with NIL))
					     (if (NOT WasActiveFlg)
						 then (NC.DeactivateCard Card))
                                                             (* Make new empty card for copy.)
					     (SETQ NewCard (NC.GetNewCard DestNoteFile)) 
                                                             (* Map old cards to card copies.)
					     (PUTHASH Card NewCard CardHashArray)
					     (push NewCardsAndLocsOnStream (CONS NewCard 
										     IndexLocs]

          (* * For each card, get it off the temp stream, fix its links, fix browser info if necessary, and write it down to 
	  the dest notefile.)


			           (SETFILEPTR TempStream 0)
			           (OR QuietFlg (NC.PrintMsg InterestedWindow T 
						 "Copying cards: fixing links and browser cards."
								 (CHARACTER 13)
								 "Processing item " 1 " out of " 
								 NumCards "..." (CHARACTER 13)))
			           (for NewCardAndLocsOnStream in NewCardsAndLocsOnStream
				      as i from 1 eachtime (BLOCK)
				      do [OR QuietFlg (if (ZEROP (REMAINDER i 100))
							      then (NC.PrintMsg InterestedWindow 
										    T 
						 "Copying cards: fixing links and browser cards."
										    (CHARACTER
										      13)
										    
									       "Processing item "
										    i " out of " 
										    NumCards "..."
										    (CHARACTER
										      13]
					   (LET ((NewCard (CAR NewCardAndLocsOnStream))
						 (IndexLocs (CDR NewCardAndLocsOnStream)))
                                                             (* Have to make status active for Get fns to work.)
					        (NC.SetStatus NewCard (QUOTE ACTIVE))
					        (NC.GetNoteCardFromStream NewCard TempStream 
									    IndexLocs)
					        (NC.FixUpLinksInCardCopy NewCard CardHashArray 
									   LinksHashArray 
									   CurrentLinkLabels 
									   NewLinkLabels)
					        (if (NC.IsSubTypeOfP (NC.FetchType NewCard)
									 (QUOTE Browser))
						    then (NC.FixUpBrowserCardCopy NewCard 
										    CardHashArray))
					        (NC.PutNoteCard NewCard)))

          (* * Link RootCards under filebox in DestNotefile.)


			           (OR QuietFlg (NC.PrintMsg InterestedWindow T 
								 "Copying cards: filing "
								 (LENGTH RootCards)
								 " new cards in "
								 (NC.FetchTitle BoxToFileIn)
								 "..."
								 (CHARACTER 13)))
			           (NC.FileBoxCollectChildren NIL BoxToFileIn
								(for RootCard in RootCards
								   eachtime (BLOCK)
								   collect (GETHASH RootCard 
										    CardHashArray))
								T)

          (* * Put out any new link labels to the dest notefile.)


			           (AND (SETQ NewLinkLabels (CDAR NewLinkLabels))
					  (NC.StoreLinkLabels DestNoteFile (APPEND NewLinkLabels 
										CurrentLinkLabels)))
			           (OR QuietFlg (NC.ClearMsg InterestedWindow T))
			       Cards])

(NC.NoteFileCheckOpInProgress
  [LAMBDA (NoteFile)                                         (* Randy.Gobbel " 5-Jun-87 14:26")

          (* * NoteFile level check for operation in progress. Checks session level, then NoteFile level, then Card level.
	  Returns NIL if there is no conflict at any level, otherwise a string describing the conflicting operation.
	  THIS PROCEDURE IS INTERNAL TO THE NOTECARDS GLOBAL MONITOR!)



          (* * rg 3/3/87 created)



          (* * rg 6/2/87 changed to allow enlarging lock scope if it's all in the same process)


    (LET (ProcInProgress)
         (COND
	   ((PROCESSP NC.SessionProcessInProgress)         (* someone doing a session op, check to see if it's 
							     us)
	     (COND
	       ((NEQ NC.SessionProcessInProgress (THIS.PROCESS))
                                                             (* if someone else has the session lock, return that 
							     op)
		 NC.SessionOperationInProgress)
	       (T                                            (* we have the session lock, just return NIL)
		  NIL)))
	   ([PROCESSP (SETQ ProcInProgress (NC.NoteFileProp NoteFile (QUOTE ProcessInProgress]
                                                             (* someone doing a NF op, check to see if it's us)
	     (COND
	       ((NEQ ProcInProgress (THIS.PROCESS))      (* if someone else has the NF lock, return that op)
		 (NC.NoteFileProp NoteFile (QUOTE OperationInProgress)))
	       (T                                            (* we have the NF lock, do nothing)
		  NIL)))
	   ((for Process in (NC.NoteFileProp NoteFile (QUOTE CardProcessInProgressList))
	       always (EQ Process (THIS.PROCESS)))     (* card ops in progress by our own process)
	     NIL)
	   ((NC.NoteFileProp NoteFile (QUOTE CardProcessInProgressList))
                                                             (* some card ops in progress, we lose)
	     "Card Operations")
	   (T                                                (* all relevant locks are free)
	      NIL])

(NC.SessionCheckOpInProgress
  [LAMBDA NIL                                                (* Randy.Gobbel " 5-Jun-87 14:25")

          (* * Session level check for operation in progress. Checks session level, then NoteFile level, then Card level.
	  Returns NIL if there is no conflict at any level, otherwise a string describing the conflicting operation.
	  THIS PROCEDURE IS INTERNAL TO THE NOTECARDS GLOBAL MONITOR!)



          (* * rg 3/3/87 created)



          (* * rg 6/2/87 changed to allow enlarging lock scope if it's all in the same process)


    (COND
      [(PROCESSP NC.SessionProcessInProgress)              (* someone doing a session op, check to see if it's 
							     us)
	(COND
	  ((NEQ NC.SessionProcessInProgress (THIS.PROCESS))
                                                             (* if someone else has the session lock, return that 
							     op)
	    NC.SessionOperationInProgress)
	  (T                                                 (* we have the session lock)
	     (QUOTE US]
      ((for Process in NC.NoteFileBusyList always (EQ Process (THIS.PROCESS)))
                                                             (* notefile ops in progress by our own process, assume
							     we know what we're doing)
	NIL)
      (NC.NoteFileBusyList                                   (* NF ops are active, we lose)
			   "NoteFile Operations")
      ((for Process in NC.CardBusyList always (EQ Process (THIS.PROCESS)))
                                                             (* card ops in progress, but it's our own process)
	NIL)
      (NC.CardBusyList                                       (* some card ops are active, we lose)
		       "Card Operations")
      (T                                                     (* all relevant locks are free)
	 NIL])
)
(* * changes to NCINTERFACE)

(DEFINEQ

(NC.SelectNoteCards
  [LAMBDA (SingleCardFlg SelectionPredicate Menu InstigatingCardOrWindow Msg CheckForCancelFlg 
			 FileLevelLockFlg)                   (* Randy.Gobbel " 8-Jun-87 12:04")

          (* Select a set of note cards or a single note card, depending on SingleCardFlg. Works by interpreting all mouse 
	  presses until a card has been chosen (if SingleCardFlg is T) or until the Done button has been pressed 
	  (if SingleCardFlg is NIL). If the mouse press occus within a Title bar of a notecard, add that note card to the 
	  selected list. Otherwise, if you are pointing into a note card, call the BUTTONEVENTFN for that note card.
	  The Selection in Progress flag has been set, so all note card BUTTONEVENTFNs should know to ignore all presses 
	  except those that occur on link icons. Link icon presses should simply add the desination of that link to the 
	  selected note cards list. This function should always be called from inside of an NC.CardSelectionOperation 
	  wrapper.)



          (* * rht 8/1/84: Changed second RESETSAVE call to give NC.ClearMsg a NIL argument.)



          (* * rht 1/9/85: Fixed so now prints name of selected item even it's a link.)



          (* * rht 2/15/85: Now can backspace over last selection chosen. Added new arg Msg so that when we reprint the list,
	  we can reprint the message as well.)



          (* * rht 3/23/85: Added the CheckForCancelFlg arg, which if non-nil causes Cancel to be handled differently then 
	  Done after no selections. Namely, Cancel will return the atom CANCELLED whereas Done with no selections returns 
	  NIL. If CheckForCancelFlg is NIL then NIL is returned in both cases.)



          (* * fgh 11/14/85 Updated to handle Card and NoteFile objects.)



          (* * rht 11/18/85: Fixed so able to select when InstigatingNoteFile is NIL.)



          (* * fgh 12/20/85 Totally rewritten for 1.3 selection mechanism. Based on COPYINSERT now rather than on takingf 
	  over the mouse process.)



          (* * fgh 1/15/86 Added call to SPAWN.MOUSE in case this is called under the mouse process)



          (* * kirk 25Apr86 Changed to use SessionIcon (NC.NoteCardsIconWindow) rather than PROMPTWINDOW if no Instigating 
	  window is supplied.)



          (* * fgh 7/5/86 Added code to put CRs into printout of selected cards in order to keep prompt window from getting 
	  infinitely wide to accomdate the printout.)



          (* * rht 10/5/86: Now allows choice of cards from remote notefile.)



          (* * rht 10/18/86: Give TTY process to process that originally had it if possible.)



          (* * rht & pmi 11/14/86: Now checks for valid card before testing SelectionPredicate.)



          (* * pmi 12/5/86 Modified prompt messages to mention SHIFT-selection.)



          (* * pmi 12/12/86: Removed obsolete ReturnLinksFlg argument.)



          (* * rg 3/18/87 reworked for NC.CardSelectionOperation: added NAMED-RESETSAVE forms for Card locking.)



          (* * 3/23/87: Changed to call REMOVEWINDOW instead of DETACHWINDOW before deleting the attached menu.
	  Also changed so that menu is attached to InstigatingWindow rather than to PromptWindow. This makes it possible for 
	  windows to "slide down" when selection ends.)



          (* * rht 3/24/87: Now calls NC.CoerceToInterestedWindow)



          (* * RG 4/1/87 changed CANCELLED to DON'T)



          (* * rg 4/22/87 changed some names,)



          (* * rht&rg&pmi 4/22/87: Moved location of ALLOW.BUTTON.EVENTS.)



          (* * rg 6/2/87 added FileLevelLockFlg)


    (DECLARE (USEDFREE CardListResetVar))

          (* * if we are running under the mouse process, start up a new mouse process)


    (ALLOW.BUTTON.EVENTS)
    (LET (Window Card ButtonEventFn InstigatingWindow InstigatingCard InstigatingNoteFile MenuWindow 
		 PromptWindow CopyInsertEvent CardProcessedEvent SelectedCards BinLoopProcess 
		 OldTTYProcess OpInProgress ResetItems TTYResetVar InternalResetVar)
         (NAMED-RESETLST
	   InternalResetVar
	   (OR SelectionPredicate (SETQ SelectionPredicate (FUNCTION TRUE)))
	   (SETQ PromptWindow (OR (NC.AttachPromptWindow (SETQ InstigatingWindow
								 (NC.CoerceToInterestedWindow
								   InstigatingCardOrWindow)))
				      PROMPTWINDOW))
	   (SETQ InstigatingCard (NC.CoerceToCard InstigatingCardOrWindow))
	   (SETQ InstigatingNoteFile (AND InstigatingCard (fetch (Card NoteFile) of 
										  InstigatingCard)))
	   (NC.PrintMsg InstigatingWindow T (COND
			    (Msg (CONCAT Msg (CHARACTER 13)))
			    (T ""))
			  "Items shift-selected:  ")
	   (SETQ OldTTYProcess (TTY.PROCESS))

          (* * Set up the prompt window for proper use by the CopyInsertFn)


	   (NAMED-RESETSAVE InternalResetVar (WINDOWPROP PromptWindow (QUOTE SelectCardsMonitor)
							     (CREATE.MONITORLOCK (QUOTE 
										      SelectCards)))
			      (BQUOTE (WINDOWPROP , PromptWindow SelectCardsMonitor NIL)))
	   [WINDOWPROP PromptWindow (QUOTE CopyInsertEvent)
			 (SETQ CopyInsertEvent (CREATE.EVENT (QUOTE CopyInsertEvent]
	   (WINDOWPROP PromptWindow (QUOTE NewCardsProcessed)
			 T)
	   [WINDOWPROP PromptWindow (QUOTE CardProcessedEvent)
			 (SETQ CardProcessedEvent (CREATE.EVENT (QUOTE CardProcessedEvent]
	   (WINDOWPROP PromptWindow (QUOTE SelectNoteCardsProcess)
			 (THIS.PROCESS))
	   (WINDOWPROP PromptWindow (QUOTE COPYINSERTFN)
			 (FUNCTION NC.SelectNoteCardsCopyInsertFn))
	   (NAMED-RESETSAVE InternalResetVar (WINDOWPROP PromptWindow (QUOTE SelectedCards)
							     NIL)
			      (BQUOTE (WINDOWPROP , PromptWindow (QUOTE SelectedCards)
						      NIL)))
	   (NAMED-RESETSAVE InternalResetVar (WINDOWPROP PromptWindow (QUOTE SelectingCards)
							     T)
			      (BQUOTE (WINDOWPROP , PromptWindow SelectingCards NIL)))

          (* * Make the process behind the prompt window includiong control for a blibnking cursor)


	   [WINDOWPROP PromptWindow (QUOTE PROCESS)
			 (SETQ BinLoopProcess (ADD.PROCESS
			     (QUOTE (PROG NIL (BLOCK)
					      (TTYDISPLAYSTREAM (PROCESSPROP (THIS.PROCESS)
										 (QUOTE WINDOW)))
					      XXXX
					      (BIN)
					      (BLOCK)
					      (GO XXXX)))
			     (QUOTE WINDOW)
			     PromptWindow
			     (QUOTE NAME)
			     (QUOTE BinLoopProcess)
			     (QUOTE TTYENTRYFN)
			     (FUNCTION [LAMBDA (Process)
				 (PROCESSPROP Process (QUOTE OldCaret)
						(CARET CROSSHAIRS))
				 (ECHOMODE])
			     (QUOTE TTYEXITFN)
			     (FUNCTION (LAMBDA (Process)
				 (CARET (PROCESSPROP Process (QUOTE OldCaret)))
				 (ECHOMODE T]
	   (NAMED-RESETSAVE InternalResetVar NIL (BQUOTE (DEL.PROCESS , BinLoopProcess)))

          (* * Insure the prompt window is cleared on the way out)


	   [NAMED-RESETSAVE InternalResetVar NIL
			      (BQUOTE (PROGN (AND (HASTTYWINDOWP , BinLoopProcess)
							(TTY.PROCESS (if (AND (PROCESSP
										      , OldTTYProcess)
										    (HASTTYWINDOWP
										      , OldTTYProcess)
										    )
									   then , OldTTYProcess
									 else T)))
						 (NC.ClearMsg , InstigatingWindow T]

          (* * Set up the menu above the prompt window)

                                                             (* fix in case MENUPOSITION is set incorrectly in menu
							     passed down)
	   (replace (MENU MENUPOSITION) of Menu
	      with (CONSTANT (create POSITION
					   XCOORD ← 0
					   YCOORD ← 0)))
	   [NAMED-RESETSAVE InternalResetVar (PROGN (ATTACHMENU
							  Menu
							  (OR InstigatingWindow PROMPTWINDOW)
							  (if InstigatingWindow
							      then (QUOTE TOP)
							    else (QUOTE BOTTOM))
							  (if (AND (WINDOWP InstigatingWindow)
								       (WINDOWP PromptWindow))
							      then (CDR (WINDOWPROP
									      PromptWindow
									      (QUOTE WHEREATTACHED))
									    )
							    else (QUOTE LEFT)))
							(WINDOWPROP (WFROMMENU Menu)
								      (QUOTE SelectionPromptWindow)
								      PromptWindow))
			      (BQUOTE (PROGN (REMOVEWINDOW (WFROMMENU , Menu]

          (* * If there is an instigating window, make sure it and all its attachments are visible on the screen.)


	   (if InstigatingWindow
	       then (NC.MoveWindowOntoScreen InstigatingWindow))

          (* * Give the prompt window the tty process)


	   (TTY.PROCESS (WINDOWPROP PromptWindow (QUOTE PROCESS)))

          (* * Loop as long as necessary)


	   [WITH.MONITOR
	     (WINDOWPROP PromptWindow (QUOTE SelectCardsMonitor))
	     (until (OR (EQ SelectedCards (QUOTE DON'T))
			    (AND SingleCardFlg SelectedCards)
			    (EQ (CAR SelectedCards)
				  (QUOTE DONE)))
		do
		 (                                           (* Wait for the user to respond by copy inserting 
							     something into the prompt window)
		  (until [OR (NOT (PROCESSP BinLoopProcess))
				 (NOT (EQ SelectedCards (WINDOWPROP PromptWindow (QUOTE
									    SelectedCards]
		     do (MONITOR.AWAIT.EVENT (WINDOWPROP PromptWindow (QUOTE 
									       SelectCardsMonitor))
						 CopyInsertEvent 1000))
                                                             (* Get the latest selection list)
		  (SETQ SelectedCards (WINDOWPROP PromptWindow (QUOTE SelectedCards)))
		  (WINDOWPROP PromptWindow (QUOTE NewCardsProcessed)
				T)
		  (NOTIFY.EVENT CardProcessedEvent T)
		  (OR (PROCESSP BinLoopProcess)
			(SETQ SelectedCards (QUOTE DON'T)))
		  (NAMED-RESETLST
		    TTYResetVar                              (* Turn off the caret)
		    (NAMED-RESETSAVE TTYResetVar (TTY.PROCESS (THIS.PROCESS)))
                                                             (* If the last thing wasn't a done or cancel, process 
							     the new selection)
		    (SETQ Card (CAR SelectedCards))
		    (WITH.MONITOR
		      NC.LockLock
		      (COND
			((AND (NEQ Card (QUOTE DONE))
				(NEQ SelectedCards (QUOTE DON'T))
				(NEQ Card (QUOTE *New% Card*)))
                                                             (* Check to make sure that the selection is valid)
			  [COND
			    ((EQ Card (QUOTE *Undo% Selection*))
                                                             (* Chop off two elements from the list -
							     the indicator and the previous item.)
			      (SETQ Card (CADR SelectedCards))
			      (WINDOWPROP PromptWindow (QUOTE SelectedCards)
					    (SETQ SelectedCards (CDDR SelectedCards)))
                                                             (* now get our hands off of all the locks we've 
							     acquired for this card)
			      (if Card
				  then (NAMED-RESETUNSAVE CardListResetVar (NC.FetchUserDataProp
								Card
								(QUOTE ResetItems)))
					 (NC.SetUserDataProp Card (QUOTE ResetItems)
							       NIL))
			      (NC.ClearMsg InstigatingWindow NIL))
			    [(OR (NOT (NC.ValidCardP Card))
				   (NULL (APPLY* SelectionPredicate Card)))
                                                             (* Does this card match the slection predicate)
			      (NC.PrintMsg InstigatingWindow T "*** Invalid selection. ***"
					     (CHARACTER 13))
			      (WINDOWPROP PromptWindow (QUOTE SelectedCards)
					    (SETQ SelectedCards (CDR SelectedCards]
			    ((AND (SETQ OpInProgress (if FileLevelLockFlg
							     then (NC.NoteFileCheckOpInProgress
								      (fetch (Card NoteFile)
									 of Card))
							   else (NC.CardCheckOpInProgress Card)))
				    (NEQ OpInProgress (QUOTE US)))
			      (NC.PrintOperationInProgressMsg InstigatingWindow "Select Card" 
								OpInProgress)
			      (DISMISS 1000)
			      (WINDOWPROP PromptWindow (QUOTE SelectedCards)
					    (SETQ SelectedCards (CDR SelectedCards)))
			      (NC.ClearMsg InstigatingWindow NIL))
			    (T                               (* A valid selection.)
			       (NC.ClearMsg InstigatingWindow NIL)
			       [if FileLevelLockFlg
				   then [SETQ ResetItems
					    (LIST (NAMED-RESETSAVE
						      CardListResetVar
						      (NC.NoteFileProp (fetch (Card NoteFile)
									    of Card)
									 (QUOTE OperationInProgress)
									 "Select Card")
						      (BQUOTE (NC.NoteFileProp
								  ,
								  (fetch (Card NoteFile)
								     of Card)
								  OperationInProgress NIL)))
						    (NAMED-RESETSAVE
						      CardListResetVar
						      (NC.NoteFileProp (fetch (Card NoteFile)
									    of Card)
									 (QUOTE ProcessInProgress)
									 (THIS.PROCESS))
						      (BQUOTE (NC.NoteFileProp
								  ,
								  (fetch (Card NoteFile)
								     of Card)
								  ProcessInProgress NIL)))
						    (NAMED-RESETSAVE CardListResetVar
								       (SETQ NC.NoteFileBusyList
									 (CONS (THIS.PROCESS)
										 NC.NoteFileBusyList))
								       (QUOTE (SETQ
										  NC.NoteFileBusyList
										  (DREMOVE
										    (THIS.PROCESS)
										    
									      NC.NoteFileBusyList]
				 else (SETQ ResetItems
					  (LIST [NAMED-RESETSAVE CardListResetVar
								     (SETQ NC.CardBusyList
								       (CONS (THIS.PROCESS)
									       NC.CardBusyList))
								     (QUOTE (SETQ
										NC.CardBusyList
										(DREMOVE (
										     THIS.PROCESS)
											   
										  NC.CardBusyList]
						  [NAMED-RESETSAVE
						    CardListResetVar
						    [NC.NoteFileProp
						      (fetch (Card NoteFile) of Card)
						      (QUOTE CardProcessInProgressList)
						      (CONS (THIS.PROCESS)
							      (NC.NoteFileProp (fetch
										   (Card NoteFile)
										    of Card)
										 (QUOTE 
									CardProcessInProgressList]
						    (BQUOTE (NC.ResetCardProcessInProgress
								,
								(fetch (Card NoteFile)
								   of Card]
						  (NAMED-RESETSAVE CardListResetVar
								     (NC.SetUserDataProp
								       Card
								       (QUOTE OperationInProgress)
								       "Select Card")
								     (BQUOTE (NC.SetUserDataProp
										 , Card 
									      OperationInProgress NIL)
									       ))
						  (NAMED-RESETSAVE CardListResetVar
								     (NC.SetUserDataProp
								       Card
								       (QUOTE ProcessInProgress)
								       (THIS.PROCESS))
								     (BQUOTE (NC.SetUserDataProp
										 , Card 
										ProcessInProgress NIL]
			       (NAMED-RESETSAVE InternalResetVar (NC.SetUserDataProp
						    Card
						    (QUOTE ResetItems)
						    ResetItems)
						  (BQUOTE (NC.SetUserDataProp , Card ResetItems 
										  NIL]

          (* * Print the results in the prompt window)


			  (NC.PrintMsg InstigatingWindow NIL (COND
					   (Msg (CONCAT Msg (CHARACTER 13)))
					   (T ""))
					 "Items selected:  ")
			  (for ThisCard in (REVERSE SelectedCards)
			     do (NC.PrintMsg InstigatingWindow NIL (NC.RetrieveTitle ThisCard)
						 ",  ")
				  (if [AND InstigatingWindow (GREATERP
						 (DSPXPOSITION NIL PromptWindow)
						 (TIMES 1.25 (WINDOWPROP InstigatingWindow
									     (QUOTE WIDTH]
				      then (NC.PrintMsg InstigatingWindow NIL (CHARACTER 13]

          (* * Return the result)


	   (PROG1 [COND
		      ((EQ SelectedCards (QUOTE DON'T))
			(COND
			  (CheckForCancelFlg (QUOTE DON'T))
			  (T NIL)))
		      (SingleCardFlg (if (EQ (CAR SelectedCards)
						 (QUOTE DONE))
					 then NIL
				       else (CAR SelectedCards)))
		      (T (if (EQ (CAR SelectedCards)
				     (QUOTE DONE))
			     then (DREVERSE (CDR SelectedCards))
			   else (DREVERSE SelectedCards]
		    (WINDOWPROP PromptWindow (QUOTE SelectedCards)
				  NIL])

(NC.SelectNoteCardsCopyInsertFn
  [LAMBDA (ImageObj Window)                                  (* Randy.Gobbel " 8-Jun-87 12:04")

          (* * Copy insert fn for promptwindow during SelectNoteCards operation)



          (* * rg 6/8/87 added monitor for sync w/ SelectNoteCards)


    (LET [(CardProcessedEvent (WINDOWPROP Window (QUOTE CardProcessedEvent)))
	  (SelectCardsMonitor (WINDOWPROP Window (QUOTE SelectCardsMonitor]
         (WITH.MONITOR SelectCardsMonitor (until (OR [NOT (PROCESSP (WINDOWPROP
									      Window
									      (QUOTE 
									   SelectNoteCardsProcess]
							 (WINDOWPROP Window (QUOTE 
										NewCardsProcessed)))
					     do (MONITOR.AWAIT.EVENT SelectCardsMonitor 
									 CardProcessedEvent 1000))
		       (LET [[Card (COND
				     ((NC.LinkIconImageObjP ImageObj)
				       (fetch (Link DestinationCard) of (
									 NC.FetchLinkFromLinkIcon
									      ImageObj)))
				     ((NC.CardImageObjP ImageObj)
				       (IMAGEOBJPROP ImageObj (QUOTE OBJECTDATUM]
			     (SelectedCards (WINDOWPROP Window (QUOTE SelectedCards)))
			     (CopyInsertEvent (WINDOWPROP Window (QUOTE CopyInsertEvent]

          (* * Add the selected card to the selected cards list)


			    (if (AND Card (for SelectedCard in SelectedCards
						 never (NC.SameCardP Card SelectedCard)))
				then (WINDOWPROP Window (QUOTE SelectedCards)
						     (CONS Card SelectedCards))
				       (WINDOWPROP Window (QUOTE NewCardsProcessed)
						     NIL))

          (* * Wake up the main process)


			    (NOTIFY.EVENT CopyInsertEvent T])
)
(PUTPROPS RGPATCH046 COPYRIGHT ("Xerox Corporation" 1987))
(DECLARE: DONTCOPY
  (FILEMAP (NIL (1151 16104 (NC.CopyCards 1161 . 11975) (NC.NoteFileCheckOpInProgress 11977 . 14159) (
NC.SessionCheckOpInProgress 14161 . 16102)) (16140 34876 (NC.SelectNoteCards 16150 . 33121) (
NC.SelectNoteCardsCopyInsertFn 33123 . 34874)))))
STOP