FindHistory maintains the most recent find text queries for the entire application.
Slots
- dirSource
-
Uri[] dir()
Get a readonly copy of all the find directories in the history. The first item is the most recent query and the last item is the oldest query.
- dirAsStrSource
-
Str[] dirAsStr()
Convenience to return
dir
as aStr[]
. -
private Uri[] dirList := Uri[,]
- findSource
-
Str[] find()
Get a readonly copy of all the find text in the history. The first item is the most recent query and the last item is the oldest query.
-
private Str[] findList := Str[,]
- loadSource
-
static FindHistory load()
Convenience for loading from "session/find"
- matchCaseSource
-
Bool matchCase := false
Get whether find should match the case of the query term.
- pushDirSource
-
Log the given find directory into the history. Return this.
- pushFindSource
-
Log the given find text into the history. Return this.
- saveSource
-
This save()
Convenience for save to "session/history". Return this.