https://github.com/feenkcom/gtoolkit-spotter
The moldable search tool.
https://github.com/feenkcom/gtoolkit-spotter
glamorous-toolkit
Last synced: 3 months ago
JSON representation
The moldable search tool.
- Host: GitHub
- URL: https://github.com/feenkcom/gtoolkit-spotter
- Owner: feenkcom
- License: mit
- Created: 2019-06-24T12:51:58.000Z (almost 7 years ago)
- Default Branch: main
- Last Pushed: 2026-03-01T15:00:24.000Z (4 months ago)
- Last Synced: 2026-03-01T18:18:38.119Z (4 months ago)
- Topics: glamorous-toolkit
- Language: Smalltalk
- Homepage: https://gtoolkit.com
- Size: 1.67 MB
- Stars: 3
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 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](https://github.com/feenkcom/gtoolkit).
## Programming Spotter
### Creating a new instance of a default Spotter
```smalltalk
spotter := GtSpotter new.
```
### Spotter instance on a domain object
```smalltalk
spotter := GtSpotter on: MyObject new.
```
### Spotter UI
With preview support:
```smalltalk
spotterElement := GtSpotterElementWithPreview new.
spotterElement spotterModel: spotter
```
Without preview support:
```smalltalk
spotterElement := GtSpotterElement new.
spotterElement spotterModel: spotter
```
### Opening in a borderless window
```smalltalk
space := BlSpace new.
space root: spotterElement.
space borderless: true.
space show
```