Fantom

 

class

flux::FindHistory

sys::Obj
  flux::FindHistory

@serializable

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 a Str[].

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.

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

This pushDir(Uri u)

Log the given find directory into the history. Return this.

pushFindSource

This pushFind(Str s)

Log the given find text into the history. Return this.

saveSource

This save()

Convenience for save to "session/history". Return this.