Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/linqlover/colorcontextmenu
A simple color chooser tool for Squeak/Smalltalk, comprising a radial menu API for Morphic
https://github.com/linqlover/colorcontextmenu
morphic radial-menu smalltalk squeak
Last synced: about 1 month ago
JSON representation
A simple color chooser tool for Squeak/Smalltalk, comprising a radial menu API for Morphic
- Host: GitHub
- URL: https://github.com/linqlover/colorcontextmenu
- Owner: LinqLover
- License: mit
- Created: 2021-02-04T18:20:15.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2021-09-18T11:47:46.000Z (over 3 years ago)
- Last Synced: 2024-10-31T07:21:02.859Z (3 months ago)
- Topics: morphic, radial-menu, smalltalk, squeak
- Language: Smalltalk
- Homepage:
- Size: 356 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ColorContextMenu – Library and Application Example of a Radial Menu for Squeak
[![smalltalkCI](https://github.com/LinqLover/ColorContextMenu/actions/workflows/main.yml/badge.svg)](https://github.com/LinqLover/ColorContextMenu/actions/workflows/main.yml)
A simple color chooser tool for [Squeak/Smalltalk](https://squeak.org/) for the purpose of comparing several kinds of menu types. This solution focuses on radial menus. The repository also includes **a radial menu API** (`RadialMenuMorph`) that is widely compatible to the standard `MenuMorph` interface.
This project has originally been developed as part of a study exercise about User Interface Programming, offered by the Computer Graphics Systems Group at HPI ([@hpicgs](https://github.com/hpicgs)).
For more information on our repository, just check it our or take a look into our [closed and unclosed features](https://github.com/LinqLover/ColorContextMenu/issues?q=+)!
## Development
Clone the repository using [Squot](https://github.com/hpi-swa/Squot).
## Installation
```smalltalk
Metacello new
baseline: 'ColorContextMenu';
githubUser: 'LinqLover' project: 'ColorContextMenu' path: 'src';
load.
```## Usage
```smalltalk
ColorChooser open.
```