Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gypsydangerous/processing-gui
In development set of classes for gui in processing
https://github.com/gypsydangerous/processing-gui
Last synced: 21 days ago
JSON representation
In development set of classes for gui in processing
- Host: GitHub
- URL: https://github.com/gypsydangerous/processing-gui
- Owner: GypsyDangerous
- Created: 2019-02-21T02:56:13.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-03-15T16:00:10.000Z (almost 6 years ago)
- Last Synced: 2024-11-09T21:27:43.693Z (3 months ago)
- Language: Processing
- Size: 448 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Processing-GUI
In development set of classes for gui in processing# Current Classes
## Button
![Button](https://i.imgur.com/AgTxRc4.png)
```
The button is constructed with a position, width, height, color, and text.
The button has a function called pressed that shows the button as a rectangle and returns true when the button is pressed.
The button has a subclass that has all the same feature but is a circle instead.
```
![Unchecked](https://i.imgur.com/miI9L7x.png) unchecked
![checked](https://i.imgur.com/IfGypVZ.png) checked
## check box
```
The check box is constructed with a position, size, color, and text.
The check box has a function that shows it as a square and inverts its color when its checked.
The check box has a function that checks and unchecks it.
The check box has a function that runs the last two at once.
The check box has a boolean variable "checked"
```
## slider
![Slider](https://i.imgur.com/E3AKVRS.png)
```
The slider is constructed with a start value, end value, beginning value, position, and increment size.
The slider has a second constructor that does the same as the first but has a default increment size of 1.
The slider has a function to show it as a line for the rail and cirlce for the handle.
The slider has a function that allows you slide it with the mouse.
The slider has run function that does the last two at once.
The slider has a functin that returns a value based on the position of the handle.
```