Skip to content

feenkcom/gtoolkit-spotter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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