The writing of the search/replace code goes on and on, ever more complicated, to the point where I wonder if I should have taken a different approach. Still, I can see the light now.
Today's progress:
- Completed the
FindNext
method ofTIMTDocument
, which is the heart of the single-shot Find and Replace functions. It's very complicated now, with several embedded functions, much of it in the form of Case statements which branch based on the nature of the container we're currently searching, to find the next container that should be searched. - Added the following methods to the
ufrmMain
(main form) GUI object:- StashDirtyData. This was complicated, because it threw up a new problem. Normally, when the header or the category data is being edited, that's happening in a modal form. However, the search functionality needs to be able to throw up those forms with selected text, and keep them onscreen while you search again, so they have to be showable as non-modal; and that means they can all have dirty data in them. Working around this involved a lot of changes to the way the header and category editing happens, in a number of different objects.
Find
,FindAll
,Replace
,ReplaceAll
, andGoToSearchHit
. These all implement the function signatures theufrmReplaceDialog
needs to call. OnlyFind
has been implemented so far, and that has bugs (see below).aFindExecute
, and action to set up the search dialog and show it.GetCursorLocation
, which records the position of the cursor (what container it's in, and the details of any selection) so that this can be used as the starting point for the search.ShowSelection
, which should show and select any hit that's found. Again, this is complicated Case statement stuff, depending on where the hit is found.
- Began testing, and discovered two bugs: First of all, the searching fails (a known hit is not found), and secondly, the check to make sure that you don't loop endlessly around the document is also failing, so the search is endless. These shouldn't be too hard to figure out, though.
This has been remarkably complicated, but it's because the document structure is complicated, and it's mapped across lots of different GUI components and forms. I don't seem to have broken any existing functionality so far, but the possibility of having three different components of the document open for editing at the same time, potentially all with dirty data, is going to take some care and attention. We'll have to make sure that the StashDirtyData
function is called when saving files, or before closing a file.