Skip to content

Latest commit

 

History

History
44 lines (31 loc) · 814 Bytes

README.md

File metadata and controls

44 lines (31 loc) · 814 Bytes

GT Spotter

Spotter is the moldable search interface

How to load

The ideal way to load the code is by loading the entire Glamorous Toolkit project.

Programming Spotter

Creating a new instance of a default Spotter

spotter := GtSpotter new.

Spotter instance on a domain object

spotter := GtSpotter on: MyObject new.

Spotter UI

With preview support:

spotterElement := GtSpotterElementWithPreview new.
spotterElement spotterModel: spotter

Without preview support:

spotterElement := GtSpotterElement new.
spotterElement spotterModel: spotter

Opening in a borderless window

space := BlSpace new.
space root: spotterElement.
space borderless: true.
space show